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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
package com.sleepycat.db;
import com.sleepycat.db.internal.DbConstants;
import com.sleepycat.db.internal.Dbc;
/**
A database cursor for a secondary database. Cursors are not thread safe
and the application is responsible for coordinating any multithreaded
access to a single cursor object.
<p>
Secondary cursors are returned by
{@link SecondaryDatabase#openCursor SecondaryDatabase.openCursor} and
{@link SecondaryDatabase#openSecondaryCursor
SecondaryDatabase.openSecondaryCursor}. The distinguishing characteristics
of a secondary cursor are:
<ul>
<li>Direct calls to <code>put()</code> methods on a secondary cursor are
prohibited.
<li>The {@link #delete} method of a secondary cursor will delete the primary
record and as well as all its associated secondary records.
<li>Calls to all get methods will return the data from the associated
primary database.
<li>Additional get method signatures are provided to return the primary key
in an additional pKey parameter.
<li>Calls to {@link #dup} will return a {@link SecondaryCursor}.
<li>The {@link #dupSecondary} method is provided to return a {@link
SecondaryCursor} that doesn't require casting.
</ul>
<p>
To obtain a secondary cursor with default attributes:
<blockquote><pre>
SecondaryCursor cursor = myDb.openSecondaryCursor(txn, null);
</pre></blockquote>
To customize the attributes of a cursor, use a CursorConfig object.
<blockquote><pre>
CursorConfig config = new CursorConfig();
config.setDirtyRead(true);
SecondaryCursor cursor = myDb.openSecondaryCursor(txn, config);
</pre></blockquote>
*/
public class SecondaryCursor extends Cursor {
/* package */
SecondaryCursor(final SecondaryDatabase database,
final Dbc dbc,
final CursorConfig config)
throws DatabaseException {
super(database, dbc, config);
}
/**
Return the SecondaryDatabase handle associated with this Cursor.
<p>
@return
The SecondaryDatabase handle associated with this Cursor.
<p>
*/
public SecondaryDatabase getSecondaryDatabase() {
return (SecondaryDatabase)super.getDatabase();
}
/**
Returns a new <code>SecondaryCursor</code> for the same transaction as
the original cursor.
*/
public Cursor dup(final boolean samePosition)
throws DatabaseException {
return dupSecondary(samePosition);
}
/**
Returns a new copy of the cursor as a <code>SecondaryCursor</code>.
<p>
Calling this method is the equivalent of calling {@link #dup} and
casting the result to {@link SecondaryCursor}.
<p>
@see #dup
*/
public SecondaryCursor dupSecondary(final boolean samePosition)
throws DatabaseException {
return new SecondaryCursor(getSecondaryDatabase(),
dbc.dup(samePosition ? DbConstants.DB_POSITION : 0), config);
}
/**
Returns the key/data pair to which the cursor refers.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the key/pair at the cursor
position has been deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getCurrent(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_CURRENT | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the first key/data pair of the database, and return
that pair. If the first key has duplicate values, the first data item
in the set of duplicates is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getFirst(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_FIRST | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the last key/data pair of the database, and return
that pair. If the last key has duplicate values, the last data item in
the set of duplicates is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getLast(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_LAST | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the next key/data pair and return that pair. If
the matching key has duplicate values, the first data item in the set
of duplicates is returned.
<p>
If the cursor is not yet initialized, move the cursor to the first
key/data pair of the database, and return that pair. Otherwise, the
cursor is moved to the next key/data pair of the database, and that pair
is returned. In the presence of duplicate key values, the value of the
key may not change.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getNext(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_NEXT | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
If the next key/data pair of the database is a duplicate data record for
the current key/data pair, move the cursor to the next key/data pair
of the database and return that pair.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getNextDup(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_NEXT_DUP | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the next non-duplicate key/data pair and return
that pair. If the matching key has duplicate values, the first data
item in the set of duplicates is returned.
<p>
If the cursor is not yet initialized, move the cursor to the first
key/data pair of the database, and return that pair. Otherwise, the
cursor is moved to the next non-duplicate key of the database, and that
key/data pair is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getNextNoDup(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_NEXT_NODUP | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the previous key/data pair and return that pair.
If the matching key has duplicate values, the last data item in the set
of duplicates is returned.
<p>
If the cursor is not yet initialized, move the cursor to the last
key/data pair of the database, and return that pair. Otherwise, the
cursor is moved to the previous key/data pair of the database, and that
pair is returned. In the presence of duplicate key values, the value of
the key may not change.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getPrev(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_PREV | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
If the previous key/data pair of the database is a duplicate data record
for the current key/data pair, move the cursor to the previous key/data
pair of the database and return that pair.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getPrevDup(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
/*
* "Get the previous duplicate" isn't directly supported by the C API,
* so here's how to get it: dup the cursor and call getPrev, then dup
* the result and call getNextDup. If both succeed then there was a
* previous duplicate and the first dup is sitting on it. Keep that,
* and call getCurrent to fill in the user's buffers.
*/
Dbc dup1 = dbc.dup(DbConstants.DB_POSITION);
try {
int errCode = dup1.get(DatabaseEntry.IGNORE, DatabaseEntry.IGNORE,
DbConstants.DB_PREV | LockMode.getFlag(lockMode));
if (errCode == 0) {
Dbc dup2 = dup1.dup(DbConstants.DB_POSITION);
try {
errCode = dup2.get(DatabaseEntry.IGNORE,
DatabaseEntry.IGNORE,
DbConstants.DB_NEXT_DUP | LockMode.getFlag(lockMode));
} finally {
dup2.close();
}
}
if (errCode == 0)
errCode = dup1.pget(key, pKey, data,
DbConstants.DB_CURRENT | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag()));
if (errCode == 0) {
Dbc tdbc = dbc;
dbc = dup1;
dup1 = tdbc;
}
return OperationStatus.fromInt(errCode);
} finally {
dup1.close();
}
}
/**
Move the cursor to the previous non-duplicate key/data pair and return
that pair. If the matching key has duplicate values, the last data item
in the set of duplicates is returned.
<p>
If the cursor is not yet initialized, move the cursor to the last
key/data pair of the database, and return that pair. Otherwise, the
cursor is moved to the previous non-duplicate key of the database, and
that key/data pair is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getPrevNoDup(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_PREV_NODUP | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Return the record number associated with the cursor. The record number
will be returned in the data parameter.
<p>
For this method to be called, the underlying database must be of type
Btree, and it must have been configured to support record numbers.
<p>
When called on a cursor opened on a database that has been made into a
secondary index, the method returns the record numbers of both the
secondary and primary databases. If either underlying database is not of
type Btree or is not configured with record numbers, the out-of-band
record number of 0 is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param secondaryRecno the secondary record number
returned as output. Its byte array does not need to be initialized by the
caller.
@param primaryRecno the primary record number
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getRecordNumber(final DatabaseEntry secondaryRecno,
final DatabaseEntry primaryRecno,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(DatabaseEntry.IGNORE, secondaryRecno, primaryRecno,
DbConstants.DB_GET_RECNO | LockMode.getFlag(lockMode)));
}
/**
Move the cursor to the given key of the database, and return the datum
associated with the given key. If the matching key has duplicate
values, the first data item in the set of duplicates is returned.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
used as input. It must be initialized with a non-null byte array by the
caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getSearchKey(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_SET | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the closest matching key of the database, and return
the data item associated with the matching key. If the matching key has
duplicate values, the first data item in the set of duplicates is returned.
<p>
The returned key/data pair is for the smallest key greater than or equal
to the specified key (as determined by the key comparison function),
permitting partial key matches and range searches.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
used as input and returned as output. It must be initialized with a non-null
byte array by the caller.
@param pKey the primary key
returned as output. Its byte array does not need to be initialized by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getSearchKeyRange(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_SET_RANGE | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the specified secondary and primary key, where both
the primary and secondary key items must match.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
used as input. It must be initialized with a non-null byte array by the
caller.
@param pKey the primary key
used as input. It must be initialized with a non-null byte array by the
caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getSearchBoth(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_GET_BOTH | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the specified secondary key and closest matching primary
key of the database.
<p>
In the case of any database supporting sorted duplicate sets, the returned
key/data pair is for the smallest primary key greater than or equal to the
specified primary key (as determined by the key comparison function),
permitting partial matches and range searches in duplicate data sets.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param key the secondary key
used as input and returned as output. It must be initialized with a non-null
byte array by the caller.
@param pKey the primary key
used as input and returned as output. It must be initialized with a non-null
byte array by the caller.
@param data the primary data
returned as output. Its byte array does not need to be initialized by the
caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getSearchBothRange(final DatabaseEntry key,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(key, pKey, data,
DbConstants.DB_GET_BOTH_RANGE | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
/**
Move the cursor to the specific numbered record of the database, and
return the associated key/data pair.
<p>
The data field of the specified key must be a byte array containing a
record number, as described in {@link com.sleepycat.db.DatabaseEntry DatabaseEntry}. This determines
the record to be retrieved.
<p>
For this method to be called, the underlying database must be of type
Btree, and it must have been configured to support record numbers.
<p>
If this method fails for any reason, the position of the cursor will be
unchanged.
@throws NullPointerException if a DatabaseEntry parameter is null or
does not contain a required non-null byte array.
<p>
@throws DeadlockException if the operation was selected to resolve a
deadlock.
<p>
@throws IllegalArgumentException if an invalid parameter was specified.
<p>
@throws DatabaseException if a failure occurs.
<p>
@param secondaryRecno the secondary record number
used as input. It must be initialized with a non-null byte array by the
caller.
@param data the primary data
returned as output. Multiple results can be retrieved by passing an object
that is a subclass of {@link com.sleepycat.db.MultipleEntry MultipleEntry}, otherwise its byte array does not
need to be initialized by the caller.
@param lockMode the locking attributes; if null, default attributes are used.
@return {@link com.sleepycat.db.OperationStatus#NOTFOUND OperationStatus.NOTFOUND} if no matching key/data pair is
found; {@link com.sleepycat.db.OperationStatus#KEYEMPTY OperationStatus.KEYEMPTY} if the database is a Queue or Recno database and the specified key exists, but was never explicitly created by the application or was later deleted; otherwise, {@link com.sleepycat.db.OperationStatus#SUCCESS OperationStatus.SUCCESS}.
*/
public OperationStatus getSearchRecordNumber(
final DatabaseEntry secondaryRecno,
final DatabaseEntry pKey,
final DatabaseEntry data,
LockMode lockMode)
throws DatabaseException {
return OperationStatus.fromInt(
dbc.pget(secondaryRecno, pKey, data,
DbConstants.DB_SET_RECNO | LockMode.getFlag(lockMode) |
((data == null) ? 0 : data.getMultiFlag())));
}
}
|