-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathfflib_SObjectUnitOfWork.cls
950 lines (829 loc) · 32.5 KB
/
fflib_SObjectUnitOfWork.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
/**
* Copyright (c), FinancialForce.com, inc
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the FinancialForce.com, inc nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
/**
* Provides an implementation of the Enterprise Application Architecture Unit Of Work, as defined by Martin Fowler
* http://martinfowler.com/eaaCatalog/unitOfWork.html
*
* "When you're pulling data in and out of a database, it's important to keep track of what you've changed; otherwise,
* that data won't be written back into the database. Similarly you have to insert new objects you create and
* remove any objects you delete."
*
* "You can change the database with each change to your object model, but this can lead to lots of very small database calls,
* which ends up being very slow. Furthermore it requires you to have a transaction open for the whole interaction, which is
* impractical if you have a business transaction that spans multiple requests. The situation is even worse if you need to
* keep track of the objects you've read so you can avoid inconsistent reads."
*
* "A Unit of Work keeps track of everything you do during a business transaction that can affect the database. When you're done,
* it figures out everything that needs to be done to alter the database as a result of your work."
*
* In an Apex context this pattern provides the following specific benefits
* - Applies bulkfication to DML operations, insert, update and delete
* - Manages a business transaction around the work and ensures a rollback occurs (even when exceptions are later handled by the caller)
* - Honours dependency rules between records and updates dependent relationships automatically during the commit
*
* Please refer to the testMethod's in this class for example usage
*
* TODO: Need to complete the 100% coverage by covering parameter exceptions in tests
* TODO: Need to add some more test methods for more complex use cases and some unexpected (e.g. registerDirty and then registerDeleted)
*
**/
public virtual class fflib_SObjectUnitOfWork
implements fflib_ISObjectUnitOfWork
{
protected List<Schema.SObjectType> m_sObjectTypes = new List<Schema.SObjectType>();
protected Map<String, List<SObject>> m_newListByType = new Map<String, List<SObject>>();
protected Map<String, Map<Id, SObject>> m_dirtyMapByType = new Map<String, Map<Id, SObject>>();
protected Map<String, Map<Id, SObject>> m_deletedMapByType = new Map<String, Map<Id, SObject>>();
protected Map<String, Map<Id, SObject>> m_emptyRecycleBinMapByType = new Map<String, Map<Id, SObject>>();
protected Map<String, Relationships> m_relationships = new Map<String, Relationships>();
protected Map<String, List<SObject>> m_publishBeforeListByType = new Map<String, List<SObject>>();
protected Map<String, List<SObject>> m_publishAfterSuccessListByType = new Map<String, List<SObject>>();
protected Map<String, List<SObject>> m_publishAfterFailureListByType = new Map<String, List<SObject>>();
protected List<IDoWork> m_workList = new List<IDoWork>();
@TestVisible
protected IEmailWork m_emailWork = new SendEmailWork();
protected IDML m_dml;
/**
* Interface describes work to be performed during the commitWork method
**/
public interface IDoWork
{
void doWork();
}
public interface IDML
{
void dmlInsert(List<SObject> objList);
void dmlUpdate(List<SObject> objList);
void dmlDelete(List<SObject> objList);
void eventPublish(List<SObject> objList);
void emptyRecycleBin(List<SObject> objList);
}
public virtual class SimpleDML implements IDML
{
public virtual void dmlInsert(List<SObject> objList)
{
insert objList;
}
public virtual void dmlUpdate(List<SObject> objList)
{
update objList;
}
public virtual void dmlDelete(List<SObject> objList)
{
delete objList;
}
public virtual void eventPublish(List<SObject> objList)
{
EventBus.publish(objList);
}
public virtual void emptyRecycleBin(List<SObject> objList)
{
if (objList.isEmpty())
{
return;
}
Database.emptyRecycleBin(objList);
}
}
public virtual class UserModeDML extends SimpleDML{
@TestVisible
private AccessLevel m_accessLevel;
public UserModeDML(){
this(AccessLevel.USER_MODE);
}
/** Supply the AccessLevel explicitly (UserModeDML uses AccessMode.USER_MODE, by default) */
public UserModeDML(AccessLevel access){
m_accessLevel = access;
}
public virtual override void dmlInsert(List<SObject> objList){
Database.insert(objList,m_accessLevel);
}
public virtual override void dmlUpdate(List<SObject> objList){
Database.update(objList,m_accessLevel);
}
public virtual override void dmlDelete(List<SObject> objList){
Database.delete(objList,m_accessLevel);
}
}
/**
* Constructs a new UnitOfWork to support work against the given object list
*
* @param sObjectTypes A list of objects given in dependency order (least dependent first)
*/
public fflib_SObjectUnitOfWork(List<Schema.SObjectType> sObjectTypes)
{
this(sObjectTypes,new SimpleDML());
}
public fflib_SObjectUnitOfWork(List<Schema.SObjectType> sObjectTypes, IDML dml)
{
m_sObjectTypes = sObjectTypes.clone();
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
// register the type
handleRegisterType(sObjectType);
}
m_relationships.put(Messaging.SingleEmailMessage.class.getName(), new Relationships());
m_dml = dml;
}
// default implementations for commitWork events
public virtual void onRegisterType(Schema.SObjectType sObjectType) {}
public virtual void onCommitWorkStarting() {}
public virtual void onPublishBeforeEventsStarting() {}
public virtual void onPublishBeforeEventsFinished() {}
public virtual void onDMLStarting() {}
public virtual void onDMLFinished() {}
public virtual void onDoWorkStarting() {}
public virtual void onDoWorkFinished() {}
public virtual void onPublishAfterSuccessEventsStarting() {}
public virtual void onPublishAfterSuccessEventsFinished() {}
public virtual void onPublishAfterFailureEventsStarting() {}
public virtual void onPublishAfterFailureEventsFinished() {}
public virtual void onCommitWorkFinishing() {}
public virtual void onCommitWorkFinished(Boolean wasSuccessful) {}
/**
* Registers the type to be used for DML operations
*
* @param sObjectType - The type to register
*
*/
private void handleRegisterType(Schema.SObjectType sObjectType)
{
String sObjectName = sObjectType.getDescribe().getName();
// add type to dml operation tracking
m_newListByType.put(sObjectName, new List<SObject>());
m_dirtyMapByType.put(sObjectName, new Map<Id, SObject>());
m_deletedMapByType.put(sObjectName, new Map<Id, SObject>());
m_emptyRecycleBinMapByType.put(sObjectName, new Map<Id, SObject>());
m_relationships.put(sObjectName, new Relationships());
m_publishBeforeListByType.put(sObjectName, new List<SObject>());
m_publishAfterSuccessListByType.put(sObjectName, new List<SObject>());
m_publishAfterFailureListByType.put(sObjectName, new List<SObject>());
// give derived class opportunity to register the type
onRegisterType(sObjectType);
}
/**
* Register a generic piece of work to be invoked during the commitWork phase
**/
public void registerWork(IDoWork work)
{
m_workList.add(work);
}
/**
* Registers the given email to be sent during the commitWork
**/
public void registerEmail(Messaging.Email email)
{
m_emailWork.registerEmail(email);
}
/**
* Register an deleted record to be removed from the recycle bin during the commitWork method
*
* @param record An deleted record
**/
public void registerEmptyRecycleBin(SObject record)
{
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForSupportedSObjectType(m_emptyRecycleBinMapByType, sObjectType);
m_emptyRecycleBinMapByType.get(sObjectType).put(record.Id, record);
}
/**
* Register deleted records to be removed from the recycle bin during the commitWork method
*
* @param records Deleted records
**/
public void registerEmptyRecycleBin(List<SObject> records)
{
for (SObject record : records)
{
registerEmptyRecycleBin(record);
}
}
/**
* Register a newly created SObject instance to be inserted when commitWork is called
*
* @param record A newly created SObject instance to be inserted during commitWork
**/
public void registerNew(SObject record)
{
registerNew(record, null, null);
}
/**
* Register a list of newly created SObject instances to be inserted when commitWork is called
*
* @param records A list of newly created SObject instances to be inserted during commitWork
**/
public void registerNew(List<SObject> records)
{
for (SObject record : records)
{
registerNew(record, null, null);
}
}
/**
* Register a newly created SObject instance to be inserted when commitWork is called,
* you may also provide a reference to the parent record instance (should also be registered as new separately)
*
* @param record A newly created SObject instance to be inserted during commitWork
* @param relatedToParentField A SObjectField reference to the child field that associates the child record with its parent
* @param relatedToParentRecord A SObject instance of the parent record (should also be registered as new separately)
**/
public void registerNew(SObject record, Schema.SObjectField relatedToParentField, SObject relatedToParentRecord)
{
if (record.Id != null)
throw new UnitOfWorkException('Only new records can be registered as new');
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForNonEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_newListByType, sObjectType);
m_newListByType.get(sObjectType).add(record);
if (relatedToParentRecord!=null && relatedToParentField!=null)
registerRelationship(record, relatedToParentField, relatedToParentRecord);
}
/**
* Register a relationship between two records that have yet to be inserted to the database. This information will be
* used during the commitWork phase to make the references only when related records have been inserted to the database.
*
* @param record An existing or newly created record
* @param relatedToField A SObjectField reference to the lookup field that relates the two records together
* @param relatedTo A SObject instance (yet to be committed to the database)
*/
public void registerRelationship(SObject record, Schema.SObjectField relatedToField, SObject relatedTo)
{
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForNonEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_newListByType, sObjectType);
m_relationships.get(sObjectType).add(record, relatedToField, relatedTo);
}
/**
* Registers a relationship between a record and a Messaging.Email where the record has yet to be inserted
* to the database. This information will be
* used during the commitWork phase to make the references only when related records have been inserted to the database.
*
* @param email a single email message instance
* @param relatedTo A SObject instance (yet to be committed to the database)
*/
public void registerRelationship( Messaging.SingleEmailMessage email, SObject relatedTo )
{
m_relationships.get( Messaging.SingleEmailMessage.class.getName() ).add(email, relatedTo);
}
/**
* Registers a relationship between a record and a lookup value using an external ID field and a provided value. This
* information will be used during the commitWork phase to make the lookup reference requested when inserted to the database.
*
* @param record An existing or newly created record
* @param relatedToField A SObjectField reference to the lookup field that relates the two records together
* @param externalIdField A SObjectField reference to a field on the target SObject that is marked as isExternalId
* @param externalId A Object representing the targeted value of the externalIdField in said lookup
*
* Usage Example: uow.registerRelationship(recordSObject, record_sobject__c.relationship_field__c, lookup_sobject__c.external_id__c, 'abc123');
*
* Wraps putSObject, creating a new instance of the lookup sobject using the external id field and value.
*/
public void registerRelationship(SObject record, Schema.SObjectField relatedToField, Schema.SObjectField externalIdField, Object externalId)
{
// NOTE: Due to the lack of ExternalID references on Standard Objects, this method can not be provided a standardized Unit Test. - Rick Parker
String sObjectType = record.getSObjectType().getDescribe().getName();
if(!m_newListByType.containsKey(sObjectType))
throw new UnitOfWorkException(String.format('SObject type {0} is not supported by this unit of work', new String[] { sObjectType }));
m_relationships.get(sObjectType).add(record, relatedToField, externalIdField, externalId);
}
/**
* Register an existing record to be updated during the commitWork method
*
* @param record An existing record
**/
public void registerDirty(SObject record)
{
registerDirty(record, new List<SObjectField>());
}
/**
* Registers the entire records as dirty or just only the dirty fields if the record was already registered
*
* @param records SObjects to register as dirty
* @param dirtyFields A list of modified fields
*/
public void registerDirty(List<SObject> records, List<SObjectField> dirtyFields)
{
for (SObject record : records)
{
registerDirty(record, dirtyFields);
}
}
/**
* Registers the entire record as dirty or just only the dirty fields if the record was already registered
*
* @param record SObject to register as dirty
* @param dirtyFields A list of modified fields
*/
public void registerDirty(SObject record, List<SObjectField> dirtyFields)
{
if (record.Id == null)
throw new UnitOfWorkException('New records cannot be registered as dirty');
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForNonEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_dirtyMapByType, sObjectType);
// If record isn't registered as dirty, or no dirty fields to drive a merge
if (!m_dirtyMapByType.get(sObjectType).containsKey(record.Id) || dirtyFields.isEmpty())
{
// Register the record as dirty
m_dirtyMapByType.get(sObjectType).put(record.Id, record);
}
else
{
// Update the registered record's fields
SObject registeredRecord = m_dirtyMapByType.get(sObjectType).get(record.Id);
for (SObjectField dirtyField : dirtyFields) {
registeredRecord.put(dirtyField, record.get(dirtyField));
}
m_dirtyMapByType.get(sObjectType).put(record.Id, registeredRecord);
}
}
/**
* Register an existing record to be updated when commitWork is called,
* you may also provide a reference to the parent record instance (should also be registered as new separately)
*
* @param record A newly created SObject instance to be inserted during commitWork
* @param relatedToParentField A SObjectField reference to the child field that associates the child record with its parent
* @param relatedToParentRecord A SObject instance of the parent record (should also be registered as new separately)
**/
public void registerDirty(SObject record, Schema.SObjectField relatedToParentField, SObject relatedToParentRecord)
{
registerDirty(record);
if (relatedToParentRecord!=null && relatedToParentField!=null)
registerRelationship(record, relatedToParentField, relatedToParentRecord);
}
/**
* Register a list of existing records to be updated during the commitWork method
*
* @param records A list of existing records
**/
public void registerDirty(List<SObject> records)
{
for (SObject record : records)
{
this.registerDirty(record);
}
}
/**
* Register a new or existing record to be inserted/updated during the commitWork method
*
* @param record A new or existing record
**/
public void registerUpsert(SObject record)
{
if (record.Id == null)
{
registerNew(record, null, null);
}
else
{
registerDirty(record, new List<SObjectField>());
}
}
/**
* Register a list of mix of new and existing records to be inserted updated during the commitWork method
*
* @param records A list of mix of new and existing records
**/
public void registerUpsert(List<SObject> records)
{
for (SObject record : records)
{
this.registerUpsert(record);
}
}
/**
* Register an existing record to be deleted during the commitWork method
*
* @param record An existing record
**/
public void registerDeleted(SObject record)
{
if (record.Id == null)
throw new UnitOfWorkException('New records cannot be registered for deletion');
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForNonEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_deletedMapByType, sObjectType);
m_deletedMapByType.get(sObjectType).put(record.Id, record);
}
/**
* Register a list of existing records to be deleted during the commitWork method
*
* @param records A list of existing records
**/
public void registerDeleted(List<SObject> records)
{
for (SObject record : records)
{
this.registerDeleted(record);
}
}
/**
* Register a list of existing records to be deleted and removed from the recycle bin during the commitWork method
*
* @param records A list of existing records
**/
public void registerPermanentlyDeleted(List<SObject> records)
{
this.registerEmptyRecycleBin(records);
this.registerDeleted(records);
}
/**
* Register a list of existing records to be deleted and removed from the recycle bin during the commitWork method
*
* @param record A list of existing records
**/
public void registerPermanentlyDeleted(SObject record)
{
this.registerEmptyRecycleBin(record);
this.registerDeleted(record);
}
/**
* Register a newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param record A newly created SObject (Platform Event) instance to be inserted during commitWork
**/
public void registerPublishBeforeTransaction(SObject record)
{
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_publishBeforeListByType, sObjectType);
m_publishBeforeListByType.get(sObjectType).add(record);
}
/**
* Register a list of newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param records A list of existing records
**/
public void registerPublishBeforeTransaction(List<SObject> records)
{
for (SObject record : records)
{
this.registerPublishBeforeTransaction(record);
}
}
/**
* Register a newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param record A newly created SObject (Platform Event) instance to be inserted during commitWork
**/
public void registerPublishAfterSuccessTransaction(SObject record)
{
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_publishAfterSuccessListByType, sObjectType);
m_publishAfterSuccessListByType.get(sObjectType).add(record);
}
/**
* Register a list of newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param records A list of existing records
**/
public void registerPublishAfterSuccessTransaction(List<SObject> records)
{
for (SObject record : records)
{
this.registerPublishAfterSuccessTransaction(record);
}
}
/**
* Register a newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param record A newly created SObject (Platform Event) instance to be inserted during commitWork
**/
public void registerPublishAfterFailureTransaction(SObject record)
{
String sObjectType = record.getSObjectType().getDescribe().getName();
assertForEventSObjectType(sObjectType);
assertForSupportedSObjectType(m_publishAfterFailureListByType, sObjectType);
m_publishAfterFailureListByType.get(sObjectType).add(record);
}
/**
* Register a list of newly created SObject (Platform Event) instance to be published when commitWork is called
*
* @param records A list of existing records
**/
public void registerPublishAfterFailureTransaction(List<SObject> records)
{
for (SObject record : records)
{
this.registerPublishAfterFailureTransaction(record);
}
}
/**
* Takes all the work that has been registered with the UnitOfWork and commits it to the database
**/
public void commitWork()
{
Savepoint sp = Database.setSavepoint();
Boolean wasSuccessful = false;
try
{
doCommitWork();
wasSuccessful = true;
}
catch (Exception e)
{
Database.rollback(sp);
throw e;
}
finally
{
doAfterCommitWorkSteps(wasSuccessful);
}
}
private void doCommitWork()
{
onCommitWorkStarting();
onPublishBeforeEventsStarting();
publishBeforeEventsStarting();
onPublishBeforeEventsFinished();
onDMLStarting();
insertDmlByType();
updateDmlByType();
deleteDmlByType();
emptyRecycleBinByType();
resolveEmailRelationships();
onDMLFinished();
onDoWorkStarting();
doWork();
onDoWorkFinished();
onCommitWorkFinishing();
}
private void doAfterCommitWorkSteps(Boolean wasSuccessful)
{
if (wasSuccessful)
{
doAfterCommitWorkSuccessSteps();
}
else
{
doAfterCommitWorkFailureSteps();
}
onCommitWorkFinished(wasSuccessful);
}
private void doAfterCommitWorkSuccessSteps()
{
onPublishAfterSuccessEventsStarting();
publishAfterSuccessEvents();
onPublishAfterSuccessEventsFinished();
}
private void doAfterCommitWorkFailureSteps()
{
onPublishAfterFailureEventsStarting();
publishAfterFailureEvents();
onPublishAfterFailureEventsFinished();
}
private void publishBeforeEventsStarting()
{
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
m_dml.eventPublish(m_publishBeforeListByType.get(sObjectType.getDescribe().getName()));
}
}
private void insertDmlByType()
{
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
m_relationships.get(sObjectType.getDescribe().getName()).resolve();
m_dml.dmlInsert(m_newListByType.get(sObjectType.getDescribe().getName()));
}
}
private void updateDmlByType()
{
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
m_relationships.get(sObjectType.getDescribe().getName()).resolve();
m_dml.dmlUpdate(m_dirtyMapByType.get(sObjectType.getDescribe().getName()).values());
}
}
private void deleteDmlByType()
{
Integer objectIdx = m_sObjectTypes.size() - 1;
while (objectIdx >= 0)
{
m_dml.dmlDelete(m_deletedMapByType.get(m_sObjectTypes[objectIdx--].getDescribe().getName()).values());
}
}
private void emptyRecycleBinByType()
{
Integer objectIdx = m_sObjectTypes.size() - 1;
while (objectIdx >= 0)
{
m_dml.emptyRecycleBin(m_emptyRecycleBinMapByType.get(m_sObjectTypes[objectIdx--].getDescribe().getName()).values());
}
}
private void resolveEmailRelationships()
{
m_relationships.get(Messaging.SingleEmailMessage.class.getName()).resolve();
}
private void doWork()
{
m_workList.add(m_emailWork);
for (IDoWork work : m_workList)
{
work.doWork();
}
}
private void publishAfterSuccessEvents()
{
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
m_dml.eventPublish(m_publishAfterSuccessListByType.get(sObjectType.getDescribe().getName()));
}
}
private void publishAfterFailureEvents()
{
for (Schema.SObjectType sObjectType : m_sObjectTypes)
{
m_dml.eventPublish(m_publishAfterFailureListByType.get(sObjectType.getDescribe().getName()));
}
}
@TestVisible
private void assertForNonEventSObjectType(String sObjectType)
{
if (sObjectType.length() > 3 && sObjectType.right(3) == '__e')
{
throw new UnitOfWorkException(
String.format(
'SObject type {0} must use registerPublishBeforeTransaction or ' +
'registerPublishAfterTransaction methods to be used within this unit of work',
new List<String> { sObjectType }
)
);
}
}
@TestVisible
private void assertForEventSObjectType(String sObjectType)
{
if (sObjectType.length() > 3 && sObjectType.right(3) != '__e')
{
throw new UnitOfWorkException(
String.format(
'SObject type {0} is invalid for publishing within this unit of work',
new List<String> {sObjectType}
)
);
}
}
@TestVisible
private void assertForSupportedSObjectType(Map<String, Object> theMap, String sObjectType)
{
if (!theMap.containsKey(sObjectType))
{
throw new UnitOfWorkException(
String.format(
'SObject type {0} is not supported by this unit of work',
new List<String> { sObjectType }
)
);
}
}
private class Relationships
{
private List<IRelationship> m_relationships = new List<IRelationship>();
public void resolve()
{
// Resolve relationships
for (IRelationship relationship : m_relationships)
{
//relationship.Record.put(relationship.RelatedToField, relationship.RelatedTo.Id);
relationship.resolve();
}
}
public void add(SObject record, Schema.SObjectField relatedToField, Schema.SObjectField externalIdField, Object externalId)
{
if (relatedToField == null) {
throw new UnitOfWorkException('Invalid argument: relatedToField.');
}
String relationshipName = relatedToField.getDescribe().getRelationshipName();
if (String.isBlank(relationshipName)) {
throw new UnitOfWorkException('Invalid argument: relatedToField. Field supplied is not a relationship field.');
}
List<Schema.SObjectType> relatedObjects = relatedToField.getDescribe().getReferenceTo();
Schema.SObjectType relatedObject = relatedObjects[0];
String externalIdFieldName = externalIdField.getDescribe().getName();
Boolean relatedHasExternalIdField = relatedObject.getDescribe().fields.getMap().keySet().contains(externalIdFieldName.toLowerCase());
Boolean externalIdFieldIsValid = externalIdField.getDescribe().isExternalId();
if (!relatedHasExternalIdField) {
throw new UnitOfWorkException('Invalid argument: externalIdField. Field supplied is not a known field on the target sObject.');
}
if (!externalIdFieldIsValid) {
throw new UnitOfWorkException('Invalid argument: externalIdField. Field supplied is not a marked as an External Identifier.');
}
RelationshipByExternalId relationship = new RelationshipByExternalId();
relationship.Record = record;
relationship.RelatedToField = relatedToField;
relationship.RelatedTo = relatedObject;
relationship.RelationshipName = relationshipName;
relationship.ExternalIdField = externalIdField;
relationship.ExternalId = externalId;
m_relationships.add(relationship);
}
public void add(SObject record, Schema.SObjectField relatedToField, SObject relatedTo)
{
// Relationship to resolve
Relationship relationship = new Relationship();
relationship.Record = record;
relationship.RelatedToField = relatedToField;
relationship.RelatedTo = relatedTo;
m_relationships.add(relationship);
}
public void add(Messaging.SingleEmailMessage email, SObject relatedTo)
{
EmailRelationship emailRelationship = new EmailRelationship();
emailRelationship.email = email;
emailRelationship.relatedTo = relatedTo;
m_relationships.add(emailRelationship);
}
}
private interface IRelationship
{
void resolve();
}
private class RelationshipByExternalId implements IRelationship
{
public SObject Record;
public Schema.SObjectField RelatedToField;
public Schema.SObjectType RelatedTo;
public String RelationshipName;
public Schema.SObjectField ExternalIdField;
public Object ExternalId;
public void resolve()
{
SObject relationshipObject = this.RelatedTo.newSObject();
relationshipObject.put( ExternalIdField.getDescribe().getName(), this.ExternalId );
this.Record.putSObject( this.RelationshipName, relationshipObject );
}
}
private class Relationship implements IRelationship
{
public SObject Record;
public Schema.SObjectField RelatedToField;
public SObject RelatedTo;
public void resolve()
{
if (this.Record.get(this.RelatedToField) == null){
this.Record.put( this.RelatedToField, this.RelatedTo.Id);
}
}
}
private class EmailRelationship implements IRelationship
{
public Messaging.SingleEmailMessage email;
public SObject relatedTo;
public void resolve()
{
this.email.setWhatId( this.relatedTo.Id );
}
}
/**
* UnitOfWork Exception
**/
public class UnitOfWorkException extends Exception {}
/**
* Internal implementation of Messaging.sendEmail, see outer class registerEmail method
**/
public interface IEmailWork extends IDoWork
{
void registerEmail(Messaging.Email email);
}
private class SendEmailWork implements IEmailWork
{
private List<Messaging.Email> emails;
public SendEmailWork()
{
this.emails = new List<Messaging.Email>();
}
public void registerEmail(Messaging.Email email)
{
this.emails.add(email);
}
public void doWork()
{
if (emails.size() > 0) Messaging.sendEmail(emails);
}
}
}