add an initial implementation of a service_id structure and three
[vlendec/samba-autobuild/.git] / ctdb / common / cmdline.c
1 /* 
2    common commandline code to ctdb test tools
3
4    Copyright (C) Andrew Tridgell  2007
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "lib/events/events.h"
22 #include "system/filesys.h"
23 #include "popt.h"
24 #include "../include/ctdb.h"
25 #include "../include/ctdb_private.h"
26 #include "../common/rb_tree.h"
27
28 /* Handle common command line options for ctdb test progs
29  */
30
31 static struct {
32         const char *socketname;
33         int torture;
34         const char *events;
35 } ctdb_cmdline = {
36         .socketname = CTDB_PATH,
37         .torture = 0,
38 };
39
40 enum {OPT_EVENTSYSTEM=1};
41
42 static void ctdb_cmdline_callback(poptContext con, 
43                                   enum poptCallbackReason reason,
44                                   const struct poptOption *opt,
45                                   const char *arg, const void *data)
46 {
47         switch (opt->val) {
48         case OPT_EVENTSYSTEM:
49                 event_set_default_backend(arg);
50                 break;
51         }
52 }
53
54
55 struct poptOption popt_ctdb_cmdline[] = {
56         { NULL, 0, POPT_ARG_CALLBACK, (void *)ctdb_cmdline_callback },  
57         { "socket", 0, POPT_ARG_STRING, &ctdb_cmdline.socketname, 0, "local socket name", "filename" },
58         { "debug", 'd', POPT_ARG_INT, &LogLevel, 0, "debug level"},
59         { "torture", 0, POPT_ARG_NONE, &ctdb_cmdline.torture, 0, "enable nastiness in library", NULL },
60         { "events", 0, POPT_ARG_STRING, NULL, OPT_EVENTSYSTEM, "event system", NULL },
61         { NULL }
62 };
63
64
65 /*
66   startup daemon side of ctdb according to command line options
67  */
68 struct ctdb_context *ctdb_cmdline_init(struct event_context *ev)
69 {
70         struct ctdb_context *ctdb;
71         int ret;
72
73         /* initialise ctdb */
74         ctdb = ctdb_init(ev);
75         if (ctdb == NULL) {
76                 printf("Failed to init ctdb\n");
77                 exit(1);
78         }
79
80         if (ctdb_cmdline.torture) {
81                 ctdb_set_flags(ctdb, CTDB_FLAG_TORTURE);
82         }
83
84         /* tell ctdb the socket address */
85         ret = ctdb_set_socketname(ctdb, ctdb_cmdline.socketname);
86         if (ret == -1) {
87                 printf("ctdb_set_socketname failed - %s\n", ctdb_errstr(ctdb));
88                 exit(1);
89         }
90
91         /* set up the tree to store server ids */
92         ctdb->server_ids = trbt_create(ctdb, 0);
93
94         return ctdb;
95 }
96
97
98 /*
99   startup a client only ctdb context
100  */
101 struct ctdb_context *ctdb_cmdline_client(struct event_context *ev)
102 {
103         struct ctdb_context *ctdb;
104         int ret;
105
106         /* initialise ctdb */
107         ctdb = ctdb_init(ev);
108         if (ctdb == NULL) {
109                 fprintf(stderr, "Failed to init ctdb\n");
110                 exit(1);
111         }
112
113         /* tell ctdb the socket address */
114         ret = ctdb_set_socketname(ctdb, ctdb_cmdline.socketname);
115         if (ret == -1) {
116                 fprintf(stderr, "ctdb_set_socketname failed - %s\n", ctdb_errstr(ctdb));
117                 exit(1);
118         }
119
120         ret = ctdb_socket_connect(ctdb);
121         if (ret != 0) {
122                 fprintf(stderr, __location__ " Failed to connect to daemon\n");
123                 talloc_free(ctdb);
124                 return NULL;
125         }
126
127         /* get our vnn */
128         ctdb->vnn = ctdb_ctrl_getvnn(ctdb, timeval_current_ofs(3, 0), CTDB_CURRENT_NODE);
129         if (ctdb->vnn == (uint32_t)-1) {
130                 DEBUG(0,(__location__ " Failed to get ctdb vnn\n"));
131                 talloc_free(ctdb);
132                 return NULL;
133         }
134
135         return ctdb;
136 }