6
6
7
7
namespace My . Extensions . Localization . Json . Internal ;
8
8
9
- public class JsonResourceManager ( string resourcesPath , string resourceName = null )
9
+ public class JsonResourceManager
10
10
{
11
+ private readonly JsonFileWatcher _jsonFileWatcher ;
11
12
private readonly ConcurrentDictionary < string , ConcurrentDictionary < string , string > > _resourcesCache = new ( ) ;
12
13
13
- public string ResourceName { get ; } = resourceName ;
14
14
15
- public string ResourcesPath { get ; } = resourcesPath ;
15
+ public JsonResourceManager ( string resourcesPath , string resourceName = null )
16
+ {
17
+ ResourcesPath = resourcesPath ;
18
+ ResourceName = resourceName ;
19
+
20
+ _jsonFileWatcher = new ( resourcesPath ) ;
21
+ _jsonFileWatcher . Changed += RefreshResourcesCache ;
22
+ }
23
+
24
+ public string ResourceName { get ; }
25
+
26
+ public string ResourcesPath { get ; }
16
27
17
28
public string ResourcesFilePath { get ; private set ; }
18
29
19
30
public virtual ConcurrentDictionary < string , string > GetResourceSet ( CultureInfo culture , bool tryParents )
20
31
{
21
32
TryLoadResourceSet ( culture ) ;
22
33
23
- if ( ! _resourcesCache . ContainsKey ( culture . Name ) )
34
+ var key = $ "{ ResourceName } .{ culture . Name } ";
35
+ if ( ! _resourcesCache . ContainsKey ( key ) )
24
36
{
25
37
return null ;
26
38
}
@@ -30,7 +42,7 @@ public virtual ConcurrentDictionary<string, string> GetResourceSet(CultureInfo c
30
42
var allResources = new ConcurrentDictionary < string , string > ( ) ;
31
43
do
32
44
{
33
- if ( _resourcesCache . TryGetValue ( culture . Name , out var resources ) )
45
+ if ( _resourcesCache . TryGetValue ( key , out var resources ) )
34
46
{
35
47
foreach ( var entry in resources )
36
48
{
@@ -45,7 +57,7 @@ public virtual ConcurrentDictionary<string, string> GetResourceSet(CultureInfo c
45
57
}
46
58
else
47
59
{
48
- _resourcesCache . TryGetValue ( culture . Name , out var resources ) ;
60
+ _resourcesCache . TryGetValue ( key , out var resources ) ;
49
61
50
62
return resources ;
51
63
}
@@ -63,7 +75,8 @@ public virtual string GetString(string name)
63
75
64
76
do
65
77
{
66
- if ( _resourcesCache . TryGetValue ( culture . Name , out var resources ) )
78
+ var key = $ "{ ResourceName } .{ culture . Name } ";
79
+ if ( _resourcesCache . TryGetValue ( key , out var resources ) )
67
80
{
68
81
if ( resources . TryGetValue ( name , out var value ) )
69
82
{
@@ -86,7 +99,8 @@ public virtual string GetString(string name, CultureInfo culture)
86
99
return null ;
87
100
}
88
101
89
- if ( ! _resourcesCache . TryGetValue ( culture . Name , out var resources ) )
102
+ var key = $ "{ ResourceName } .{ culture . Name } ";
103
+ if ( ! _resourcesCache . TryGetValue ( key , out var resources ) )
90
104
{
91
105
return null ;
92
106
}
@@ -102,7 +116,7 @@ private void TryLoadResourceSet(CultureInfo culture)
102
116
{
103
117
var file = Path . Combine ( ResourcesPath , $ "{ culture . Name } .json") ;
104
118
105
- GetOrAddResourceCache ( file ) ;
119
+ TryAddResources ( file ) ;
106
120
}
107
121
else
108
122
{
@@ -129,7 +143,7 @@ private void TryLoadResourceSet(CultureInfo culture)
129
143
130
144
culture = CultureInfo . GetCultureInfo ( cultureName ) ;
131
145
132
- GetOrAddResourceCache ( file ) ;
146
+ TryAddResources ( file ) ;
133
147
}
134
148
}
135
149
@@ -147,14 +161,34 @@ IEnumerable<string> GetResourceFiles(string culture)
147
161
: [ ] ;
148
162
}
149
163
150
- ConcurrentDictionary < string , string > GetOrAddResourceCache ( string resourceFile )
164
+ void TryAddResources ( string resourceFile )
151
165
{
152
- return _resourcesCache . GetOrAdd ( culture . Name , _ =>
166
+ var key = $ "{ ResourceName } .{ culture . Name } ";
167
+ if ( ! _resourcesCache . ContainsKey ( key ) )
153
168
{
154
169
var resources = JsonResourceLoader . Load ( resourceFile ) ;
155
170
156
- return new ConcurrentDictionary < string , string > ( resources . ToDictionary ( r => r . Key , r => r . Value ) ) ;
157
- } ) ;
171
+ _resourcesCache . TryAdd ( key , new ConcurrentDictionary < string , string > ( resources ) ) ;
172
+ }
173
+ }
174
+ }
175
+
176
+ private void RefreshResourcesCache ( object sender , FileSystemEventArgs e )
177
+ {
178
+ var key = Path . GetFileNameWithoutExtension ( e . FullPath ) ;
179
+ if ( _resourcesCache . TryGetValue ( key , out var resources ) )
180
+ {
181
+ if ( ! resources . IsEmpty )
182
+ {
183
+ resources . Clear ( ) ;
184
+
185
+ var freshResources = JsonResourceLoader . Load ( e . FullPath ) ;
186
+
187
+ foreach ( var item in freshResources )
188
+ {
189
+ _resourcesCache [ key ] . TryAdd ( item . Key , item . Value ) ;
190
+ }
191
+ }
158
192
}
159
193
}
160
194
}
0 commit comments