summaryrefslogtreecommitdiff
path: root/qdbm/relic.h
blob: c5b7c51f1c0ba491a528c2af8852a173efcdbd73 (plain)
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
/*************************************************************************************************
 * The NDBM-compatible API of QDBM
 *                                                      Copyright (C) 2000-2007 Mikio Hirabayashi
 * This file is part of QDBM, Quick Database Manager.
 * QDBM is free software; you can redistribute it and/or modify it under the terms of the GNU
 * Lesser General Public License as published by the Free Software Foundation; either version
 * 2.1 of the License or any later version.  QDBM 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 QDBM; if
 * not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307 USA.
 *************************************************************************************************/


#ifndef _RELIC_H                         /* duplication check */
#define _RELIC_H

#if defined(__cplusplus)                 /* export for C++ */
extern "C" {
#endif


#include <depot.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>


#if defined(_MSC_VER) && !defined(QDBM_INTERNAL) && !defined(QDBM_STATIC)
#define MYEXTERN extern __declspec(dllimport)
#else
#define MYEXTERN extern
#endif



/*************************************************************************************************
 * API
 *************************************************************************************************/


typedef struct {                         /* type of structure for a database handle */
  DEPOT *depot;                          /* internal database handle */
  int dfd;                               /* file descriptor of a dummy file */
  char *dbm_fetch_vbuf;                  /* buffer for dbm_fetch */
  char *dbm_nextkey_kbuf;                /* buffer for dbm_nextkey */
} DBM;

typedef struct {                         /* type of structure for a key or a value */
  void *dptr;                            /* pointer to the region */
  size_t dsize;                          /* size of the region */
} datum;

enum {                                   /* enumeration for write modes */
  DBM_INSERT,                            /* keep an existing value */
  DBM_REPLACE                            /* overwrite an existing value */
};


/* Get a database handle.
   `name' specifies the name of a database.  The file names are concatenated with suffixes.
   `flags' is the same as the one of `open' call, although `O_WRONLY' is treated as `O_RDWR'
   and additional flags except for `O_CREAT' and `O_TRUNC' have no effect.
   `mode' specifies the mode of the database file as the one of `open' call does.
   The return value is the database handle or `NULL' if it is not successful. */
DBM *dbm_open(char *name, int flags, int mode);


/* Close a database handle.
   `db' specifies a database handle.
   Because the region of the closed handle is released, it becomes impossible to use the
   handle. */
void dbm_close(DBM *db);


/* Store a record.
   `db' specifies a database handle.
   `key' specifies a structure of a key.
   `content' specifies a structure of a value.
   `flags' specifies behavior when the key overlaps, by the following values: `DBM_REPLACE',
   which means the specified value overwrites the existing one, `DBM_INSERT', which means the
   existing value is kept.
   The return value is 0 if it is successful, 1 if it gives up because of overlaps of the key,
   -1 if other error occurs. */
int dbm_store(DBM *db, datum key, datum content, int flags);


/* Delete a record.
   `db' specifies a database handle.
   `key' specifies a structure of a key.
   The return value is 0 if it is successful, -1 if some errors occur. */
int dbm_delete(DBM *db, datum key);


/* Retrieve a record.
   `db' specifies a database handle.
   `key' specifies a structure of a key.
   The return value is a structure of the result.
   If a record corresponds, the member `dptr' of the structure is the pointer to the region of
   the value.  If no record corresponds or some errors occur, `dptr' is `NULL'.  `dptr' points
   to the region related with the handle.  The region is available until the next time of
   calling this function with the same handle. */
datum dbm_fetch(DBM *db, datum key);


/* Get the first key of a database.
   `db' specifies a database handle.
   The return value is a structure of the result.
   If a record corresponds, the member `dptr' of the structure is the pointer to the region of
   the first key.  If no record corresponds or some errors occur, `dptr' is `NULL'.  `dptr'
   points to the region related with the handle.  The region is available until the next time
   of calling this function or the function `dbm_nextkey' with the same handle. */
datum dbm_firstkey(DBM *db);


/* Get the next key of a database.
   `db' specifies a database handle.
   The return value is a structure of the result.
   If a record corresponds, the member `dptr' of the structure is the pointer to the region of
   the next key.  If no record corresponds or some errors occur, `dptr' is `NULL'.  `dptr'
   points to the region related with the handle.  The region is available until the next time
   of calling this function or the function `dbm_firstkey' with the same handle. */
datum dbm_nextkey(DBM *db);


/* Check whether a database has a fatal error or not.
   `db' specifies a database handle.
   The return value is true if the database has a fatal error, false if not. */
int dbm_error(DBM *db);


/* No effect.
   `db' specifies a database handle.
   The return value is 0.
   The function is only for compatibility. */
int dbm_clearerr(DBM *db);


/* Check whether a handle is read-only or not.
   `db' specifies a database handle.
   The return value is true if the handle is read-only, or false if not read-only. */
int dbm_rdonly(DBM *db);


/* Get the file descriptor of a directory file.
   `db' specifies a database handle.
   The return value is the file descriptor of the directory file. */
int dbm_dirfno(DBM *db);


/* Get the file descriptor of a data file.
   `db' specifies a database handle.
   The return value is the file descriptor of the data file. */
int dbm_pagfno(DBM *db);



#undef MYEXTERN

#if defined(__cplusplus)                 /* export for C++ */
}
#endif

#endif                                   /* duplication check */


/* END OF FILE */