2013-04-16 23:57:48 -04:00
# ident "$Id$"
2013-04-16 23:59:09 -04:00
# ident "Copyright (c) 2007-2010 Tokutek Inc. All rights reserved."
2013-04-16 23:57:48 -04:00
# ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11 / 760379 and to the patents and / or patent applications resulting from it."
2008-01-25 15:43:37 +00:00
# ifndef BRT_SEARCH_H
# define BRT_SEARCH_H
2013-04-16 23:59:09 -04:00
# if defined(__cplusplus) || defined(__cilkplusplus)
extern " C " {
# endif
2008-04-02 23:40:36 +00:00
enum brt_search_direction_e {
2008-01-25 15:43:37 +00:00
BRT_SEARCH_LEFT = 1 , /* search left -> right, finds min xy as defined by the compare function */
BRT_SEARCH_RIGHT = 2 , /* search right -> left, finds max xy as defined by the compare function */
} ;
struct brt_search ;
2013-04-16 23:57:41 -04:00
/* the search compare function should return 0 for all xy < kv and 1 for all xy >= kv
2008-01-27 13:45:27 +00:00
the compare function should be a step function from 0 to 1 for a left to right search
and 1 to 0 for a right to left search */
2008-01-25 15:43:37 +00:00
typedef int ( * brt_search_compare_func_t ) ( struct brt_search */ * so */ , DBT */ * x */ , DBT */ * y */ ) ;
/* the search object contains the compare function, search direction, and the kv pair that
is used in the compare function . the context is the user ' s private data */
typedef struct brt_search {
brt_search_compare_func_t compare ;
2008-04-02 23:40:36 +00:00
enum brt_search_direction_e direction ;
2013-04-16 23:59:09 -04:00
const DBT * k ;
const DBT * v ;
2008-01-25 15:43:37 +00:00
void * context ;
} brt_search_t ;
/* initialize the search compare object */
2013-04-16 23:59:09 -04:00
static inline brt_search_t * brt_search_init ( brt_search_t * so , brt_search_compare_func_t compare , enum brt_search_direction_e direction , const DBT * k , const DBT * v , void * context ) {
2008-01-25 15:43:37 +00:00
so - > compare = compare ; so - > direction = direction ; so - > k = k ; so - > v = v ; so - > context = context ;
return so ;
}
2013-04-16 23:59:09 -04:00
# if defined(__cplusplus) || defined(__cilkplusplus)
} ;
# endif
2008-01-25 15:43:37 +00:00
# endif