-
Notifications
You must be signed in to change notification settings - Fork 10
/
lmdb-php.php
671 lines (479 loc) · 13.8 KB
/
lmdb-php.php
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
<?php
set_error_handler('exceptions_error_handler');
function exceptions_error_handler($severity, $message, $filename, $lineno) {
if (error_reporting() == 0) {
return;
}
if (error_reporting() & $severity) {
throw new ErrorException($message, 0, $severity, $filename, $lineno);
}
}
class MDB_env{
protected $mdbEnvPtr = null;
public function create (){
$this->setPtr(mdb_env_create());
$this->validatePtr();
return 0;
}
public function open($path, $flags, $mode){
$this->validatePtr();
return mdb_env_open($this->getPtr(), $path, $flags, $mode);
}
public function copy($path) {
$this->validatePtr();
return mdb_env_copy($this->getPtr(),$path);
}
public function copyfd($fd) {
$this->validatePtr();
return mdb_env_copyfd($this->getPtr(),$fd);
}
public function copy2($path,$flags) {
$this->validatePtr();
return mdb_env_copy2($this->getPtr(),$path,$flags);
}
public function copyfd2($fd,$flags) {
$this->validatePtr();
return mdb_env_copyfd2($this->getPtr(),$fd,$flags);
}
public function stat() {
$this->validatePtr();
$statPtr = mdb_env_stat($this->getPtr());
return new MDB_stat($statPtr);
}
public function info() {
$this->validatePtr();
$infoPtr = mdb_env_info($this->getPtr());
return new MDB_envinfo($infoPtr);
}
public function sync($force) {
$this->validatePtr();
return mdb_env_sync($this->getPtr(),$force);
}
public function close() {
$this->validatePtr();
mdb_env_close($this->getPtr());
}
public function set_flags($flags,$onoff) {
$this->validatePtr();
return mdb_env_set_flags($this->getPtr(),$flags,$onoff);
}
public function get_flags() {
$this->validatePtr();
return mdb_env_get_flags($this->getPtr());
}
public function get_path() {
$this->validatePtr();
return mdb_env_get_path($this->getPtr());
}
public function get_fd() {
$this->validatePtr();
return mdb_env_get_fd($this->getPtr());
}
public function set_mapsize($size) {
$this->validatePtr();
return mdb_env_set_mapsize($this->getPtr(),$size);
}
public function set_maxreaders($readers) {
$this->validatePtr();
return mdb_env_set_maxreaders($this->getPtr(),$readers);
}
public function get_maxreaders() {
$this->validatePtr();
return mdb_env_get_maxreaders($this->getPtr());
}
public function set_maxdbs($dbs) {
$this->validatePtr();
return mdb_env_set_maxdbs($this->getPtr(),$dbs);
}
public function get_maxkeysize() {
$this->validatePtr();
return mdb_env_get_maxkeysize($this->getPtr());
}
public function set_userctx($ctx) {
$this->validatePtr();
return mdb_env_set_userctx($this->getPtr(),$ctx);
}
public function get_userctx() {
$this->validatePtr();
return mdb_env_get_userctx($this->getPtr());
}
protected function validatePtr($message = "MDB_env is NULL"){
if($this->getPtr() == null){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbEnvPtr;
}
public function setPtr($mdbEnvPtr){
$this->mdbEnvPtr = $mdbEnvPtr;
}
}
class MDB_txn {
protected $mdbTxnPtr = null;
public function begin($env, $parent, $flags) {
if($parent != null)
$parent = $parent->getPtr();
$this->setPtr(mdb_txn_begin($env->getPtr(), $parent, $flags));
$this->validatePtr();
return 0;
}
public function getValue($dbi,$keyData) {
$this->validatePtr();
$key = new MDB_val($keyData);
$data = new MDB_val("dummy");
$rc = mdb_get($this->getPtr(),$dbi->getPtr(),$key->getPtr(),$data->getPtr());
if($rc != 0){
print_r("Error loading data for key ($keyData). Error code: $rc\n");
return NULL;
}
return $data->getMvData();
}
public function putValue($dbi,$key, $data, $flags = 0) {
$this->validatePtr();
$keyValue = new MDB_val($key);
$dataValue = new MDB_val($data);
$rc = mdb_put($this->getPtr(),$dbi->getPtr(),$keyValue->getPtr(),$dataValue->getPtr(), $flags);
if($rc != 0){
print_r("Error inserting data ($data) for key ($key). Error code: $rc\n");
}
return $rc;
}
public function delValue($dbi,$key,$data = "") {
$this->validatePtr();
$keyValue = new MDB_val($key);
$dataValue = new MDB_val($data);
$rc = mdb_del($this->getPtr(),$dbi->getPtr(),$keyValue->getPtr(),$dataValue->getPtr());
if($rc != 0){
print_r("Error deleting data ($data) for key ($key). Error code: $rc\n");
}
return $rc;
}
public function commit(){
$this->validatePtr();
return mdb_txn_commit($this->mdbTxnPtr);
}
public function abort(){
$this->validatePtr();
return mdb_txn_abort($this->getPtr());
}
public function env() {
$this->validatePtr();
return mdb_txn_env($this->getPtr());
}
public function id() {
$this->validatePtr();
return mdb_txn_id($this->getPtr());
}
public function reset() {
$this->validatePtr();
mdb_txn_reset($this->getPtr());
}
public function renew() {
$this->validatePtr();
return mdb_txn_renew($this->getPtr());
}
protected function validatePtr($message = "MDB_txn is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbTxnPtr;
}
public function setPtr($mdbTxnPtr){
$this->mdbTxnPtr = $mdbTxnPtr;
}
}
class MDB_dbi {
protected $mdbDbiPtr;
protected $mdbEnvPtr;
public function open($txn, $name, $flags) {
if($txn != null)
$txn = $txn->getPtr();
$mdbDbiPtr = mdb_dbi_open($txn, $name, $flags);
$this->setPtr($mdbDbiPtr);
$this->validatePtr();
return 0;
}
public function close($env){
$this->validatePtr();
if($env != null)
$env = $env->getPtr();
mdb_dbi_close($env, $this->getPtr());
}
public function flags($txn) {
$this->validatePtr();
if($txn != null)
$txn = $txn->getPtr();
return mdb_dbi_flags($txn,$this->getPtr());
}
protected function validatePtr($message = "MDB_dbi is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbDbiPtr;
}
public function setPtr($mdbDbiPtr){
$this->mdbDbiPtr = $mdbDbiPtr;
}
}
class MDB_cursor {
protected $mdbCursorPtr;
public function open($txn, $dbi) {
if($txn != null)
$txn = $txn->getPtr();
if($dbi != null)
$dbi = $dbi->getPtr();
$this->setPtr(mdb_cursor_open($txn, $dbi));
$this->validatePtr();
return 0;
}
public function get($key, $data, $flags){
$this->validatePtr();
if($key != null)
$key = $key->getPtr();
if($data != null)
$data = $data->getPtr();
return mdb_cursor_get($this->getPtr(), $key, $data, $flags);
}
public function close(){
$this->validatePtr();
mdb_cursor_close($this->getPtr());
}
public function renew($txn) {
$this->validatePtr();
return mdb_cursor_renew($txn->getPtr(),$this->getPtr());
}
public function txn() {
$this->validatePtr();
return mdb_cursor_txn($this->getPtr());
}
public function dbi() {
$this->validatePtr();
return mdb_cursor_dbi($this->getPtr());
}
public function put($key,$data,$flags) {
$this->validatePtr();
return mdb_cursor_put($this->getPtr(),$key->getPtr(),$data->getPtr(),$flags);
}
public function del($flags) {
$this->validatePtr();
return mdb_cursor_del($this->getPtr(),$flags);
}
public function count() {
$this->validatePtr();
return mdb_cursor_count_swig($this->getPtr());
}
protected function validatePtr($message = "MDB_cursor is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbCursorPtr;
}
public function setPtr($mdbCursorPtr){
$this->mdbCursorPtr = $mdbCursorPtr;
}
}
class MDB_val {
protected $mvSize;
protected $mvData;
protected $mdbValPrt;
function __construct($data) {
$this->setPtr(mdb_val_create($data));
$this->mvSize = strlen($data);
$this->mvData = $data;
}
public function getMvSize(){
if($this->getPtr() == NULL) return 0;
return mdb_val_size($this->getPtr());
}
public function getMvData(){
if($this->getPtr() == NULL) return NULL;
return trim(mdb_val_data($this->getPtr()));
}
protected function validatePtr($message = "MDB_val is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbValPrt;
}
public function setPtr($mdbValPrt){
$this->mdbValPrt = $mdbValPrt;
}
}
class MDB {
public static function version($major,$minor,$patch) {
return mdb_version($major,$minor,$patch);
}
public static function strerror($err) {
return mdb_strerror($err);
}
public static function stat($txn,$dbi) {
$statPtr = mdb_stat($txn->getPtr(),$dbi->getPtr());
return new MDB_stat($statPtr);
}
public static function drop($txn,$dbi,$del) {
return mdb_drop($txn->getPtr(),$dbi->getPtr(),$del);
}
public static function set_relctx($txn,$dbi,$ctx) {
return mdb_set_relctx($txn->getPtr(),$dbi->getPtr(),$ctx);
}
public static function get($txn,$dbi,$key,$data) {
return mdb_get($txn->getPtr(),$dbi->getPtr(),$key->getPtr(),$data->getPtr());
}
public static function put($txn,$dbi,$key,$data,$flags) {
return mdb_put($txn->getPtr(),$dbi->getPtr(),$key->getPtr(),$data->getPtr(),$flags);
}
public static function del($txn,$dbi,$key,$data) {
return mdb_del($txn->getPtr(),$dbi->getPtr(),$key->getPtr(),$data->getPtr());
}
public static function cmp($txn,$dbi,$a,$b) {
return mdb_cmp($txn->getPtr(),$dbi->getPtr(),$a->getPtr(),$b->getPtr());
}
public static function dcmp($txn,$dbi,$a,$b) {
return mdb_dcmp($txn->getPtr(),$dbi->getPtr(),$a->getPtr(),$b->getPtr());
}
public static function reader_check($env) {
return mdb_reader_check($env->getPtr());
}
}
class MDB_stat {
protected $mdbStatPrt;
protected $ms_psize; /**< Size of a database page. This is currently the same for all databases. */
protected $ms_depth; /**< Depth (height) of the B-tree */
protected $ms_branch_pages; /**< Number of internal (non-leaf) pages */
protected $ms_leaf_pages; /**< Number of leaf pages */
protected $ms_overflow_pages; /**< Number of overflow pages */
protected $ms_entries; /**< Number of data items */
function __construct($statPtr){
$this->setPtr($statPtr);
$this->validatePtr();
$this->setMsPsize(mdb_stat_psize($statPtr));
$this->setMsDepth(mdb_stat_depth($statPtr));
$this->setBranchPages(mdb_stat_branch_pages($statPtr));
$this->setMsLeafPages(mdb_stat_leaf_pages($statPtr));
$this->setMsOverflowPages(mdb_stat_overflow_pages($statPtr));
$this->setMsEnteris(mdb_stat_entries($statPtr));
}
public function getMsPsize(){
return $this->ms_psize;
}
public function setMsPsize($ms_psize){
$this->ms_psize = $ms_psize;
}
public function getMsDepth(){
return $this->ms_depth;
}
public function setMsDepth($ms_depth){
$this->ms_depth = $ms_depth;
}
public function getBranchPages(){
return $this->ms_branch_pages;
}
public function setBranchPages($ms_branch_pages){
$this->ms_branch_pages = $ms_branch_pages;
}
public function getMsLeafPages(){
return $this->ms_leaf_pages;
}
public function setMsLeafPages($ms_leaf_pages){
$this->ms_leaf_pages = $ms_leaf_pages;
}
public function getMsOverflowPages(){
return $this->ms_overflow_pages;
}
public function setMsOverflowPages($ms_overflow_pages){
$this->ms_overflow_pages = $ms_overflow_pages;
}
public function getMsEnteris(){
return $this->ms_entries;
}
public function setMsEnteris($ms_entries){
$this->ms_entries = $ms_entries;
}
protected function validatePtr($message = "MDB_stat is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbStatPrt;
}
public function setPtr($mdbStatPrt){
$this->mdbStatPrt = $mdbStatPrt;
}
}
/** @brief Information about the environment */
class MDB_envinfo {
protected $mdbInfoPrt;
protected $me_mapaddr; /**< Address of map, if fixed */
protected $me_mapsize; /**< Size of the data memory map */
protected $me_last_pgno; /**< ID of the last used page */
protected $me_last_txnid; /**< ID of the last committed transaction */
protected $me_maxreaders; /**< max reader slots in the environment */
protected $me_numreaders; /**< max reader slots used in the environment */
function __construct($infoPtr){
$this->setPtr($infoPtr);
$this->validatePtr();
$this->setMeMapAddr(mdb_info_mapaddr($infoPtr));
$this->setMeMapsize(mdb_info_mapsize($infoPtr));
$this->setMeLastPgno(mdb_info_last_pgno($infoPtr));
$this->setMeLastTxnid(mdb_info_last_txnid($infoPtr));
$this->setMeMaxReaders(mdb_info_maxreaders($infoPtr));
$this->setMeNumReaders(mdb_info_numreaders($infoPtr));
}
public function getMeMapAddr(){
return $this->me_mapaddr;
}
public function setMeMapAddr($me_mapaddr){
$this->me_mapaddr = $me_mapaddr;
}
public function getMeMapSize(){
return $this->me_mapsize;
}
public function setMeMapsize($me_mapsize){
$this->me_mapsize = $me_mapsize;
}
public function getMeLastPgno(){
return $this->me_last_pgno;
}
public function setMeLastPgno($me_last_pgno){
$this->me_last_pgno = $me_last_pgno;
}
public function getMeLastTxnid(){
return $this->me_last_txnid;
}
public function setMeLastTxnid($me_last_txnid){
$this->me_last_txnid = $me_last_txnid;
}
public function getMeMaxReaders(){
return $this->me_maxreaders;
}
public function setMeMaxReaders($me_maxreaders){
$this->me_maxreaders = $me_maxreaders;
}
public function getMeNumReaders(){
return $this->me_numreaders;
}
public function setMeNumReaders($me_numreaders){
$this->me_numreaders = $me_numreaders;
}
protected function validatePtr($message = "MDB_envinfo is NULL"){
if($this->getPtr() == NULL){
throw new Exception("Exception with message: $message", 1);
}
}
public function getPtr(){
return $this->mdbInfoPrt;
}
public function setPtr($mdbInfoPrt){
$this->mdbInfoPrt = $mdbInfoPrt;
}
}