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
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package Freeze;
class ObjectStore implements IceUtil.Store
{
ObjectStore(String facet, boolean createDb, EvictorI evictor,
java.util.List indices, boolean populateEmptyIndices)
{
_cache = new IceUtil.Cache(this);
_facet = facet;
_evictor = evictor;
_indices = indices;
_communicator = evictor.communicator();
if(facet.equals(""))
{
_dbName = EvictorI.defaultDb;
}
else
{
_dbName = facet;
}
Connection connection = Util.createConnection(_communicator, evictor.dbEnv().getEnvName());
try
{
Catalog catalog = new Catalog(connection, Util.catalogName(), true);
CatalogData catalogData = (CatalogData)catalog.get(evictor.filename());
if(catalogData != null && catalogData.evictor == false)
{
DatabaseException ex = new DatabaseException();
ex.message = _evictor.errorPrefix() + evictor.filename() + " is not an evictor database";
throw ex;
}
com.sleepycat.db.Environment dbEnv = evictor.dbEnv().getEnv();
try
{
Transaction tx = connection.beginTransaction();
com.sleepycat.db.Transaction txn = Util.getTxn(tx);
//
// TODO: FREEZE_DB_MODE
//
com.sleepycat.db.DatabaseConfig config = new com.sleepycat.db.DatabaseConfig();
config.setType(com.sleepycat.db.DatabaseType.BTREE);
config.setAllowCreate(createDb);
_db = dbEnv.openDatabase(txn, evictor.filename(), _dbName, config);
java.util.Iterator p = _indices.iterator();
while(p.hasNext())
{
Index index = (Index) p.next();
index.associate(this, txn, createDb, populateEmptyIndices);
}
if(catalogData == null)
{
catalogData = new CatalogData();
catalogData.evictor = true;
catalog.put(evictor.filename(), catalogData);
}
tx.commit();
}
catch(java.io.FileNotFoundException dx)
{
NotFoundException ex = new NotFoundException();
ex.initCause(dx);
ex.message = _evictor.errorPrefix() + "Db.open: " + dx.getMessage();
throw ex;
}
catch(com.sleepycat.db.DatabaseException dx)
{
DatabaseException ex = new DatabaseException();
ex.initCause(dx);
ex.message = _evictor.errorPrefix() + "Db.open: " + dx.getMessage();
throw ex;
}
finally
{
Transaction tx = connection.currentTransaction();
if(tx != null)
{
try
{
tx.rollback();
}
catch(DatabaseException de)
{
}
}
}
}
finally
{
connection.close();
}
}
protected void
finalize()
{
if(_db != null)
{
close();
}
}
void
close()
{
try
{
_db.close();
java.util.Iterator p = _indices.iterator();
while(p.hasNext())
{
Index index = (Index) p.next();
index.close();
}
_indices.clear();
}
catch(com.sleepycat.db.DatabaseException dx)
{
DatabaseException ex = new DatabaseException();
ex.initCause(dx);
ex.message = _evictor.errorPrefix() + "Db.close: " + dx.getMessage();
throw ex;
}
_db = null;
}
boolean
dbHasObject(Ice.Identity ident)
{
byte[] key = marshalKey(ident, _communicator);
com.sleepycat.db.DatabaseEntry dbKey = new com.sleepycat.db.DatabaseEntry(key);
//
// Keep 0 length since we're not interested in the data
//
com.sleepycat.db.DatabaseEntry dbValue = new com.sleepycat.db.DatabaseEntry();
dbValue.setPartial(true);
for(;;)
{
try
{
com.sleepycat.db.OperationStatus err = _db.get(null, dbKey, dbValue, null);
if(err == com.sleepycat.db.OperationStatus.SUCCESS)
{
return true;
}
else if(err == com.sleepycat.db.OperationStatus.NOTFOUND)
{
return false;
}
else
{
throw new DatabaseException();
}
}
catch(com.sleepycat.db.DeadlockException dx)
{
if(_evictor.deadlockWarning())
{
_communicator.getLogger().warning("Deadlock in Freeze.ObjectStore.dhHasObject while reading " +
"Db \"" + _evictor.filename() + "/" + _dbName +
"\"; retrying...");
}
//
// Ignored, try again
//
}
catch(com.sleepycat.db.DatabaseException dx)
{
DatabaseException ex = new DatabaseException();
ex.initCause(dx);
ex.message = _evictor.errorPrefix() + "Db.get: " + dx.getMessage();
throw ex;
}
}
}
void
save(byte[] key, byte[] value, byte status, com.sleepycat.db.Transaction tx)
throws com.sleepycat.db.DatabaseException
{
switch(status)
{
case EvictorElement.created:
case EvictorElement.modified:
{
com.sleepycat.db.DatabaseEntry dbKey = new com.sleepycat.db.DatabaseEntry(key);
com.sleepycat.db.DatabaseEntry dbValue = new com.sleepycat.db.DatabaseEntry(value);
com.sleepycat.db.OperationStatus err;
if(status == EvictorElement.created)
{
err = _db.putNoOverwrite(tx, dbKey, dbValue);
}
else
{
err = _db.put(tx, dbKey, dbValue);
}
if(err != com.sleepycat.db.OperationStatus.SUCCESS)
{
throw new DatabaseException();
}
break;
}
case EvictorElement.destroyed:
{
com.sleepycat.db.DatabaseEntry dbKey = new com.sleepycat.db.DatabaseEntry(key);
com.sleepycat.db.OperationStatus err = _db.delete(tx, dbKey);
if(err != com.sleepycat.db.OperationStatus.SUCCESS)
{
throw new DatabaseException();
}
break;
}
default:
{
assert false;
}
}
}
static byte[]
marshalKey(Ice.Identity v, Ice.Communicator communicator)
{
IceInternal.BasicStream os = new IceInternal.BasicStream(Ice.Util.getInstance(communicator));
v.__write(os);
java.nio.ByteBuffer buf = os.prepareWrite();
byte[] r = new byte[buf.limit()];
buf.get(r);
return r;
}
static Ice.Identity
unmarshalKey(byte[] b, Ice.Communicator communicator)
{
IceInternal.BasicStream is = new IceInternal.BasicStream(Ice.Util.getInstance(communicator));
is.resize(b.length, true);
java.nio.ByteBuffer buf = is.prepareRead();
buf.position(0);
buf.put(b);
buf.position(0);
Ice.Identity key = new Ice.Identity();
key.__read(is);
return key;
}
static byte[]
marshalValue(ObjectRecord v, Ice.Communicator communicator)
{
IceInternal.BasicStream os = new IceInternal.BasicStream(Ice.Util.getInstance(communicator));
os.startWriteEncaps();
v.__write(os);
os.writePendingObjects();
os.endWriteEncaps();
java.nio.ByteBuffer buf = os.prepareWrite();
byte[] r = new byte[buf.limit()];
buf.get(r);
return r;
}
static ObjectRecord
unmarshalValue(byte[] b, Ice.Communicator communicator)
{
IceInternal.BasicStream is = new IceInternal.BasicStream(Ice.Util.getInstance(communicator));
is.sliceObjects(false);
is.resize(b.length, true);
java.nio.ByteBuffer buf = is.prepareRead();
buf.position(0);
buf.put(b);
buf.position(0);
ObjectRecord rec= new ObjectRecord();
is.startReadEncaps();
rec.__read(is);
is.readPendingObjects();
is.endReadEncaps();
return rec;
}
final IceUtil.Cache
cache()
{
return _cache;
}
final com.sleepycat.db.Database
db()
{
return _db;
}
final Ice.Communicator
communicator()
{
return _communicator;
}
final EvictorI
evictor()
{
return _evictor;
}
final String
facet()
{
return _facet;
}
final String
dbName()
{
return _dbName;
}
public Object
load(Object identObj)
{
Ice.Identity ident = (Ice.Identity) identObj;
byte[] key = marshalKey(ident, _communicator);
com.sleepycat.db.DatabaseEntry dbKey = new com.sleepycat.db.DatabaseEntry(key);
com.sleepycat.db.DatabaseEntry dbValue = new com.sleepycat.db.DatabaseEntry();
for(;;)
{
try
{
com.sleepycat.db.OperationStatus rs = _db.get(null, dbKey, dbValue, null);
if(rs == com.sleepycat.db.OperationStatus.NOTFOUND)
{
return null;
}
else if (rs != com.sleepycat.db.OperationStatus.SUCCESS)
{
assert false;
throw new DatabaseException();
}
break;
}
catch(com.sleepycat.db.DeadlockException dx)
{
if(_evictor.deadlockWarning())
{
_communicator.getLogger().warning("Deadlock in Freeze.ObjectStore.load while reading Db \"" +
_evictor.filename() + "/" + _dbName + "\"; retrying...");
}
//
// Ignored, try again
//
}
catch(com.sleepycat.db.DatabaseException dx)
{
DatabaseException ex = new DatabaseException();
ex.initCause(dx);
ex.message = _evictor.errorPrefix() + "Db.get: " + dx.getMessage();
throw ex;
}
}
EvictorElement result = new EvictorElement(ident, this);
result.rec = unmarshalValue(dbValue.getData(), _communicator);
_evictor.initialize(ident, _facet, result.rec.servant);
return result;
}
private final IceUtil.Cache _cache;
private com.sleepycat.db.Database _db;
private final String _facet;
private final String _dbName;
private final EvictorI _evictor;
private final java.util.List _indices;
private final Ice.Communicator _communicator;
}
|