forked from yahoojapan/k2hash_phpext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
k2hash.stub.php
909 lines (751 loc) · 17.4 KB
/
k2hash.stub.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
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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
<?php
/*
* K2HASH PHP Extension library
*
* Copyright 2015 Yahoo Japan Corporation.
*
* K2HASH is key-valuew store base libraries.
* K2HASH is made for the purpose of the construction of
* original KVS system and the offer of the library.
* The characteristic is this KVS library which Key can
* layer. And can support multi-processing and multi-thread,
* and is provided safely as available KVS.
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* AUTHOR: Hirotaka Wakabayashi
* CREATE: Tue, Feb 22 2022
* REVISION:
*/
/** @generate-function-entries */
function k2hpx_bump_debug_level(): void {}
function k2hpx_set_debug_level_silent(): void {}
function k2hpx_set_debug_level_error(): void {}
function k2hpx_set_debug_level_warning(): void {}
function k2hpx_set_debug_level_message(): void {}
function k2hpx_set_debug_file(string $filepath): bool {}
function k2hpx_unset_debug_file(): void {}
function k2hpx_load_debug_env(): bool {}
function k2hpx_load_hash_library(string $libpath): bool {}
function k2hpx_unload_hash_library(): bool {}
function k2hpx_load_transaction_library(string $libpath): bool {}
function k2hpx_unload_transaction_library(): bool {}
function k2hpx_create(
string $filepath,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
/**
* @return resource|false
*/
function k2hpx_open(
string $filepath,
bool $readonly,
bool $removefile = false,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096) {}
/**
* @return resource|false
*/
function k2hpx_open_rw(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096) {}
/**
* @return resource|false
*/
function k2hpx_open_ro(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096) {}
/**
* @return resource|false
*/
function k2hpx_open_tempfile(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096) {}
/**
* @return resource|false
*/
function k2hpx_open_mem(
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096) {}
/**
* @param resource $handle_res
*/
function k2hpx_close($handle_res, int $waitms = 0): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_transaction(
$handle_res,
bool $enable,
?string $transfile= null,
?string $prefix= null,
?string $param= null,
int $expire = 0): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_enable_transaction(
$handle_res,
?string $transfile= null,
?string $prefix= null,
?string $param= null,
int $expire = 0): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_disable_transaction($handle_res): bool {}
function k2hpx_get_transaction_thread_pool(): int {}
function k2hpx_set_transaction_thread_pool(int $count): bool {}
function k2hpx_unset_transaction_thread_pool(): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_put_archive($handle_res, string $filepath, bool $errskip = true): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_load_archive($handle_res, string $filepath, bool $errskip = true): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_set_common_attr(
$handle_res,
int $is_mtime = -1,
int $is_history = -1,
int $is_encrypt = -1,
?string $passfile = null,
int $is_expire = -1,
int $expire = 0): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_clean_common_attr($handle_res): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_add_attr_plugin_library($handle_res, string $libfile): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_add_attr_crypt_pass(
$handle_res,
string $encpass,
bool $is_default_encrypt = false): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_print_attr_version($handle_res, $output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_print_attr_information($handle_res, $output = null): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_get_value(
$handle_res,
string $key,
?string $subkey = null,
bool $attrcheck = true,
?string $pass = null): string|false {}
/**
* @param resource $handle_res
*/
function k2hpx_get_subkeys(
$handle_res,
string $key,
bool $attrcheck = true): array|false {}
/**
* @param resource $handle_res
*/
function k2hpx_get_attrs(
$handle_res,
string $key): array|false {}
/**
* @param resource $handle_res
*/
function k2hpx_get_attr_value(
$handle_res,
string $key,
string $attrkey): string|false {}
/**
* @param resource $handle_res
*/
function k2hpx_set_value(
$handle_res,
string $key,
string $value,
?string $subkey = null,
?string $pass = null,
int $expire=0): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_add_subkey(
$handle_res,
string $key,
string $subkey): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_add_subkeys(
$handle_res,
string $key,
array $subkeys): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_add_attr(
$handle_res,
string $key,
string $attrkey,
string $attrval): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_remove_all(
$handle_res,
string $key): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_remove(
$handle_res,
string $key,
?string $subkey = null): bool {}
/**
* @param resource $handle_res
*/
function k2hpx_rename(
$handle_res,
string $key,
string $newkey): bool {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_find_first(
$handle_res,
?string $key = null) {}
/**
* @return resource|false
* @param resource $findhandle_res
*/
function k2hpx_find_next(
$findhandle_res) {}
/**
* @param resource $findhandle_res
*/
function k2hpx_find_free(
$findhandle_res): bool {}
/**
* @param resource $findhandle_res
*/
function k2hpx_find_get_key(
$findhandle_res): string {}
/**
* @param resource $findhandle_res
*/
function k2hpx_find_get_value(
$findhandle_res): string {}
/**
* @param resource $findhandle_res
*/
function k2hpx_find_get_subkeys(
$findhandle_res): array|false {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_da_get_handle(
$handle_res,
string $key,
int $mode) {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_da_get_handle_read(
$handle_res,
string $key) {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_da_get_handle_write(
$handle_res,
string $key) {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_da_get_handle_rw(
$handle_res,
string $key) {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_free(
$dahandle_res): bool {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_length(
$dahandle_res): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_offset(
$dahandle_res): array|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_read_offset(
$dahandle_res): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_write_offset(
$dahandle_res): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_set_offset(
$dahandle_res,
array $offsets): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_set_read_offset(
$dahandle_res,
int $offset): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_set_write_offset(
$dahandle_res,
int $offset): int|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_value(
$dahandle_res,
int $offset = -1): string|false {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_get_value_to_file(
$dahandle_res,
string $filepath,
int $length = -1,
int $offset = -1): bool {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_set_value(
$dahandle_res,
string $value,
int $offset = -1): bool {}
/**
* @param resource $dahandle_res
*/
function k2hpx_da_set_value_from_file(
$dahandle_res,
string $filepath,
int $length = -1,
int $offset = -1): bool {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_q_handle(
$handle_res,
bool $is_filo = true,
?string $prefix = null) {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_free(
$qhandle_res): bool {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_empty(
$qhandle_res): bool {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_count(
$qhandle_res): int|false {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_read(
$qhandle_res,
int $pos = 0,
?string $pass = null): string|false {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_push(
$qhandle_res,
string $datavalue,
?string $pass = null,
int $expire = 0): bool {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_pop(
$qhandle_res,
?string $pass = null): string|false {}
/**
* @param resource $qhandle_res
*/
function k2hpx_q_remove(
$qhandle_res,
int $count,
?string $pass = null): bool {}
/**
* @param resource $qhandle_res
* @param resource $output
*/
function k2hpx_q_dump(
$qhandle_res,
$output = null): bool {}
/**
* @return resource|false
* @param resource $handle_res
*/
function k2hpx_keyq_handle(
$handle_res,
bool $is_filo = true,
?string $prefix = null) {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_free(
$keyqhandle_res): bool {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_empty(
$keyqhandle_res): bool {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_count(
$keyqhandle_res): int {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_read(
$keyqhandle_res,
int $pos = 0,
?string $pass = null): array|false {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_push(
$keyqhandle_res,
string $key,
string $value,
?string $pass = null,
int $expire = 0): bool {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_pop(
$keyqhandle_res,
?string $pass = null): array|false {}
/**
* @param resource $keyqhandle_res
*/
function k2hpx_keyq_remove(
$keyqhandle_res,
int $count,
?string $pass = null): bool {}
/**
* @param resource $keyqhandle_res
* @param resource $output
*/
function k2hpx_keyq_dump(
$keyqhandle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_dump_head(
$handle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_dump_keytable(
$handle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_dump_full_keytable(
$handle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_dump_elementtable(
$handle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_dump_full(
$handle_res,
$output = null): bool {}
/**
* @param resource $handle_res
* @param resource $output
*/
function k2hpx_print_state(
$handle_res,
$output = null): bool {}
/**
* @param resource $output
*/
function k2hpx_print_version(
$output = null): bool {}
class K2hash
{
public static function create(
string $filepath,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function open(
string $filepath,
bool $readonly,
bool $removefile = false,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function openRW(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function openRO(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function openTempfile(
string $filepath,
bool $fullmap = true,
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function openMem(
int $maskbitcnt = 8,
int $cmaskbitcnt = 4,
int $maxelementcnt = 32,
int $pagesize = 4096): bool {}
public function close(int $waitms = 0): bool {}
public function transaction(
bool $enable,
string $transfile= null,
string $prefix= null,
string $param= null,
int $expire = 0): bool {}
public function enableTransaction(
string $transfile= null,
string $prefix= null,
string $param= null,
int $expire = 0): bool {}
public function disableTransaction(): bool {}
public static function getTransactionThreadPool(): int {}
public static function setTransactionThreadPool(int $count): bool {}
public static function unsetTransactionThreadPool(): bool {}
public function putArchive(string $filepath, bool $errskip = true): bool {}
public function loadArchive(string $filepath, bool $errskip = true): bool {}
public function setCommonAttribute(
int $is_mtime = -1,
int $is_history = -1,
int $is_encrypt = -1,
string $passfile = null,
int $is_expire = -1,
int $expire = 0): bool {}
public function cleanCommonAttribute(): bool {}
public function addAttrPluginLib(string $libfile): bool {}
public function addAttrCryptPass(string $encpass, bool $is_default_encrypt = false): bool {}
/**
* @param resource $output
*/
public function getAttrVersionInfos($output = null): bool {}
/**
* @param resource $output
*/
public function getAttrInfos($output = null): bool {}
public function getValue(
string $key,
string $subkey = null,
bool $attrcheck = true,
string $pass = null): string|false {}
public function getSubkeys(string $key, bool $attrcheck = true): array|false {}
public function getAttrs(string $key): array|false {}
public function getAttrValue(string $key, string $attrkey): string|false {}
public function setValue(
string $key,
string $value,
string $subkey = null,
string $pass = null,
int $expire=0): bool {}
public function addSubkey(string $key, string $subkey): bool {}
public function addSubkeys(string $key, array $subkeys): bool {}
public function addAttr(
string $key,
string $attrkey,
string $attrval): bool {}
public function removeAll(string $key): bool {}
public function remove(string $key, string $subkey = null): bool {}
public function rename(string $key, string $newkey): bool {}
/**
* @return resource|false
*/
public function getIterator(string $key) {}
/**
* @return resource|false
*/
public function getStream(string $key, string $mode) {}
/**
* @return resource|false
*/
public function getQueue(bool $is_filo = true, string $prefix = null) {}
/**
* @return resource|false
*/
public function getKeyQueue(bool $is_filo = true, string $prefix = null) {}
/**
* @param resource $output
*/
public function dumpHead($output = null): bool {}
/**
* @param resource $output
*/
public function dumpKeytable($output = null): bool {}
/**
* @param resource $output
*/
public function dumpFullKeytable($output = null): bool {}
/**
* @param resource $output
*/
public function dumpElementtable($output = null): bool {}
/**
* @param resource $output
*/
public function dumpFull($output = null): bool {}
/**
* @param resource $output
*/
public function printState($output = null): bool {}
/**
* @param resource $output
*/
public static function printVersion($output = null): bool {}
}
class K2hQueue
{
/**
* @param resource $handle_res
*/
public function __construct($handle_res, bool $is_fifo = true, string $prefix = null) {}
/* }}} */
public function isEmpty(): bool {}
public function count(): int|false {}
public function read(int $pos = 0, string $pass = null): string|false {}
public function push(
string $datavalue,
string $pass = null,
int $expire = 0): bool {}
public function pop(string $pass = null): string|false {}
public function remove(int $count, string $pass = null): bool {}
/**
* @param resource $output
*/
public function dump($output = null): bool {}
}
class K2hKeyQueue
{
/**
* @param resource $handle_res
*/
public function __construct($handle_res, bool $is_fifo = true, string $prefix = null) {}
public function isEmpty(): bool {}
public function count(): int {}
public function read(int $pos = 0, string $pass = null): array|false {}
public function push(
string $key,
string $value,
string $pass = null,
int $expire = 0): bool {}
public function pop(string $pass = null): array|false {}
public function remove(int $count, string $pass = null): bool {}
/**
* @param resource $output
*/
public function dump($output = null): bool {}
}
class K2hIterator
{
/**
* @param resource $handle_res
*/
public function __construct($handle_res, string $key = null) {}
public function current(): string|false {}
public function key(): string|false {}
public function next(): void {}
public function rewind(): void {}
public function valid(): bool {}
}
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noexpandtab sw=4 ts=4 fdm=marker
* vim<600: noexpandtab sw=4 ts=4
*/