Skip to content

Commit

Permalink
grn_ts: add files for new modules
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Nov 20, 2015
1 parent c452634 commit 2eef1ca
Show file tree
Hide file tree
Showing 7 changed files with 268 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/ts/sources.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
libgrnts_la_SOURCES = \
ts_buf.c \
ts_buf.h \
ts_cursor.c \
ts_cursor.h \
ts_expr.c \
ts_expr.h \
ts_expr_builder.c \
Expand All @@ -12,6 +14,10 @@ libgrnts_la_SOURCES = \
ts_log.h \
ts_op.c \
ts_op.h \
ts_plan.c \
ts_plan.h \
ts_sorter.c \
ts_sorter.h \
ts_str.c \
ts_str.h \
ts_types.h \
Expand Down
19 changes: 19 additions & 0 deletions lib/ts/ts_cursor.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "ts_cursor.h"
55 changes: 55 additions & 0 deletions lib/ts/ts_cursor.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef GRN_TS_CURSOR_H
#define GRN_TS_CURSOR_H

#include "../grn.h"

#include "ts_types.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef enum {
GRN_TS_HASH_CURSOR,
GRN_TS_PAT_CURSOR,
GRN_TS_DAT_CURSOR,
GRN_TS_ARRAY_CURSOR
} grn_ts_cursor_type;

typedef struct {
grn_ts_cursor_type type;
} grn_ts_cursor;

/* grn_ts_cursor_open() creates a cursor. */
grn_rc grn_ts_cursor_open(grn_ctx *ctx, grn_ts_cursor **cursor);

/* grn_ts_cursor_close() destroys a cursor. */
grn_rc grn_ts_cursor_close(grn_ctx *ctx, grn_ts_cursor *cursor);

/* grn_ts_cursor_read() reads records from a cursor. */
grn_rc grn_ts_cursor_read(grn_ctx *ctx, grn_ts_cursor *cursor,
grn_ts_record *out, size_t max_n_out, size_t *n_out);

#ifdef __cplusplus
}
#endif

#endif /* GRN_TS_CURSOR_H */
21 changes: 21 additions & 0 deletions lib/ts/ts_plan.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "ts_plan.h"

// TODO
85 changes: 85 additions & 0 deletions lib/ts/ts_plan.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef GRN_TS_PLAN_H
#define GRN_TS_PLAN_H

#include "../grn.h"

#include "ts_cursor.h"
#include "ts_expr.h"
#include "ts_sorter.h"
#include "ts_types.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
} grn_ts_plan_node;

typedef struct {
grn_obj *table;
grn_ts_plan_node *root;
} grn_ts_plan;

/* grn_ts_plan_open() creates a plan. */
grn_rc grn_ts_plan_open(grn_ctx *ctx, grn_obj *table, grn_ts_plan_node *root,
grn_ts_plan **plan);

/* grn_ts_plan_close() destroys a plan. */
grn_rc grn_ts_plan_close(grn_ctx *ctx, grn_ts_plan *plan);

/* TODO: A struct for output should be provided? */
/* grn_ts_plan_exec() executes a plan. */
grn_rc grn_ts_plan_exec(grn_ctx *ctx, grn_ts_plan *plan,
grn_ts_record **out, size_t *n_out,
grn_ts_buf *out_buf);

typedef struct {
grn_obj *table;
} grn_ts_planner;

/* grn_ts_planner_open() creates a planner. */
grn_rc grn_ts_planner_open(grn_ctx *ctx, grn_obj *table,
grn_ts_planner **planner);

/* grn_ts_planner_close() destroys a planner. */
grn_rc grn_ts_planner_close(grn_ctx *ctx, grn_ts_planner *planner);

/* grn_ts_planner_push_cursor() pushes a cursor. */
grn_rc grn_ts_planner_push_cursor(grn_ctx *ctx, grn_ts_planner *planner,
grn_ts_cursor *cursor);

/* grn_ts_planner_push_filter() pushes a filter. */
grn_rc grn_ts_planner_push_filter(grn_ctx *ctx, grn_ts_planner *planner,
grn_ts_expr *expr);

/* grn_ts_planner_push_scorer() pushes a scorer. */
grn_rc grn_ts_planner_push_scorer(grn_ctx *ctx, grn_ts_planner *planner,
grn_ts_expr *expr);

/* grn_ts_planner_push_sorter() pushes a sorter. */
grn_rc grn_ts_planner_push_sorter(grn_ctx *ctx, grn_ts_planner *planner,
grn_ts_sorter *sorter);

#ifdef __cplusplus
}
#endif

#endif /* GRN_TS_PLAN_H */
21 changes: 21 additions & 0 deletions lib/ts/ts_sorter.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "ts_sorter.h"

// TODO
61 changes: 61 additions & 0 deletions lib/ts/ts_sorter.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef GRN_TS_SORTER_H
#define GRN_TS_SORTER_H

#include "../grn.h"

#include "ts_types.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
} grn_ts_sorter_node;

typedef struct {
grn_obj *table;
grn_ts_sorter_node *head;
} grn_ts_sorter;

/* grn_ts_sorter_open() creates a sorter. */
grn_rc grn_ts_sorter_open(grn_ctx *ctx, grn_obj *table,
grn_ts_sorter_node *head, grn_ts_sorter **sorter);

/* grn_ts_sorter_close() destroys a sorter. */
grn_rc grn_ts_sorter_close(grn_ctx *ctx, grn_ts_sorter *sorter);

typedef struct {
grn_obj *table;
} grn_ts_sorter_builder;

/* grn_ts_sorter_builder_open() creates a sorter builder. */
grn_rc grn_ts_sorter_builder_open(grn_ctx *ctx, grn_obj *table,
grn_ts_sorter_builder **builder);

/* grn_ts_sorter_builder_close() destroys a sorter builder. */
grn_rc grn_ts_sorter_builder_close(grn_ctx *ctx,
grn_ts_sorter_builder *builder);

#ifdef __cplusplus
}
#endif

#endif /* GRN_TS_SORTER_H */

0 comments on commit 2eef1ca

Please sign in to comment.