Skip to content

Commit 1de14c7

Browse files
committed
Added new static functions to support activation and deactivation of the platform cache functions
1 parent 01b3bbd commit 1de14c7

File tree

1 file changed

+114
-21
lines changed

1 file changed

+114
-21
lines changed

force-di/main/classes/di_PlatformCache.cls

+114-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@SuppressWarnings('PMD.ClassNamingConventions,PMD.CognitiveComplexity')
12
public with sharing class di_PlatformCache
23
{
34
//////////////////////////////////////////////////////////////////////////////////////////////
@@ -16,16 +17,9 @@ public with sharing class di_PlatformCache
1617
private static Map<String, String> generatedKeyNames = new Map<String, String>();
1718
// Used for turning on logging (if needed)
1819
@TestVisible
20+
@SuppressWarnings('PMD.FieldNamingConventions')
1921
private static Boolean DEBUGGING = false;
2022

21-
//////////////////////////////////////////////////////////////////////////////////////////////
22-
// Constructors
23-
//////////////////////////////////////////////////////////////////////////////////////////////
24-
// singleton
25-
private di_PlatformCache()
26-
{
27-
}
28-
2923
//////////////////////////////////////////////////////////////////////////////////////////////
3024
// Public Methods
3125
//////////////////////////////////////////////////////////////////////////////////////////////
@@ -118,6 +112,7 @@ public with sharing class di_PlatformCache
118112
return result;
119113
}
120114

115+
@SuppressWarnings('PMD.AvoidDeeplyNestedIfStmts')
121116
public list<di_Binding> retrieveBindings(String developerName, Schema.SObjectType bindingSObjectType)
122117
{
123118
list<di_Binding> bindings = new list<di_Binding>();
@@ -139,6 +134,7 @@ public with sharing class di_PlatformCache
139134
for ( String cacheKey : cacheKeys )
140135
{
141136
cachedObject = orgPartition.get( cacheKey );
137+
142138
if ( cachedObject != null )
143139
{
144140
bindings.addAll( (List<di_Binding>) cachedObject);
@@ -174,6 +170,35 @@ public with sharing class di_PlatformCache
174170
}
175171
}
176172

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+
177202
/**
178203
* getPartitionKeys get partition keys
179204
* @return return Set<String> partition keys
@@ -190,26 +215,83 @@ public with sharing class di_PlatformCache
190215
return keys;
191216
}
192217

218+
public class DIPlatformCacheException extends Exception {}
219+
193220
//////////////////////////////////////////////////////////////////////////////////////////////
194221
// Private Methods
195222
//////////////////////////////////////////////////////////////////////////////////////////////
196223

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+
197283
@TestVisible
198284
private static di_Configurations__c getConfig()
199285
{
200-
di_Configurations__c config = di_Configurations__c.getInstance();
201-
286+
di_Configurations__c config = DEFAULT_CONFIG;
287+
System.debug(LoggingLevel.ERROR, config);
202288
if ( config == null )
203289
{
204290
config = new di_Configurations__c();
205291
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);
211293
}
212-
294+
System.debug(LoggingLevel.ERROR, config);
213295
return config;
214296
}
215297

@@ -227,16 +309,26 @@ public with sharing class di_PlatformCache
227309

228310
@TestVisible
229311
private static Cache.OrgPartition getPartition()
312+
{
313+
return getPartitionByName( getPartitionName() );
314+
}
315+
316+
private static Cache.OrgPartition getPartitionByName(String partitionName)
230317
{
231318
Cache.OrgPartition result = null;
232-
try
319+
try
233320
{
234-
result = Cache.Org.getPartition( getPartitionName() );
321+
result = Cache.Org.getPartition( partitionName );
235322
}
236-
catch (Exception excp)
323+
catch (cache.Org.OrgCacheException oce)
237324
{
238-
log('ERROR: Is there Cache? Is the Cache Partition enabled : Exception:' + excp);
325+
throw new DIPlatformCacheException(oce);
239326
}
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+
// }
240332
return result;
241333
}
242334

@@ -317,7 +409,8 @@ public with sharing class di_PlatformCache
317409
@TestVisible
318410
private static Boolean log(Exception excp)
319411
{
320-
Boolean before = DEBUGGING, result;
412+
Boolean before = DEBUGGING;
413+
Boolean result;
321414
// always show exceptions
322415
DEBUGGING = true;
323416
result = log('Exception: ' + excp.getMessage());

0 commit comments

Comments
 (0)