(Bug ID-2117333) is fixed which deals with CACHE_TABLE variable and should be set...
[csql.git] / src / tools / cachetable.cxx
blobbe3253fd98dbc25737b9211dc8dc0c0fda95d27c
1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
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 2 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 ***************************************************************************/
16 #include <CSql.h>
17 #include <CacheTableLoader.h>
19 void printUsage()
21 printf("Usage: cachetable [-U username] [-P passwd] -t tablename[-D] -c \"condition\" -f \"selected field names\" -p fieldname \n"
22 " [-R] [-s] [-r]\n");
23 printf(" username -> username to connect with csql.\n");
24 printf(" passwd -> password for the above username to connect with csql.\n");
25 printf(" tablename -> table name to be cached in csql from target db.\n");
26 printf(" fieldname -> field name to be specified for the bidirectional caching on which trigger to be run .\n");
27 printf(" R -> recover all cached tables from the target database.\n");
28 printf(" s -> load only the records from target db. Assumes table is already created in csql\n");
29 printf(" r -> reload the table. get the latest image of table from target db\n");
30 printf(" u -> unload the table. if used with -s option, removes only records and preserves the schema\n");
31 printf(" no option -> get table definition and records from target db and create in csql.\n");
32 printf(" D -> Enable direct access option to target database\n");
33 printf(" S -> Cache Description\n");
34 return;
37 int main(int argc, char **argv)
39 DbRetVal rv = OK;
40 Connection conn;
41 rv = conn.open("root","manager");
42 if(rv != OK) return 1;
44 if(!Conf::config.useCache())
46 printf("CACHE_TABLE is set to FALSE in csql.conf file.\n");
47 conn.close();
48 return 1;
50 else{ conn.close(); }
52 char username[IDENTIFIER_LENGTH];
53 username [0] = '\0';
54 char password[IDENTIFIER_LENGTH];
55 password [0] = '\0';
56 int c = 0, opt = 10;
57 bool isDirect=false;
58 char tablename[IDENTIFIER_LENGTH];
59 char fieldname[IDENTIFIER_LENGTH];
60 char condition[IDENTIFIER_LENGTH];
61 char fieldlist[IDENTIFIER_LENGTH];
62 char syncModeStr[IDENTIFIER_LENGTH];
63 bool conditionval = false;
64 bool fieldlistval = false;
65 bool tableDefinition = true;
66 bool tableNameSpecified = false;
67 bool fieldNameSpecified = false;
68 while ((c = getopt(argc, argv, "U:P:t:f:c:p:RDSsru?")) != EOF)
70 switch (c)
72 case 'U' : { strcpy(username, argv[optind - 1]); opt=10; break; }
73 case 'P' : { strcpy(password, argv[optind - 1]); opt=10; break; }
74 case 't' : { strcpy(tablename, argv[optind - 1]);
75 if (opt==10) opt = 2;
76 tableNameSpecified = true;
77 break;
79 case 'p' : { strcpy(fieldname, argv[optind - 1]);
80 if(opt==2){fieldNameSpecified = true;break;}
83 case 'D' : {
84 if(opt==2) {isDirect=true;break;}
86 case 'c' : {strcpy(condition,argv[optind - 1]); conditionval = true; break; }// condition for selelcted records by :Jitendra
87 case 'f' : {strcpy(fieldlist,argv[optind - 1]);fieldlistval = true ;break; }
88 case '?' : { opt = 10; break; } //print help
89 case 'R' : { opt = 3; break; } //recover all the tables
90 case 's' : { tableDefinition=false; break; } //do not get the schema information from target db
91 case 'r' : { opt = 4; break; } //reload the table
92 case 'u' : { opt = 5; break; } //unload the table
93 default: opt=10;
96 }//while options
97 if (opt == 10) {
98 printUsage();
99 return 0;
102 //printf("%s %s \n", username, password);
103 if (username[0] == '\0' )
105 strcpy(username, "root");
106 strcpy(password, "manager");
108 CacheTableLoader cacheLoader;
109 cacheLoader.setConnParam(username, password);
111 if(conditionval){
112 cacheLoader.setCondition(condition);}// new one
113 if(fieldlistval){
114 cacheLoader.setFieldListVal(fieldlist);}
115 if (opt==2) {
116 cacheLoader.setTable(tablename);
117 if(fieldNameSpecified){ cacheLoader.setFieldName(fieldname); }
118 rv = CacheTableLoader::isTableCached(tablename);
119 if(rv!=OK){
120 rv = cacheLoader.load(tableDefinition);
121 if(rv == OK){
122 cacheLoader.addToCacheTableFile(isDirect);
123 }else exit(2);
124 } else
126 printf("Table is already cached, unload table by \" cachetable -t <tablename> -u\" and then try \n");
127 exit(3);
129 }else if (opt==3) //recover
131 rv = cacheLoader.recoverAllCachedTables();
132 if (rv != OK) exit (1);
133 }else if (opt==4) //reload
135 if (!tableNameSpecified)
137 printf("Table name is not specified. Check usage with ? \n");
138 return 1;
140 cacheLoader.setTable(tablename);
141 rv = cacheLoader.reload();
142 if (rv != OK) exit (1);
143 }else if (opt==5) //unload
145 if (!tableNameSpecified)
147 printf("Table name is not specified. Check usage with ? option\n");
148 return 1;
150 cacheLoader.setTable(tablename);
151 rv = cacheLoader.unload(tableDefinition);
152 if (rv != OK) exit (1);
153 rv = cacheLoader.removeFromCacheTableFile();
154 if (rv != OK) exit (2);
157 return 0;