3 This test just fetch_locks a record and releases it in a loop.
5 Copyright (C) Ronnie Sahlberg 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "system/filesys.h"
23 #include "system/time.h"
26 #include "ctdb_private.h"
28 static struct ctdb_db_context
*ctdb_db
;
30 const char *TESTKEY
= "testkey";
34 Just try locking/unlocking a single record once
36 static void fetch_lock_once(struct ctdb_context
*ctdb
, struct event_context
*ev
)
38 TALLOC_CTX
*tmp_ctx
= talloc_new(ctdb
);
40 struct ctdb_record_handle
*h
;
41 static time_t t
= 0, t2
;
43 key
.dptr
= discard_const(TESTKEY
);
44 key
.dsize
= strlen(TESTKEY
);
46 // printf("Trying to fetch lock the record ...\n");
48 h
= ctdb_fetch_readonly_lock(ctdb_db
, tmp_ctx
, key
, &data
, 1);
50 printf("Failed to fetch record '%s' on node %d\n",
51 (const char *)key
.dptr
, ctdb_get_pnn(ctdb
));
58 if (t
!= 0 && t
!= t2
) {
59 static int last_count
= 0;
61 printf("count : %d\n", count
- last_count
);
72 int main(int argc
, const char *argv
[])
74 struct ctdb_context
*ctdb
;
77 struct poptOption popt_options
[] = {
80 { "record", 'r', POPT_ARG_STRING
, &TESTKEY
, 0, "record", "string" },
84 const char **extra_argv
;
87 struct event_context
*ev
;
89 pc
= poptGetContext(argv
[0], argc
, argv
, popt_options
, POPT_CONTEXT_KEEP_FIRST
);
91 while ((opt
= poptGetNextOpt(pc
)) != -1) {
94 fprintf(stderr
, "Invalid option %s: %s\n",
95 poptBadOption(pc
, 0), poptStrerror(opt
));
100 /* setup the remaining options for the main program to use */
101 extra_argv
= poptGetArgs(pc
);
104 while (extra_argv
[extra_argc
]) extra_argc
++;
107 ev
= event_context_init(NULL
);
109 ctdb
= ctdb_cmdline_client(ev
, timeval_current_ofs(5, 0));
114 key
.dptr
= discard_const(TESTKEY
);
115 key
.dsize
= strlen(TESTKEY
);
117 ret
= ctdb_ctrl_getvnnmap(ctdb
, timeval_zero(), CTDB_CURRENT_NODE
, ctdb
, &ctdb
->vnn_map
);
119 printf("failed to get vnnmap\n");
122 printf("Record:%s\n", TESTKEY
);
123 printf("Lmaster : %d\n", ctdb_lmaster(ctdb
, &key
));
125 /* attach to a specific database */
126 ctdb_db
= ctdb_attach(ctdb
, timeval_current_ofs(5, 0), "test.tdb", false, 0);
128 printf("ctdb_attach failed - %s\n", ctdb_errstr(ctdb
));
132 printf("Waiting for cluster\n");
135 ctdb_ctrl_getrecmode(ctdb
, ctdb
, timeval_zero(), CTDB_CURRENT_NODE
, &recmode
);
136 if (recmode
== 0) break;
141 fetch_lock_once(ctdb
, ev
);