Version 40.1 by Pascal Robert on 2012/07/22 07:27

Show last authors
1 Some things to avoid when working with EOF. Some of these things are contraindicated in Apple documentation, others are not. But all are things that experience shows EOF does not expect, and can lead to all sorts of trouble, including mysterious exceptions, and EOF getting confused about what changes must be saved to the database.
2
3 1. (((
4 ===== Don't use an EO's Constructor. =====
5
6 Don't set EO properties in the EO constructor - use
7
8 {{code language="none"}}
9 awakeFromInsertion(...)
10 {{/code}}
11
12 or
13
14 {{code language="none"}}
15 awakeFromFetch(...)
16 {{/code}}
17
18 instead.
19 From [[Apple's Documentation>>attach:JavaDoc and other documentation@EnterpriseObjects.pdf]]:
20
21 >You may wonder why it's not recommended to initialize an enterprise object's values in an object's constructor. An enterprise object's constructor represents the earliest state in the life of a particular object. The state of an enterprise object at the point of construction is not complete; the object is not fully initialized. It may not yet have been inserted into an editing context and it might not even have been assigned a global ID. You don't ever want to manipulate an enterprise object that isn't in an editing context or that doesn't have a global ID.
22 >
23 >Therefore, any logic you add in an enterprise object's constructor may fail or be invalidated while the object finishes initializing. By providing custom logic in awakeFromInsertion or awakeFromFetch, however, you are guaranteed that an enterprise object is fully initialized.
24
25 When overriding
26
27 {{code language="none"}}
28 awakeFromInsertion(...)
29 {{/code}}
30
31 there are two times that this method can be called when the EO being inserted is not actually being initialized for the first time.
32
33 1. If it's being reinserted to a EC after it was deleted from another or the same EC. Only new EOs will have a temporary GlobalID.
34 1. If it's being saved to the server-side application by a Java Client WebObjects application. These EOs will have been inserted on the client-side and likely already have values set. To avoid overriding these values, you should verify that the attribute's value is null first.
35
36 {{code}}
37
38 @Override
39 public void awakeFromInsertion(EOEditingContext ec) {
40 super.awakeFromInsertion(ec);
41 EOGlobalID gid = ec.globalIDForObject(this);
42 if(gid.isTemporary()) {
43 // only set default values when we're inserted into an EC for the first time.
44 if(createdDate() == null) {
45 // only set value if it hasn't already been set by a Java Client applciation.
46 setCreatedDate(new NSTimestamp());
47 }
48 }
49 }
50
51 {{/code}}
52 )))
53 1. (((
54 ===== Don't change the value of an attribute or behavior of a relationship in its accessor method =====
55
56 EOF calls those accessor methods many times over the life of the EO. An accessor method is the last place that you want to be making **any** changes or doing any computations to determine the value. Don't:
57
58 * (% style="color: rgb(255,0,0);" %)**Don't**(%%) provide default values -
59 (% style="color: rgb(0,128,0);" %)**Do**(%%) use
60
61 {{code language="none"}}
62 awakeFromInsertion(...)
63 {{/code}} or
64
65 {{code language="none"}}
66 awakeFromFetch(...)
67 {{/code}}
68 * (% style="color: rgb(255,0,0);" %)**Don't**(%%) sort a to-many relationship's values -
69 (% style="color: rgb(0,128,0);" %)**Do**(%%) write a convenience method like
70
71 {{code language="none"}}
72 relatedObjectsSorted()
73 {{/code}}
74 * (% style="color: rgb(255,0,0);" %)**Don't**(%%) format a String or Date or Number attribute -
75 (% style="color: rgb(0,128,0);" %)**Do**(%%) formatting in helper classes or in the Component
76 * (% style="color: rgb(255,0,0);" %)**Don't**(%%) change an attribute's data type
77 * (% style="color: rgb(255,0,0);" %)**Don't**(%%) change an attribute's value when reading a different attribute. For example: Don't call
78
79 {{code language="none"}}
80 setFullName(...)
81 {{/code}} when you call
82
83 {{code language="none"}}
84 firstName()
85 {{/code}}
86 )))
87 1. (((
88 ===== Always Insert First. =====
89
90 Don't do anything to an EO before inserting it into an editing context. Always insert EOs into ECs immediately. See rule #1.
91 )))
92 1. (((
93 ===== Don't modify any EO properties in {{code language="none"}}validateFor...(...){{/code}} methods =====
94
95 Doing this in
96
97 {{code language="none"}}
98 validateValueForKey(...)
99 {{/code}}
100
101 is ok as Chuck Hill noted in the list.
102 )))
103 1. (((
104 ===== Always invoke {{code language="none"}}super{{/code}} when overriding EOF methods =====
105
106 If overriding
107
108 {{code language="none"}}
109 awakeFromInsertion(...)
110 {{/code}}
111
112 , remember to call the superclass implementation. Same with
113
114 {{code language="none"}}
115 awakeFromFetch(...)
116 {{/code}}
117
118 .
119 )))
120 1. (((
121 ===== Don't use EOF in model class static initializers =====
122
123 Doing so forces EOF into operational mode before the frameworks are initialized. Use lazy loading of the entity instead.
124 )))
125 1. (((
126 ===== Don't use mutable classes as attributes =====
127
128 Attributes of (
129
130 {{code language="none"}}
131 NSMutableArray
132 {{/code}}
133
134 ,
135
136 {{code language="none"}}
137 NSMutableDictionary
138 {{/code}}
139
140 or any other class that can change internal state after creation) will confuse EOF. If you want this effect, use immutable classes and provide cover methods to replace the immutable instance with an updated instance. For example:
141
142 {{code}}
143
144 public void addAppointment(String time, String reason) {
145 super.willChange();
146 NSMutableDictionary mutableAppointments = appointments().mutableClone();
147 mutableAppointments.setObjectForKey(reason, time);
148 setAppointments(mutableAppointments.immutableClone());
149 }
150
151 {{/code}}
152 )))
153 1. (((
154 ===== Always Lock your EditingContext =====
155
156 Don't call any EOEditingContext methods, or any methods on an EO in an EOEditingContext without first ensuring that the EOEditingContext is locked. That includes bindings in a WOD. It's your job to make sure the EO's that you bind to in a page are locked.
157
158 {{tip title="Project Wonder"}}
159 [[Project Wonder>>doc:WONDER.WebHome]] provides auto-locking, so you don't have to worry about this.
160 {{/tip}}
161 )))
162 1. (((
163 ===== Don't Expose Foreign Keys as Class Attributes =====
164
165 Doing this will result in buggy unexpected behavior in EOF. Same goes for compound PKs (Primary Keys) where the compound PK values are set automatically by EOF (for example in a many-to-many join entity). However exposing compound PK attributes as class attributes is OK for an entity where you are manually setting the PK values yourself. Interestingly, even though it is not recommended, exposing a Primary Key as a class attribute will not break EOF.
166 )))
167 1. (((
168 ===== Always use .imutableClone() when iterating over a to-many relationship with a for-each loop. =====
169
170 It doesn't matter if you use the relationship directly or use a local variable that was populated by
171
172 {{code language="none"}}
173 myRelatedObjects()
174 {{/code}}
175
176 or
177
178 {{code language="none"}}
179 getValueForKey("myRelatedObjects")
180 {{/code}}
181
182 you should always use an imutableClone of the array, otherwise you will likely just have a pointer to the actual relationship, which can easily change.
183 )))