17
17
package be .atbash .runtime .data .microstream .cdi .spi ;
18
18
19
19
20
+ import be .atbash .runtime .data .microstream .config .EmbeddedStorageFoundationCustomizer ;
21
+ import be .atbash .runtime .data .microstream .config .StorageManagerInitializer ;
20
22
import jakarta .enterprise .context .ApplicationScoped ;
21
23
import jakarta .enterprise .inject .Disposes ;
24
+ import jakarta .enterprise .inject .Instance ;
22
25
import jakarta .enterprise .inject .Produces ;
23
26
import jakarta .inject .Inject ;
24
27
import one .microstream .reflect .ClassLoaderProvider ;
25
28
import one .microstream .storage .embedded .configuration .types .EmbeddedStorageConfigurationBuilder ;
26
29
import one .microstream .storage .embedded .types .EmbeddedStorageFoundation ;
30
+ import one .microstream .storage .embedded .types .EmbeddedStorageManager ;
27
31
import one .microstream .storage .types .StorageManager ;
28
32
import org .eclipse .microprofile .config .Config ;
29
33
@@ -41,6 +45,15 @@ class StorageManagerProducer {
41
45
@ Inject
42
46
private Config config ;
43
47
48
+ @ Inject
49
+ private MicroStreamExtension storageExtension ;
50
+
51
+ @ Inject
52
+ private Instance <EmbeddedStorageFoundationCustomizer > customizers ;
53
+
54
+ @ Inject
55
+ private Instance <StorageManagerInitializer > initializers ;
56
+
44
57
@ Produces
45
58
@ ApplicationScoped
46
59
public StorageManager getStoreManager () {
@@ -63,10 +76,23 @@ public StorageManager getStoreManager() {
63
76
embeddedStorageFoundation .onConnectionFoundation (cf -> cf .setClassLoaderProvider (ClassLoaderProvider .New (
64
77
Thread .currentThread ().getContextClassLoader ())));
65
78
66
- return embeddedStorageFoundation .start ();
79
+ customizers .stream ()
80
+ .forEach (customizer -> customizer .customize (embeddedStorageFoundation ));
81
+
82
+ EmbeddedStorageManager storageManager = embeddedStorageFoundation .start ();
83
+
84
+ if (!storageExtension .hasStorageRoot ())
85
+ {
86
+ // Only execute at this point when no storage root bean has defined with @Storage
87
+ // Initializers are called from StorageBean.create if user has defined @Storage and root is read.
88
+ initializers .stream ()
89
+ .forEach (initializer -> initializer .initialize (storageManager ));
90
+ }
91
+
92
+ return storageManager ;
67
93
}
68
94
69
- public void dispose (@ Disposes final StorageManager manager ) {
95
+ public void dispose (@ Disposes StorageManager manager ) {
70
96
LOGGER .info ("Closing the default StorageManager" );
71
97
manager .close ();
72
98
}
0 commit comments