chiark / gitweb /
The command backend now supports the old (suspending) and new
[disorder] / lib / trackdb-int.h
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2005, 2007 Richard Kettlewell
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file lib/trackdb-int.h
19  * @brief Track database internals */
20 #ifndef TRACKDB_INT_H
21 #define TRACKDB_INT_H
22
23 #include <db.h>
24
25 #include "kvp.h"
26
27 struct vector;                          /* forward declaration */
28
29 extern DB_ENV *trackdb_env;
30
31 extern DB *trackdb_tracksdb;
32 extern DB *trackdb_prefsdb;
33 extern DB *trackdb_searchdb;
34 extern DB *trackdb_tagsdb;
35 extern DB *trackdb_noticeddb;
36 extern DB *trackdb_globaldb;
37 extern DB *trackdb_usersdb;
38 extern DB *trackdb_scheduledb;
39
40 DBC *trackdb_opencursor(DB *db, DB_TXN *tid);
41 /* open a transaction */
42
43 int trackdb_closecursor(DBC *c);
44 /* close transaction, returns 0 or DB_LOCK_DEADLOCK */
45
46 int trackdb_notice(const char *track,
47                    const char *path);
48 int trackdb_notice_tid(const char *track,
49                        const char *path,
50                        DB_TXN *tid);
51 /* notice a track; return DB_NOTFOUND if new, else 0.  _tid can return
52  * DB_LOCK_DEADLOCK too. */
53
54 int trackdb_obsolete(const char *track, DB_TXN *tid);
55 /* obsolete a track */
56
57 DB_TXN *trackdb_begin_transaction(void);
58 void trackdb_abort_transaction(DB_TXN *tid);
59 void trackdb_commit_transaction(DB_TXN *tid);
60 /* begin, abort or commit a transaction */
61
62 /** @brief Evaluate @p expr in a transaction, looping on deadlock
63  *
64  * @c tid will be the transaction handle.  @p e will be the error code.
65  */
66 #define WITH_TRANSACTION(expr) do {             \
67   DB_TXN *tid;                                  \
68                                                 \
69   tid = trackdb_begin_transaction();            \
70   while((e = (expr)) == DB_LOCK_DEADLOCK) {     \
71     trackdb_abort_transaction(tid);             \
72     tid = trackdb_begin_transaction();          \
73   }                                             \
74   if(e)                                         \
75     trackdb_abort_transaction(tid);             \
76   else                                          \
77     trackdb_commit_transaction(tid);            \
78 } while(0)
79
80 int trackdb_getdata(DB *db,
81                     const char *track,
82                     struct kvp **kp,
83                     DB_TXN *tid);
84 /* fetch and decode a database entry.  Returns 0, DB_NOTFOUND or
85  * DB_LOCK_DEADLOCK. */
86
87 int trackdb_putdata(DB *db,
88                     const char *track,
89                     const struct kvp *k,
90                     DB_TXN *tid,
91                     u_int32_t flags);
92 /* encode and store a database entry.  Returns 0, DB_KEYEXIST or
93  * DB_LOCK_DEADLOCK. */
94
95 int trackdb_delkey(DB *db,
96                    const char *track,
97                    DB_TXN *tid);
98 /* delete a database entry.  Returns 0, DB_NOTFOUND or DB_LOCK_DEADLOCK. */
99
100 int trackdb_delkeydata(DB *db,
101                        const char *word,
102                        const char *track,
103                        DB_TXN *tid);
104 /* delete a (key,data) pair.  Returns 0, DB_NOTFOUND or DB_LOCK_DEADLOCK. */
105
106 int trackdb_scan(const char *root,
107                  int (*callback)(const char *track,
108                                  struct kvp *data,
109                                  struct kvp *prefs,
110                                  void *u,
111                                  DB_TXN *tid),
112                  void *u,
113                  DB_TXN *tid);
114 /* Call CALLBACK for each non-alias track below ROOT (or all tracks if ROOT is
115  * 0).  Return 0 or DB_LOCK_DEADLOCK.  CALLBACK should return 0 on success or
116  * EINTR to cancel the scan. */
117
118 int trackdb_listkeys(DB *db, struct vector *v, DB_TXN *tid);
119
120 /* fill KEY in with S, returns KEY */
121 static inline DBT *make_key(DBT *key, const char *s) {
122   memset(key, 0, sizeof *key);
123   key->data = (void *)s;
124   key->size = strlen(s);
125   return key;
126 }
127
128 /* set DATA up to receive data, returns DATA */
129 static inline DBT *prepare_data(DBT *data) {
130   memset(data, 0, sizeof *data);
131   data->flags = DB_DBT_MALLOC;
132   return data;
133 }
134
135 /* encode K and store in DATA, returns DATA */
136 static inline DBT *encode_data(DBT *data, const struct kvp *k) {
137   size_t size;
138   
139   memset(data, 0, sizeof *data);
140   data->data = kvp_urlencode(k, &size);
141   data->size = size;
142   return data;
143 }
144
145 int trackdb_set_global_tid(const char *name,
146                            const char *value,
147                            DB_TXN *tid);
148 int trackdb_get_global_tid(const char *name,
149                            DB_TXN *tid,
150                            const char **rp);
151
152 char **parsetags(const char *s);
153 int tag_intersection(char **a, char **b);
154
155 #endif /* TRACKDB_INT_H */
156
157 /*
158 Local Variables:
159 c-basic-offset:2
160 comment-column:40
161 fill-column:79
162 indent-tabs-mode:nil
163 End:
164 */