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 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
|
# -*- coding: utf-8 -*-
########################################################################
#
# License: BSD
# Created: May 18, 2006
# Author: Francesc Alted - faltet@pytables.com
#
# $Id$
#
########################################################################
"""cython interface for keeping indexes classes.
Classes (type extensions):
IndexArray
CacheArray
LastRowArray
Functions:
Misc variables:
"""
import numpy
from tables.exceptions import HDF5ExtError
from hdf5extension cimport Array
# Types, constants, functions, classes & other objects from everywhere
from numpy cimport (import_array, ndarray,
npy_intp,
npy_int8, npy_uint8,
npy_int16, npy_uint16,
npy_int32, npy_uint32,
npy_int64, npy_uint64,
npy_float32, npy_float64,
npy_float96, npy_float128,
npy_longdouble)
ctypedef npy_uint16 npy_float16
from definitions cimport hid_t, herr_t, hsize_t, H5Screate_simple, H5Sclose
from lrucacheextension cimport NumCache
from tables._past import previous_api
#-------------------------------------------------------------------
# External C functions
# Functions for optimized operations with ARRAY for indexing purposes
cdef extern from "H5ARRAY-opt.h" nogil:
herr_t H5ARRAYOinit_readSlice(
hid_t dataset_id, hid_t *mem_space_id, hsize_t count)
herr_t H5ARRAYOread_readSlice(
hid_t dataset_id, hid_t type_id,
hsize_t irow, hsize_t start, hsize_t stop, void *data)
herr_t H5ARRAYOread_readSortedSlice(
hid_t dataset_id, hid_t mem_space_id, hid_t type_id,
hsize_t irow, hsize_t start, hsize_t stop, void *data)
herr_t H5ARRAYOread_readBoundsSlice(
hid_t dataset_id, hid_t mem_space_id, hid_t type_id,
hsize_t irow, hsize_t start, hsize_t stop, void *data)
herr_t H5ARRAYOreadSliceLR(
hid_t dataset_id, hid_t type_id, hsize_t start, hsize_t stop, void *data)
# Functions for optimized operations for dealing with indexes
cdef extern from "idx-opt.h" nogil:
int bisect_left_b(npy_int8 *a, long x, int hi, int offset)
int bisect_left_ub(npy_uint8 *a, long x, int hi, int offset)
int bisect_right_b(npy_int8 *a, long x, int hi, int offset)
int bisect_right_ub(npy_uint8 *a, long x, int hi, int offset)
int bisect_left_s(npy_int16 *a, long x, int hi, int offset)
int bisect_left_us(npy_uint16 *a, long x, int hi, int offset)
int bisect_right_s(npy_int16 *a, long x, int hi, int offset)
int bisect_right_us(npy_uint16 *a, long x, int hi, int offset)
int bisect_left_i(npy_int32 *a, long x, int hi, int offset)
int bisect_left_ui(npy_uint32 *a, npy_uint32 x, int hi, int offset)
int bisect_right_i(npy_int32 *a, long x, int hi, int offset)
int bisect_right_ui(npy_uint32 *a, npy_uint32 x, int hi, int offset)
int bisect_left_ll(npy_int64 *a, npy_int64 x, int hi, int offset)
int bisect_left_ull(npy_uint64 *a, npy_uint64 x, int hi, int offset)
int bisect_right_ll(npy_int64 *a, npy_int64 x, int hi, int offset)
int bisect_right_ull(npy_uint64 *a, npy_uint64 x, int hi, int offset)
int bisect_left_e(npy_float16 *a, npy_float64 x, int hi, int offset)
int bisect_right_e(npy_float16 *a, npy_float64 x, int hi, int offset)
int bisect_left_f(npy_float32 *a, npy_float64 x, int hi, int offset)
int bisect_right_f(npy_float32 *a, npy_float64 x, int hi, int offset)
int bisect_left_d(npy_float64 *a, npy_float64 x, int hi, int offset)
int bisect_right_d(npy_float64 *a, npy_float64 x, int hi, int offset)
int bisect_left_g(npy_longdouble *a, npy_longdouble x, int hi, int offset)
int bisect_right_g(npy_longdouble *a, npy_longdouble x, int hi, int offset)
int keysort_f96(npy_float96 *start1, char *start2, npy_intp num, int ts)
int keysort_f128(npy_float128 *start1, char *start2, npy_intp num, int ts)
int keysort_f64(npy_float64 *start1, char *start2, npy_intp num, int ts)
int keysort_f32(npy_float32 *start1, char *start2, npy_intp num, int ts)
int keysort_f16(npy_float16 *start1, char *start2, npy_intp num, int ts)
int keysort_i64(npy_int64 *start1, char *start2, npy_intp num, int ts)
int keysort_u64(npy_uint64 *start1, char *start2, npy_intp num, int ts)
int keysort_i32(npy_int32 *start1, char *start2, npy_intp num, int ts)
int keysort_u32(npy_uint32 *start1, char *start2, npy_intp num, int ts)
int keysort_i16(npy_int16 *start1, char *start2, npy_intp num, int ts)
int keysort_u16(npy_uint16 *start1, char *start2, npy_intp num, int ts)
int keysort_i8(npy_int8 *start1, char *start2, npy_intp num, int ts)
int keysort_u8(npy_uint8 *start1, char *start2, npy_intp num, int ts)
int keysort_S(char *start1, int ss, char *start2, npy_intp num, int ts)
#----------------------------------------------------------------------------
# Initialization code
# The numpy API requires this function to be called before
# using any numpy facilities in an extension module.
import_array()
#---------------------------------------------------------------------------
# Functions
# Sorting functions
def keysort(ndarray array1, ndarray array2):
"""Sort array1 in-place. array2 is also sorted following the array1 order.
array1 can be of any type, except complex or string. array2 may be made of
elements on any size.
"""
cdef npy_intp size
cdef int elsize1, elsize2
size = array1.size
elsize1 = array1.itemsize
elsize2 = array2.itemsize
if array1.dtype == "float64":
return keysort_f64(<npy_float64 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "float32":
return keysort_f32(<npy_float32 *>array1.data, array2.data, size, elsize2)
# elif array1.dtype == "float16": # raises an error if float16 is not defined
elif array1.dtype.name == "float16":
return keysort_f16(<npy_float16 *>array1.data, array2.data, size, elsize2)
elif array1.dtype.name == "float96":
return keysort_f96(<npy_float96 *>array1.data, array2.data, size, elsize2)
elif array1.dtype.name == "float128":
return keysort_f128(<npy_float128 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "int64":
return keysort_i64(<npy_int64 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "uint64":
return keysort_u64(<npy_uint64 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "int32":
return keysort_i32(<npy_int32 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "uint32":
return keysort_u32(<npy_uint32 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "int16":
return keysort_i16(<npy_int16 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "uint16":
return keysort_u16(<npy_uint16 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "int8":
return keysort_i8(<npy_int8 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "uint8":
return keysort_u8(<npy_uint8 *>array1.data, array2.data, size, elsize2)
elif array1.dtype == "bool":
return keysort_u8(<npy_uint8 *>array1.data, array2.data, size, elsize2)
elif array1.dtype.char == "S":
return keysort_S(array1.data, elsize1, array2.data, size, elsize2)
# As it turns out, an indirect sort is always faster, and much faster on
# new processors. See
# http://www.mail-archive.com/numpy-discussion@scipy.org/msg06639.html
#
# The next takes more memory (the idx array), but for large strings, this
# should be negligible.
#
#sidx = array1.argsort()
#array1[:] = array1[sidx]
#array2[:] = array2[sidx]
#return 0
else:
raise ValueError("This shouldn't happen!")
# Classes
cdef class Index:
pass
cdef class CacheArray(Array):
"""Container for keeping index caches of 1st and 2nd level."""
cdef hid_t mem_space_id
cdef initread(self, int nbounds):
# "Actions to accelerate the reads afterwards."
# Precompute the mem_space_id
if (H5ARRAYOinit_readSlice(self.dataset_id, &self.mem_space_id,
nbounds) < 0):
raise HDF5ExtError("Problems initializing the bounds array data.")
return
cdef read_slice(self, hsize_t nrow, hsize_t start, hsize_t stop, void *rbuf):
# "Read an slice of bounds."
if (H5ARRAYOread_readBoundsSlice(
self.dataset_id, self.mem_space_id, self.type_id,
nrow, start, stop, rbuf) < 0):
raise HDF5ExtError("Problems reading the bounds array data.")
return
def _g_close(self):
super(Array, self)._g_close()
# Release specific resources of this class
if self.mem_space_id > 0:
H5Sclose(self.mem_space_id)
cdef class IndexArray(Array):
"""Container for keeping sorted and indices values."""
cdef void *rbufst
cdef void *rbufln
cdef void *rbufrv
cdef void *rbufbc
cdef void *rbuflb
cdef hid_t mem_space_id
cdef int l_chunksize, l_slicesize, nbounds, indsize
cdef CacheArray bounds_ext
cdef NumCache boundscache, sortedcache
cdef ndarray bufferbc, bufferlb
def _read_index_slice(self, hsize_t irow, hsize_t start, hsize_t stop,
ndarray idx):
cdef herr_t ret
# Do the physical read
with nogil:
ret = H5ARRAYOread_readSlice(self.dataset_id, self.type_id,
irow, start, stop, idx.data)
if ret < 0:
raise HDF5ExtError("Problems reading the index indices.")
_readIndexSlice = previous_api(_read_index_slice)
def _init_sorted_slice(self, index):
"""Initialize the structures for doing a binary search."""
cdef long ndims
cdef int rank, buflen, cachesize
cdef char *bname
cdef hsize_t count[2]
cdef ndarray starts, lengths, rvcache
cdef object maxslots, rowsize
dtype = self.atom.dtype
# Create the buffer for reading sorted data chunks if not created yet
if <object>self.bufferlb is None:
# Internal buffers
self.bufferlb = numpy.empty(dtype=dtype, shape=self.chunksize)
# Get the pointers to the different buffer data areas
self.rbuflb = self.bufferlb.data
# Init structures for accelerating sorted array reads
rank = 2
count[0] = 1
count[1] = self.chunksize
self.mem_space_id = H5Screate_simple(rank, count, NULL)
# Cache some counters in local extension variables
self.l_chunksize = self.chunksize
self.l_slicesize = self.slicesize
# Get the addresses of buffer data
starts = index.starts
lengths = index.lengths
self.rbufst = starts.data
self.rbufln = lengths.data
# The 1st cache is loaded completely in memory and needs to be reloaded
rvcache = index.ranges[:]
self.rbufrv = rvcache.data
index.rvcache = <object>rvcache
# Init the bounds array for reading
self.nbounds = index.bounds.shape[1]
self.bounds_ext = <CacheArray>index.bounds
self.bounds_ext.initread(self.nbounds)
if str(dtype) in self._v_parent.opt_search_types:
# The next caches should be defined only for optimized search types.
# The 2nd level cache will replace the already existing ObjectCache and
# already bound to the boundscache attribute. This way, the cache will
# not be duplicated (I know, this smells badly, but anyway).
params = self._v_file.params
rowsize = (self.bounds_ext._v_chunkshape[1] * dtype.itemsize)
maxslots = params['BOUNDS_MAX_SIZE'] / rowsize
self.boundscache = <NumCache>NumCache(
(maxslots, self.nbounds), dtype, 'non-opt types bounds')
self.bufferbc = numpy.empty(dtype=dtype, shape=self.nbounds)
# Get the pointer for the internal buffer for 2nd level cache
self.rbufbc = self.bufferbc.data
# Another NumCache for the sorted values
rowsize = (self.chunksize*dtype.itemsize)
maxslots = params['SORTED_MAX_SIZE'] / (self.chunksize*dtype.itemsize)
self.sortedcache = <NumCache>NumCache(
(maxslots, self.chunksize), dtype, 'sorted')
_initSortedSlice = previous_api(_init_sorted_slice)
cdef void *_g_read_sorted_slice(self, hsize_t irow, hsize_t start,
hsize_t stop):
"""Read the sorted part of an index."""
with nogil:
ret = H5ARRAYOread_readSortedSlice(
self.dataset_id, self.mem_space_id, self.type_id,
irow, start, stop, self.rbuflb)
if ret < 0:
raise HDF5ExtError("Problems reading the array data.")
return self.rbuflb
# can't time machine since this function is cdef'd
#_g_read_sorted_slice = prveious_api(_g_read_sorted_slice)
# This is callable from python
def _read_sorted_slice(self, hsize_t irow, hsize_t start, hsize_t stop):
"""Read the sorted part of an index."""
self._g_read_sorted_slice(irow, start, stop)
return self.bufferlb
_readSortedSlice = previous_api(_read_sorted_slice)
# This has been copied from the standard module bisect.
# Checks for the values out of limits has been added at the beginning
# because I forsee that this should be a very common case.
# 2004-05-20
def _bisect_left(self, a, x, int hi):
"""Return the index where to insert item x in list a, assuming a is sorted.
The return value i is such that all e in a[:i] have e < x, and all e in
a[i:] have e >= x. So if x already appears in the list, i points just
before the leftmost x already there.
"""
cdef int lo, mid
lo = 0
if x <= a[0]: return 0
if a[-1] < x: return hi
while lo < hi:
mid = (lo+hi)/2
if a[mid] < x: lo = mid+1
else: hi = mid
return lo
def _bisect_right(self, a, x, int hi):
"""Return the index where to insert item x in list a, assuming a is sorted.
The return value i is such that all e in a[:i] have e <= x, and all e in
a[i:] have e > x. So if x already appears in the list, i points just
beyond the rightmost x already there.
"""
cdef int lo, mid
lo = 0
if x < a[0]: return 0
if a[-1] <= x: return hi
while lo < hi:
mid = (lo+hi)/2
if x < a[mid]: hi = mid
else: lo = mid+1
return lo
cdef void *get_lru_bounds(self, int nrow, int nbounds):
"""Get the bounds from the cache, or read them."""
cdef void *vpointer
cdef long nslot
nslot = self.boundscache.getslot_(nrow)
if nslot >= 0:
vpointer = self.boundscache.getitem1_(nslot)
else:
# Bounds row is not in cache. Read it and put it in the LRU cache.
self.bounds_ext.read_slice(nrow, 0, nbounds, self.rbufbc)
self.boundscache.setitem_(nrow, self.rbufbc, 0)
vpointer = self.rbufbc
return vpointer
# can't time machine since get_lru_bounds() function is cdef'd
cdef void *get_lru_sorted(self, int nrow, int ncs, int nchunk, int cs):
"""Get the sorted row from the cache or read it."""
cdef void *vpointer
cdef npy_int64 nckey
cdef long nslot
cdef hsize_t start, stop
# Compute the number of chunk read and use it as the key for the cache.
nckey = nrow*ncs+nchunk
nslot = self.sortedcache.getslot_(nckey)
if nslot >= 0:
vpointer = self.sortedcache.getitem1_(nslot)
else:
# The sorted chunk is not in cache. Read it and put it in the LRU cache.
start = cs*nchunk
stop = cs*(nchunk+1)
vpointer = self._g_read_sorted_slice(nrow, start, stop)
self.sortedcache.setitem_(nckey, vpointer, 0)
return vpointer
# can't time machine since get_lru_sorted() function is cdef'd
# Optimized version for int8
def _search_bin_na_b(self, long item1, long item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_int8 *rbufrv
cdef npy_int8 *rbufbc = NULL
cdef npy_int8 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_int8 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int8 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_b(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int8 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_b(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int8 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_b(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int8 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_b(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_b = previous_api(_search_bin_na_b)
# Optimized version for uint8
def _search_bin_na_ub(self, long item1, long item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_uint8 *rbufrv
cdef npy_uint8 *rbufbc = NULL
cdef npy_uint8 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_uint8 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint8 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_ub(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint8 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_ub(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint8 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_ub(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint8 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_ub(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_ub = previous_api(_search_bin_na_ub)
# Optimized version for int16
def _search_bin_na_s(self, long item1, long item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_int16 *rbufrv
cdef npy_int16 *rbufbc = NULL
cdef npy_int16 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_int16 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int16 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_s(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int16 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_s(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int16 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_s(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int16 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_s(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_s = previous_api(_search_bin_na_s)
# Optimized version for uint16
def _search_bin_na_us(self, long item1, long item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_uint16 *rbufrv
cdef npy_uint16 *rbufbc = NULL
cdef npy_uint16 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_uint16 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint16 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_us(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint16 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_us(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint16 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_us(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint16 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_us(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_us = previous_api(_search_bin_na_us)
# Optimized version for int32
def _search_bin_na_i(self, long item1, long item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_int32 *rbufrv
cdef npy_int32 *rbufbc = NULL
cdef npy_int32 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_int32 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int32 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_i(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int32 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_i(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int32 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_i(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int32 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_i(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_i = previous_api(_search_bin_na_i)
# Optimized version for uint32
def _search_bin_na_ui(self, npy_uint32 item1, npy_uint32 item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_uint32 *rbufrv
cdef npy_uint32 *rbufbc = NULL
cdef npy_uint32 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_uint32 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint32 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_ui(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint32 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_ui(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint32 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_ui(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint32 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_ui(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_ui = previous_api(_search_bin_na_ui)
# Optimized version for int64
def _search_bin_na_ll(self, npy_int64 item1, npy_int64 item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_int64 *rbufrv
cdef npy_int64 *rbufbc = NULL
cdef npy_int64 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_int64 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int64 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_ll(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int64 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_ll(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_int64 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_ll(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_int64 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_ll(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_ll = previous_api(_search_bin_na_ll)
# Optimized version for uint64
def _search_bin_na_ull(self, npy_uint64 item1, npy_uint64 item2):
cdef int cs, ss, ncs, nrow, nrows, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_uint64 *rbufrv
cdef npy_uint64 *rbufbc = NULL
cdef npy_uint64 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
rbufrv = <npy_uint64 *>self.rbufrv
tlength = 0
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint64 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_ull(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint64 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_ull(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_uint64 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_ull(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_uint64 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_ull(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_ull = previous_api(_search_bin_na_ull)
# Optimized version for float16
def _search_bin_na_e(self, npy_float64 item1, npy_float64 item2):
cdef int cs, ss, ncs, nrow, nrows, nrow2, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_float16 *rbufrv
cdef npy_float16 *rbufbc = NULL
cdef npy_float16 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
tlength = 0
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
# Limits not in cache, do a lookup
rbufrv = <npy_float16 *>self.rbufrv
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float16 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_e(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float16 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_e(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float16 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_e(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float16 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_e(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_e = previous_api(_search_bin_na_e)
# Optimized version for float32
def _search_bin_na_f(self, npy_float64 item1, npy_float64 item2):
cdef int cs, ss, ncs, nrow, nrows, nrow2, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_float32 *rbufrv
cdef npy_float32 *rbufbc = NULL
cdef npy_float32 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
tlength = 0
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
# Limits not in cache, do a lookup
rbufrv = <npy_float32 *>self.rbufrv
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float32 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_f(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float32 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_f(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float32 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_f(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float32 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_f(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_f = previous_api(_search_bin_na_f)
# Optimized version for float64
def _search_bin_na_d(self, npy_float64 item1, npy_float64 item2):
cdef int cs, ss, ncs, nrow, nrows, nrow2, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_float64 *rbufrv
cdef npy_float64 *rbufbc = NULL
cdef npy_float64 *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
tlength = 0
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
# Limits not in cache, do a lookup
rbufrv = <npy_float64 *>self.rbufrv
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float64 *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_d(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float64 *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_d(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_float64 *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_d(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_float64 *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_d(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_d = previous_api(_search_bin_na_d)
# Optimized version for npy_longdouble/float96/float128
def _search_bin_na_g(self, npy_longdouble item1, npy_longdouble item2):
cdef int cs, ss, ncs, nrow, nrows, nrow2, nbounds, rvrow
cdef int start, stop, tlength, length, bread, nchunk, nchunk2
cdef int *rbufst
cdef int *rbufln
# Variables with specific type
cdef npy_longdouble *rbufrv
cdef npy_longdouble *rbufbc = NULL
cdef npy_longdouble *rbuflb = NULL
cs = self.l_chunksize
ss = self.l_slicesize
ncs = ss / cs
nbounds = self.nbounds
nrows = self.nrows
tlength = 0
rbufst = <int *>self.rbufst
rbufln = <int *>self.rbufln
# Limits not in cache, do a lookup
rbufrv = <npy_longdouble *>self.rbufrv
for nrow from 0 <= nrow < nrows:
rvrow = nrow*2
bread = 0
nchunk = -1
# Look if item1 is in this row
if item1 > rbufrv[rvrow]:
if item1 <= rbufrv[rvrow+1]:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_longdouble *>self.get_lru_bounds(nrow, nbounds)
bread = 1
nchunk = bisect_left_g(rbufbc, item1, nbounds, 0)
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_longdouble *>self.get_lru_sorted(nrow, ncs, nchunk, cs)
start = bisect_left_g(rbuflb, item1, cs, 0) + cs*nchunk
else:
start = ss
else:
start = 0
# Now, for item2
if item2 >= rbufrv[rvrow]:
if item2 < rbufrv[rvrow+1]:
if not bread:
# Get the bounds row from the LRU cache or read them.
rbufbc = <npy_longdouble *>self.get_lru_bounds(nrow, nbounds)
nchunk2 = bisect_right_g(rbufbc, item2, nbounds, 0)
if nchunk2 <> nchunk:
# Get the sorted row from the LRU cache or read it.
rbuflb = <npy_longdouble *>self.get_lru_sorted(nrow, ncs, nchunk2, cs)
stop = bisect_right_g(rbuflb, item2, cs, 0) + cs*nchunk2
else:
stop = ss
else:
stop = 0
length = stop - start
tlength = tlength + length
rbufst[nrow] = start
rbufln[nrow] = length
return tlength
_searchBinNA_g = previous_api(_search_bin_na_g)
def _g_close(self):
super(Array, self)._g_close()
# Release specific resources of this class
if self.mem_space_id > 0:
H5Sclose(self.mem_space_id)
cdef class LastRowArray(Array):
"""
Container for keeping sorted and indices values of last rows of an index.
"""
def _read_index_slice(self, hsize_t start, hsize_t stop, ndarray idx):
"""Read the reverse index part of an LR index."""
with nogil:
ret = H5ARRAYOreadSliceLR(self.dataset_id, self.type_id,
start, stop, idx.data)
if ret < 0:
raise HDF5ExtError("Problems reading the index data in Last Row.")
_readIndexSlice = previous_api(_read_index_slice)
def _read_sorted_slice(self, IndexArray sorted, hsize_t start, hsize_t stop):
"""Read the sorted part of an LR index."""
cdef void *rbuflb
rbuflb = sorted.rbuflb # direct access to rbuflb: very fast.
with nogil:
ret = H5ARRAYOreadSliceLR(self.dataset_id, self.type_id,
start, stop, rbuflb)
if ret < 0:
raise HDF5ExtError("Problems reading the index data.")
return sorted.bufferlb[:stop-start]
_readSortedSlice = previous_api(_read_sorted_slice)
## Local Variables:
## mode: python
## py-indent-offset: 2
## tab-width: 2
## fill-column: 78
## End:
|