summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOObjectStore.java
blob: cd18e36772b00ae665ae3bc2f5a09d43ce957e72 (plain)
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
/*
Wotonomy: OpenStep design patterns for pure Java applications.
Copyright (C) 2000 Michael Powers

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see http://www.gnu.org
*/

package net.wotonomy.control;

import java.util.List;
import java.util.Map;

import net.wotonomy.foundation.NSArray;

/**
* EOObjectStore defines an object repository that tracks
* object creations, deletions, and updates made by 
* EOEditingContexts. <br><br>
*
* A concrete implementation would probably write these 
* changes to some kind of persistent storage, like a
* database. <br><br>
*
* EOEditingContext is itself a subclass of EOObjectStore
* that requires an EOObjectStore parent for committing
* its changes.  This means that EOEditingContexts can
* use other EOEditingContexts as their parent, but there
* still must exist an EOObjectStore as the root of the 
* editing graph.
*
* @author michael@mpowers.net
* @author $Author: cgruber $
* @version $Revision: 894 $
*/
public abstract class EOObjectStore
{
    /**
    * Key for the user info of ObjectsChangedInStoreNotifications.
    * The key should retrieve an array of deleted EOGlobalIDs.
    */
    public static final String DeletedKey = "deleted";

    /**
    * Key for the user info of ObjectsChangedInStoreNotifications.
    * The key should retrieve an array of inserted EOGlobalIDs.
    */
    public static final String InsertedKey = "inserted";

    /**
    * Key for the user info of ObjectsChangedInStoreNotifications.
    * The key should retrieve an array of updated EOGlobalIDs.
    * EOEditingContexts should refault their copies of these objects.
    */
    public static final String UpdatedKey = "updated";

    /**
    * Key for the user info of ObjectsChangedInStoreNotification.
    * The key should retrieve an array of EOGlobalIDs.
    */
    public static final String InvalidatedKey = "invalidated";

    /**
    * Key for the NSNotification posted when this object store
    * is asked to invalidate all objects.  Object of the notification
    * will be this object store, and user info will contain the
    * InvalidatedKey.
    */
    public static final String 
        InvalidatedAllObjectsInStoreNotification = 
        "EOInvalidatedAllObjectsInStoreNotification";

    /**
    * Key for the NSNotification posted when this object store
    * is changed.  Object of the notification will be this object 
    * store, and user info will contain InsertedKey, UpdatedKey,
    * DeletedKey, and InvalidatedKey.
    */
    public static final String  
        ObjectsChangedInStoreNotification = 
        "EOObjectsChangedInStoreNotification";
 
    /**
    * Default constructor is responsible for initializing
    * internal state.
    */ 
	public EOObjectStore ()
    {
    }

    /**
    * Called by editing contexts when they no longer
    * need to track the specified id.  You will not need
    * to call this method, but you use use it for a hint
    * that the specified global id is not in use by that
    * child editing context.
    */
    public void editingContextDidForgetObjectWithGlobalID ( 
        EOEditingContext aContext,
        EOGlobalID aGlobalID )
    {
    }   
        
    /**
    * Returns a List of objects associated with the object 
    * with the specified id for the specified property 
    * relationship, or may return a placeholder array that
    * will defer the fetch until accessed (an array fault).
    * All objects must be registered the specified editing context.
    * The specified relationship key must produce a result of
    * type Collection for the source object or an exception is thrown.
    */
    public abstract NSArray arrayFaultWithSourceGlobalID ( 
        EOGlobalID aGlobalID,
        String aRelationship,
        EOEditingContext aContext );
     
    /**
    * Returns the object for the specified id.
    * The returned object may be a fault.
    * The object will be registered in the
    * specified editing context.
    */
    public abstract /*EOEnterpriseObject*/ Object faultForGlobalID ( 
        EOGlobalID aGlobalID,
        EOEditingContext aContext );
        
    /**
    * Returns a fault representing an object of 
    * the specified entity type with values from 
    * the specified dictionary.  The fault should
    * belong to the specified editing context.
    */        
    public abstract /*EOEnterpriseObject*/ Object faultForRawRow ( 
        Map aDictionary,
        String anEntityName,
        EOEditingContext aContext );
        
    /**
    * Given a newly instantiated object, this method 
    * initializes its properties to values appropriate
    * for the specified id.  The object should already
    * belong to the specified editing context.  
    * This method is called to populate faults.
    */        
    public abstract void initializeObject ( 
        /*EOEnterpriseObject*/ Object eo,
        EOGlobalID aGlobalID,
        EOEditingContext aContext );
        
    /**
    * Remove all values from all objects in memory,
    * turning them into faults, and posts an NSNotification
    * that all objects have been invalidated.
    * The notification should be named with the string
    * constant InvalidatedAllObjectsInStoreNotification
    * with this object store as the object and no user info.
    */
    public abstract void invalidateAllObjects ();
    
    /**
    * Removes values with the specified ids from memory,
    * turning them into faults, and posts a notification
    * that those objects have been invalidated.
    * The notification should be named with the string
    * constant ObjectsChangedInStoreNotification
    * with this object store as the object and user info
    * containing a key named InvalidateKey that returns
    * a List of the EOGlobalIDs of the invalidated objects.
    */
    public abstract void invalidateObjectsWithGlobalIDs ( 
        List aList );
        
    /**
    * Returns whether the object corresponding to the
    * specified id is locked.  The concept of object
    * locking is implementation-specific.
    */
    public abstract boolean isObjectLockedWithGlobalID ( 
        EOGlobalID aGlobalID,
        EOEditingContext aContext );
        
    /**
    * Locks the object corresponding to the
    * specified id is locked.  The concept of object
    * locking is implementation-specific.
    * The lock may be released when objects are
    * invalidated or commited, but this behavior
    * is not required.
    */
    public abstract void lockObjectWithGlobalID ( 
        EOGlobalID aGlobalID,
        EOEditingContext aContext );
        
    /**
    * Returns a List of objects associated with the object 
    * with the specified id for the specified property 
    * relationship.  This method may not return an array fault
    * because array faults call this method to fetch on demand.
    * All objects must be registered the specified editing context.
    * The specified relationship key must produce a result of
    * type Collection for the source object or an exception is thrown.
    */
    public abstract NSArray objectsForSourceGlobalID ( 
        EOGlobalID aGlobalID,
        String aRelationship,
        EOEditingContext aContext );
        
    /**
    * Returns a List of objects the meet the criteria of
    * the supplied specification.  Faults are not allowed in the array.
    * Each object is registered with the specified editing context.
    * If any object is already fetched in the specified context, 
    * it is not refetched and that object should be used in the array.
    */
    public abstract NSArray objectsWithFetchSpecification ( 
        EOFetchSpecification aFetchSpec,
        EOEditingContext aContext );
        
    /**
    * Removes all values from the specified object, 
    * converting it into a fault for the specified id.
    * New or deleted objects should not be refaulted.
    */
    public abstract void refaultObject ( 
        Object anObject,
        EOGlobalID aGlobalID,
        EOEditingContext aContext );
        
    /**
    * Writes all changes in the specified editing context
    * to the respository.  The object store is expected to
    * post a notification that should be named with the string
    * constant ObjectsChangedInStoreNotification
    * with this object store as the object and user info
    * containing keys named UpdatedKey, InsertedKey, and 
    * DeletedKey that return Lists of the EOGlobalIDs of the 
    * corresponding objects.
    */
    public abstract void saveChangesInEditingContext ( 
        EOEditingContext aContext ); 
}

/*
 * $Log$
 * Revision 1.2  2006/02/16 16:47:14  cgruber
 * Move some classes in to "internal" packages and re-work imports, etc.
 *
 * Also use UnsupportedOperationExceptions where appropriate, instead of WotonomyExceptions.
 *
 * Revision 1.1  2006/02/16 13:19:57  cgruber
 * Check in all sources in eclipse-friendly maven-enabled packages.
 *
 * Revision 1.15  2003/12/18 15:37:38  mpowers
 * Changes to retain ability to work with objects that don't necessarily
 * implement EOEnterpriseObject.  I would still like to preserve this case
 * for general usage, however the access package is free to assume that
 * those objects will be EOs and cast appropriately.
 *
 * Revision 1.14  2003/08/19 01:53:12  chochos
 * EOObjectStore had some incompatible return types (Object instead of EOEnterpriseObject, in fault methods mostly). It's internally consistent but I hope it doesn't break anything based on this, even though fault methods mostly throw exceptions for now.
 *
 * Revision 1.13  2002/02/13 21:20:15  mpowers
 * Updated comments.
 *
 * Revision 1.12  2001/05/05 23:05:42  mpowers
 * Implemented Array Faults.
 *
 * Revision 1.11  2001/02/21 21:17:32  mpowers
 * Now retaining a reference to the recent changes observer.
 * Better documented need to retain reference.
 * Started implementing notifications.
 *
 * Revision 1.10  2001/02/16 22:51:29  mpowers
 * Now deep-cloning objects passed between editing contexts.
 *
 * Revision 1.9  2001/02/16 18:34:19  mpowers
 * Implementing nested contexts.
 *
 * Revision 1.8  2001/02/15 21:13:30  mpowers
 * First draft implementation is complete.  Now on to debugging.
 *
 * Revision 1.7  2001/02/14 23:03:02  mpowers
 * A near-complete first draft of EOEditingContext.
 *
 * Revision 1.6  2001/02/13 23:24:29  mpowers
 * Implementing more of editing context.
 *
 * Revision 1.5  2001/02/12 20:36:36  mpowers
 * Documented methods.
 *
 * Revision 1.4  2001/02/09 22:09:34  mpowers
 * Completed implementation of EOObjectStore.
 *
 * Revision 1.3  2001/02/06 15:24:11  mpowers
 * Widened parameters on abstract method to fix build.
 *
 * Revision 1.2  2001/02/06 14:57:42  mpowers
 * Defined abstract methods.
 *
 * Revision 1.1.1.1  2000/12/21 15:46:42  mpowers
 * Contributing wotonomy.
 *
 * Revision 1.2  2000/12/20 16:25:35  michael
 * Added log to all files.
 *
 *
 */