1
+ @SuppressWarnings (' PMD.ClassNamingConventions,PMD.CognitiveComplexity' )
1
2
public with sharing class di_PlatformCache
2
3
{
3
4
// ////////////////////////////////////////////////////////////////////////////////////////////
@@ -16,16 +17,9 @@ public with sharing class di_PlatformCache
16
17
private static Map <String , String > generatedKeyNames = new Map <String , String >();
17
18
// Used for turning on logging (if needed)
18
19
@TestVisible
20
+ @SuppressWarnings (' PMD.FieldNamingConventions' )
19
21
private static Boolean DEBUGGING = false ;
20
22
21
- // ////////////////////////////////////////////////////////////////////////////////////////////
22
- // Constructors
23
- // ////////////////////////////////////////////////////////////////////////////////////////////
24
- // singleton
25
- private di_PlatformCache ()
26
- {
27
- }
28
-
29
23
// ////////////////////////////////////////////////////////////////////////////////////////////
30
24
// Public Methods
31
25
// ////////////////////////////////////////////////////////////////////////////////////////////
@@ -118,6 +112,7 @@ public with sharing class di_PlatformCache
118
112
return result ;
119
113
}
120
114
115
+ @SuppressWarnings (' PMD.AvoidDeeplyNestedIfStmts' )
121
116
public list <di_Binding > retrieveBindings (String developerName , Schema.SObjectType bindingSObjectType )
122
117
{
123
118
list <di_Binding > bindings = new list <di_Binding >();
@@ -139,6 +134,7 @@ public with sharing class di_PlatformCache
139
134
for ( String cacheKey : cacheKeys )
140
135
{
141
136
cachedObject = orgPartition .get ( cacheKey );
137
+
142
138
if ( cachedObject != null )
143
139
{
144
140
bindings .addAll ( (List <di_Binding >) cachedObject );
@@ -174,6 +170,35 @@ public with sharing class di_PlatformCache
174
170
}
175
171
}
176
172
173
+ public static void enable ()
174
+ {
175
+ initializeUpdateableConfig ();
176
+
177
+ enable (getConfig ());
178
+ }
179
+
180
+ public static void enableForPartition (String partitionName )
181
+ {
182
+ initializeUpdateableConfig ();
183
+
184
+ di_Configurations__c config = getConfig ();
185
+
186
+ config .OrgCachePartitionName__c = partitionName ;
187
+
188
+ enable (config );
189
+ }
190
+
191
+ public static void disable ()
192
+ {
193
+ initializeUpdateableConfig ();
194
+
195
+ di_Configurations__c config = getConfig ();
196
+
197
+ config .UsePlatformCacheToStoreBindings__c = false ;
198
+
199
+ persistChanges (config );
200
+ }
201
+
177
202
/**
178
203
* getPartitionKeys get partition keys
179
204
* @return return Set<String> partition keys
@@ -190,26 +215,83 @@ public with sharing class di_PlatformCache
190
215
return keys ;
191
216
}
192
217
218
+ public class DIPlatformCacheException extends Exception {}
219
+
193
220
// ////////////////////////////////////////////////////////////////////////////////////////////
194
221
// Private Methods
195
222
// ////////////////////////////////////////////////////////////////////////////////////////////
196
223
224
+ private static void enable (di_Configurations__c config )
225
+ {
226
+ if (String .isBlank (config .OrgCachePartitionName__c ))
227
+ {
228
+ throw new DIPlatformCacheException (' The di_Configurations__c.OrgCachePartitionName__c must bet set with the partition name before Platform Cache can be enabled for Force-DI bindings.' );
229
+ }
230
+
231
+ // attempt to get the partition to ensure that it is present. If it is not available, then an error will be thrown.
232
+ try
233
+ {
234
+ getPartitionByName (config .OrgCachePartitionName__c );
235
+ }
236
+ catch (DIPlatformCacheException pce )
237
+ {
238
+ throw new DIPlatformCacheException (' The cache partition \' ' + config .OrgCachePartitionName__c + ' \' is not available.' );
239
+ }
240
+
241
+ config .UsePlatformCacheToStoreBindings__c = true ;
242
+
243
+ persistChanges (config );
244
+ }
245
+
246
+ private static void persistChanges (di_Configurations__c config )
247
+ {
248
+ if ( config .isSet ( di_Configurations__c .Id ) && di_Configurations__c .SObjectType .getDescribe ().isUpdateable () )
249
+ {
250
+ update config ;
251
+ }
252
+ else if (di_Configurations__c .SObjectType .getDescribe ().isCreateable () )
253
+ {
254
+ insert config ;
255
+ }
256
+ else
257
+ {
258
+ throw new DIPlatformCacheException (' Unable to persist changes for di_Configurations__c' );
259
+ }
260
+ }
261
+
262
+ private static di_Configurations__c DEFAULT_CONFIG = di_Configurations__c .getInstance ();
263
+
264
+ private static void initializeUpdateableConfig ()
265
+ {
266
+ Id orgId = ConnectApi .Organization .getSettings ().orgId ;
267
+ Id currentUsersProfileId = UserInfo .getProfileId ();
268
+ Id currentUsersId = UserInfo .getUserId ();
269
+ List <di_Configurations__c > allRelevantConfigs = [SELECT Id , Name , SetupOwnerId
270
+ , OrgCachePartitionName__c
271
+ , UsePlatformCacheToStoreBindings__c
272
+ , CreatedById , CreatedDate , LastModifiedById , LastModifiedDate
273
+ FROM di_Configurations__c
274
+ WHERE (SetupOwnerId = : currentUsersId AND Name = ' Force-DI Configurations (User)' )
275
+ OR (SetupOwnerId = : currentUsersProfileId AND Name = ' Force-DI Configurations (Profile)' )
276
+ OR (SetupOwnerId = : orgId )
277
+ ORDER BY Name DESC ]; // the sort order is important to ensure that the
278
+ // user's default shows first in the list, then
279
+ // the user's profile version, and finally the org default.
280
+ DEFAULT_CONFIG = allRelevantConfigs [0 ];
281
+ }
282
+
197
283
@TestVisible
198
284
private static di_Configurations__c getConfig ()
199
285
{
200
- di_Configurations__c config = di_Configurations__c . getInstance () ;
201
-
286
+ di_Configurations__c config = DEFAULT_CONFIG ;
287
+ System . debug ( LoggingLevel . ERROR , config );
202
288
if ( config == null )
203
289
{
204
290
config = new di_Configurations__c ();
205
291
config .SetupOwnerId = ConnectApi .Organization .getSettings ().orgId ;
206
- // make CheckMarx happy
207
- if (di_Configurations__c .SObjectType .getDescribe ().isCreateable () )
208
- {
209
- insert config ;
210
- }
292
+ persistChanges (config );
211
293
}
212
-
294
+ System . debug ( LoggingLevel . ERROR , config );
213
295
return config ;
214
296
}
215
297
@@ -227,16 +309,26 @@ public with sharing class di_PlatformCache
227
309
228
310
@TestVisible
229
311
private static Cache.OrgPartition getPartition ()
312
+ {
313
+ return getPartitionByName ( getPartitionName () );
314
+ }
315
+
316
+ private static Cache.OrgPartition getPartitionByName (String partitionName )
230
317
{
231
318
Cache .OrgPartition result = null ;
232
- try
319
+ try
233
320
{
234
- result = Cache .Org .getPartition ( getPartitionName () );
321
+ result = Cache .Org .getPartition ( partitionName );
235
322
}
236
- catch (Exception excp )
323
+ catch (cache . Org . OrgCacheException oce )
237
324
{
238
- log ( ' ERROR: Is there Cache? Is the Cache Partition enabled : Exception: ' + excp );
325
+ throw new DIPlatformCacheException ( oce );
239
326
}
327
+ // catch (Exception excp) // TODO::Determine if catching this exception is the right move
328
+ // {
329
+ // // TODO: Determine if simply loging the error is sufficient
330
+ // log('ERROR: Is there Cache? Is the Cache Partition enabled : Exception:' + excp);
331
+ // }
240
332
return result ;
241
333
}
242
334
@@ -317,7 +409,8 @@ public with sharing class di_PlatformCache
317
409
@TestVisible
318
410
private static Boolean log (Exception excp )
319
411
{
320
- Boolean before = DEBUGGING , result ;
412
+ Boolean before = DEBUGGING ;
413
+ Boolean result ;
321
414
// always show exceptions
322
415
DEBUGGING = true ;
323
416
result = log (' Exception: ' + excp .getMessage ());
0 commit comments