s3/net: split up some printable stings to ease i18n
[samba.git] / source3 / utils / net_cache.c
1 /*
2    Samba Unix/Linux SMB client library
3    Distributed SMB/CIFS Server Management Utility
4    Copyright (C) Rafal Szczesniak    2002
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 "net.h"
22
23 /**
24  * @file net_cache.c
25  * @brief This is part of the net tool which is basically command
26  *        line wrapper for gencache.c functions (mainly for testing)
27  *
28  **/
29
30
31 /*
32  * These routines are used via gencache_iterate() to display the cache's contents
33  * (print_cache_entry) and to flush it (delete_cache_entry).
34  * Both of them are defined by first arg of gencache_iterate() routine.
35  */
36 static void print_cache_entry(const char* keystr, const char* datastr,
37                               const time_t timeout, void* dptr)
38 {
39         char *timeout_str;
40         char *alloc_str = NULL;
41         time_t now_t = time(NULL);
42         struct tm timeout_tm, *now_tm;
43         /* localtime returns statically allocated pointer, so timeout_tm
44            has to be copied somewhere else */
45
46         now_tm = localtime(&timeout);
47         if (!now_tm) {
48                 return;
49         }
50         memcpy(&timeout_tm, now_tm, sizeof(struct tm));
51         now_tm = localtime(&now_t);
52         if (!now_tm) {
53                 return;
54         }
55
56         /* form up timeout string depending whether it's today's date or not */
57         if (timeout_tm.tm_year != now_tm->tm_year ||
58                         timeout_tm.tm_mon != now_tm->tm_mon ||
59                         timeout_tm.tm_mday != now_tm->tm_mday) {
60
61                 timeout_str = asctime(&timeout_tm);
62                 if (!timeout_str) {
63                         return;
64                 }
65                 timeout_str[strlen(timeout_str) - 1] = '\0';    /* remove tailing CR */
66         } else {
67                 if (asprintf(&alloc_str, "%.2d:%.2d:%.2d", timeout_tm.tm_hour,
68                          timeout_tm.tm_min, timeout_tm.tm_sec) == -1) {
69                         return;
70                 }
71                 timeout_str = alloc_str;
72         }
73
74         d_printf(_("Key: %s\t Timeout: %s\t Value: %s  %s\n"), keystr,
75                  timeout_str, datastr, timeout > now_t ? "": _("(expired)"));
76
77         SAFE_FREE(alloc_str);
78 }
79
80 static void delete_cache_entry(const char* keystr, const char* datastr,
81                                const time_t timeout, void* dptr)
82 {
83         if (!gencache_del(keystr))
84                 d_fprintf(stderr, _("Couldn't delete entry! key = %s\n"),
85                           keystr);
86 }
87
88
89 /**
90  * Parse text representation of timeout value
91  *
92  * @param timeout_str string containing text representation of the timeout
93  * @return numeric timeout of time_t type
94  **/
95 static time_t parse_timeout(const char* timeout_str)
96 {
97         char sign = '\0', *number = NULL, unit = '\0';
98         int len, number_begin, number_end;
99         time_t timeout;
100
101         /* sign detection */
102         if (timeout_str[0] == '!' || timeout_str[0] == '+') {
103                 sign = timeout_str[0];
104                 number_begin = 1;
105         } else {
106                 number_begin = 0;
107         }
108
109         /* unit detection */
110         len = strlen(timeout_str);
111         switch (timeout_str[len - 1]) {
112         case 's':
113         case 'm':
114         case 'h':
115         case 'd':
116         case 'w': unit = timeout_str[len - 1];
117         }
118
119         /* number detection */
120         len = (sign) ? strlen(&timeout_str[number_begin]) : len;
121         number_end = (unit) ? len - 1 : len;
122         number = SMB_STRNDUP(&timeout_str[number_begin], number_end);
123
124         /* calculate actual timeout value */
125         timeout = (time_t)atoi(number);
126
127         switch (unit) {
128         case 'm': timeout *= 60; break;
129         case 'h': timeout *= 60*60; break;
130         case 'd': timeout *= 60*60*24; break;
131         case 'w': timeout *= 60*60*24*7; break;  /* that's fair enough, I think :) */
132         }
133
134         switch (sign) {
135         case '!': timeout = time(NULL) - timeout; break;
136         case '+':
137         default:  timeout += time(NULL); break;
138         }
139
140         if (number) SAFE_FREE(number);
141         return timeout;
142 }
143
144
145 /**
146  * Add an entry to the cache. If it does exist, then set it.
147  *
148  * @param c     A net_context structure
149  * @param argv key, value and timeout are passed in command line
150  * @return 0 on success, otherwise failure
151  **/
152 static int net_cache_add(struct net_context *c, int argc, const char **argv)
153 {
154         const char *keystr, *datastr, *timeout_str;
155         time_t timeout;
156
157         if (argc < 3 || c->display_usage) {
158                 d_printf("\n",_("Usage:\n"),
159                            _("net cache add <key string> <data string> "
160                            "<timeout>\n"));
161                 return -1;
162         }
163
164         keystr = argv[0];
165         datastr = argv[1];
166         timeout_str = argv[2];
167
168         /* parse timeout given in command line */
169         timeout = parse_timeout(timeout_str);
170         if (!timeout) {
171                 d_fprintf(stderr, _("Invalid timeout argument.\n"));
172                 return -1;
173         }
174
175         if (gencache_set(keystr, datastr, timeout)) {
176                 d_printf(_("New cache entry stored successfully.\n"));
177                 return 0;
178         }
179
180         d_fprintf(stderr, _("Entry couldn't be added. Perhaps there's already such a key.\n"));
181         return -1;
182 }
183
184 /**
185  * Delete an entry in the cache
186  *
187  * @param c     A net_context structure
188  * @param argv key to delete an entry of
189  * @return 0 on success, otherwise failure
190  **/
191 static int net_cache_del(struct net_context *c, int argc, const char **argv)
192 {
193         const char *keystr = argv[0];
194
195         if (argc < 1 || c->display_usage) {
196                 d_printf("\n",_("Usage:"), _(" net cache del <key string>\n"));
197                 return -1;
198         }
199
200         if(gencache_del(keystr)) {
201                 d_printf(_("Entry deleted.\n"));
202                 return 0;
203         }
204
205         d_fprintf(stderr, _("Couldn't delete specified entry\n"));
206         return -1;
207 }
208
209
210 /**
211  * Get and display an entry from the cache
212  *
213  * @param c     A net_context structure
214  * @param argv key to search an entry of
215  * @return 0 on success, otherwise failure
216  **/
217 static int net_cache_get(struct net_context *c, int argc, const char **argv)
218 {
219         const char* keystr = argv[0];
220         char* valuestr = NULL;
221         time_t timeout;
222
223         if (argc < 1 || c->display_usage) {
224                 d_printf("\n", _("Usage:"), _(" net cache get <key>\n"));
225                 return -1;
226         }
227
228         if (gencache_get(keystr, &valuestr, &timeout)) {
229                 print_cache_entry(keystr, valuestr, timeout, NULL);
230                 SAFE_FREE(valuestr);
231                 return 0;
232         }
233
234         d_fprintf(stderr, _("Failed to find entry\n"));
235         return -1;
236 }
237
238
239 /**
240  * Search an entry/entries in the cache
241  *
242  * @param c     A net_context structure
243  * @param argv key pattern to match the entries to
244  * @return 0 on success, otherwise failure
245  **/
246 static int net_cache_search(struct net_context *c, int argc, const char **argv)
247 {
248         const char* pattern;
249
250         if (argc < 1 || c->display_usage) {
251                 d_printf(_("Usage:"), _(" net cache search <pattern>\n"));
252                 return -1;
253         }
254
255         pattern = argv[0];
256         gencache_iterate(print_cache_entry, NULL, pattern);
257         return 0;
258 }
259
260
261 /**
262  * List the contents of the cache
263  *
264  * @param c     A net_context structure
265  * @param argv ignored in this functionailty
266  * @return always returns 0
267  **/
268 static int net_cache_list(struct net_context *c, int argc, const char **argv)
269 {
270         const char* pattern = "*";
271
272         if (c->display_usage) {
273                 d_printf(_("Usage:\n"),
274                            "net cache list\n"
275                            "    ", _("List all cache entries.\n"));
276                 return 0;
277         }
278         gencache_iterate(print_cache_entry, NULL, pattern);
279         return 0;
280 }
281
282
283 /**
284  * Flush the whole cache
285  *
286  * @param c     A net_context structure
287  * @param argv ignored in this functionality
288  * @return always returns 0
289  **/
290 static int net_cache_flush(struct net_context *c, int argc, const char **argv)
291 {
292         const char* pattern = "*";
293         if (c->display_usage) {
294                 d_printf(_("Usage:\n"),
295                            "net cache flush\n"
296                            "    ", _("Delete all cache entries.\n"));
297                 return 0;
298         }
299         gencache_iterate(delete_cache_entry, NULL, pattern);
300         return 0;
301 }
302
303 static int net_cache_stabilize(struct net_context *c, int argc,
304                                const char **argv)
305 {
306         if (c->display_usage) {
307                 d_printf(_("Usage:\n"),
308                            "net cache flush\n"
309                            "    ", _("Delete all cache entries.\n"));
310                 return 0;
311         }
312
313         if (!gencache_stabilize()) {
314                 return -1;
315         }
316         return 0;
317 }
318 /**
319  * Entry point to 'net cache' subfunctionality
320  *
321  * @param c     A net_context structure
322  * @param argv arguments passed to further called functions
323  * @return whatever further functions return
324  **/
325 int net_cache(struct net_context *c, int argc, const char **argv)
326 {
327         struct functable func[] = {
328                 {
329                         "add",
330                         net_cache_add,
331                         NET_TRANSPORT_LOCAL,
332                         N_("Add new cache entry"),
333                         N_("net cache add <key string> <data string> <timeout>\n"
334                            "  Add new cache entry.\n"
335                            "    key string\tKey string to add cache data under.\n"
336                            "    data string\tData to store under given key.\n"
337                            "    timeout\tTimeout for cache data.")
338                 },
339                 {
340                         "del",
341                         net_cache_del,
342                         NET_TRANSPORT_LOCAL,
343                         N_("Delete existing cache entry by key"),
344                         N_("net cache del <key string>\n"
345                            "  Delete existing cache entry by key.\n"
346                            "    key string\tKey string to delete.")
347                 },
348                 {
349                         "get",
350                         net_cache_get,
351                         NET_TRANSPORT_LOCAL,
352                         N_("Get cache entry by key"),
353                         N_("net cache get <key string>\n"
354                            "  Get cache entry by key.\n"
355                            "    key string\tKey string to look up cache entry for.")
356
357                 },
358                 {
359                         "search",
360                         net_cache_search,
361                         NET_TRANSPORT_LOCAL,
362                         N_("Search entry by pattern"),
363                         N_("net cache search <pattern>\n"
364                            "  Search entry by pattern.\n"
365                            "    pattern\tPattern to search for in cache.")
366                 },
367                 {
368                         "list",
369                         net_cache_list,
370                         NET_TRANSPORT_LOCAL,
371                         N_("List all cache entries"),
372                         N_("net cache list\n"
373                            "  List all cache entries")
374                 },
375                 {
376                         "flush",
377                         net_cache_flush,
378                         NET_TRANSPORT_LOCAL,
379                         N_("Delete all cache entries"),
380                         N_("net cache flush\n"
381                            "  Delete all cache entries")
382                 },
383                 {
384                         "stabilize",
385                         net_cache_stabilize,
386                         NET_TRANSPORT_LOCAL,
387                         N_("Move transient cache content to stable storage"),
388                         N_("net cache stabilize\n"
389                            "  Move transient cache content to stable storage")
390                 },
391                 {NULL, NULL, 0, NULL, NULL}
392         };
393
394         return net_run_function(c, argc, argv, "net cache", func);
395 }