Groonga
Loading...
Searching...
No Matches
array.h
Go to the documentation of this file.
1/*
2 Copyright(C) 2009-2016 Brazil
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17*/
18
19#pragma once
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25typedef struct _grn_array grn_array;
26typedef struct _grn_array_cursor grn_array_cursor;
27
28GRN_API grn_array *grn_array_create(grn_ctx *ctx, const char *path,
29 unsigned int value_size, unsigned int flags);
30GRN_API grn_array *grn_array_open(grn_ctx *ctx, const char *path);
32GRN_API grn_id grn_array_add(grn_ctx *ctx, grn_array *array, void **value);
33GRN_API int grn_array_get_value(grn_ctx *ctx, grn_array *array, grn_id id, void *valuebuf);
35 const void *value, int flags);
37 grn_id min, grn_id max,
38 int offset, int limit, int flags);
42 const void *value, int flags);
48
50
52
53#define GRN_ARRAY_EACH(ctx,array,head,tail,id,value,block) do {\
54 grn_array_cursor *_sc = grn_array_cursor_open(ctx, array, head, tail, 0, -1, 0); \
55 if (_sc) {\
56 grn_id id;\
57 while ((id = grn_array_cursor_next(ctx, _sc))) {\
58 grn_array_cursor_get_value(ctx, _sc, (void **)(value));\
59 block\
60 }\
61 grn_array_cursor_close(ctx, _sc); \
62 }\
63} while (0)
64
65#define GRN_ARRAY_EACH_BEGIN(ctx, array, cursor, head, tail, id) do {\
66 grn_array_cursor *cursor;\
67 cursor = grn_array_cursor_open((ctx), (array), (head), (tail), 0, -1, 0);\
68 if (cursor) {\
69 grn_id id;\
70 while ((id = grn_array_cursor_next(ctx, cursor))) {
71
72#define GRN_ARRAY_EACH_END(ctx, cursor)\
73 }\
74 grn_array_cursor_close(ctx, cursor);\
75 }\
76} while (0)
77
78#ifdef __cplusplus
79}
80#endif
GRN_API grn_id grn_array_cursor_next(grn_ctx *ctx, grn_array_cursor *cursor)
GRN_API grn_array_cursor * grn_array_cursor_open(grn_ctx *ctx, grn_array *array, grn_id min, grn_id max, int offset, int limit, int flags)
GRN_API void * _grn_array_get_value(grn_ctx *ctx, grn_array *array, grn_id id)
GRN_API grn_rc grn_array_cursor_delete(grn_ctx *ctx, grn_array_cursor *cursor, grn_table_delete_optarg *optarg)
GRN_API grn_id grn_array_add(grn_ctx *ctx, grn_array *array, void **value)
GRN_API grn_array * grn_array_open(grn_ctx *ctx, const char *path)
struct _grn_array grn_array
Definition array.h:25
GRN_API grn_rc grn_array_delete_by_id(grn_ctx *ctx, grn_array *array, grn_id id, grn_table_delete_optarg *optarg)
GRN_API grn_rc grn_array_close(grn_ctx *ctx, grn_array *array)
GRN_API int grn_array_cursor_get_value(grn_ctx *ctx, grn_array_cursor *cursor, void **value)
GRN_API grn_array * grn_array_create(grn_ctx *ctx, const char *path, unsigned int value_size, unsigned int flags)
GRN_API int grn_array_get_value(grn_ctx *ctx, grn_array *array, grn_id id, void *valuebuf)
struct _grn_array_cursor grn_array_cursor
Definition array.h:26
GRN_API void grn_array_cursor_close(grn_ctx *ctx, grn_array_cursor *cursor)
GRN_API grn_id grn_array_next(grn_ctx *ctx, grn_array *array, grn_id id)
GRN_API grn_rc grn_array_set_value(grn_ctx *ctx, grn_array *array, grn_id id, const void *value, int flags)
GRN_API grn_rc grn_array_cursor_set_value(grn_ctx *ctx, grn_array_cursor *cursor, const void *value, int flags)
grn_rc
Definition groonga.h:61
uint32_t grn_id
Definition groonga.h:44
#define GRN_API
Definition groonga.h:39
Definition groonga.h:351
Definition groonga.h:3329