2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) Rafal Szczesniak 2002
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.
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.
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/>.
25 * @brief This is part of the net tool which is basically command
26 * line wrapper for gencache.c functions (mainly for testing)
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.
36 static void print_cache_entry(const char* keystr
, const char* datastr
,
37 const time_t timeout
, void* dptr
)
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 */
46 now_tm
= localtime(&timeout
);
50 memcpy(&timeout_tm
, now_tm
, sizeof(struct tm
));
51 now_tm
= localtime(&now_t
);
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
) {
61 timeout_str
= asctime(&timeout_tm
);
65 timeout_str
[strlen(timeout_str
) - 1] = '\0'; /* remove tailing CR */
67 if (asprintf(&alloc_str
, "%.2d:%.2d:%.2d", timeout_tm
.tm_hour
,
68 timeout_tm
.tm_min
, timeout_tm
.tm_sec
) == -1) {
71 timeout_str
= alloc_str
;
74 d_printf(_("Key: %s\t Timeout: %s\t Value: %s %s\n"), keystr
,
75 timeout_str
, datastr
, timeout
> now_t
? "": _("(expired)"));
80 static void delete_cache_entry(const char* keystr
, const char* datastr
,
81 const time_t timeout
, void* dptr
)
83 if (!gencache_del(keystr
))
84 d_fprintf(stderr
, _("Couldn't delete entry! key = %s\n"),
90 * Parse text representation of timeout value
92 * @param timeout_str string containing text representation of the timeout
93 * @return numeric timeout of time_t type
95 static time_t parse_timeout(const char* timeout_str
)
97 char sign
= '\0', *number
= NULL
, unit
= '\0';
98 int len
, number_begin
, number_end
;
102 if (timeout_str
[0] == '!' || timeout_str
[0] == '+') {
103 sign
= timeout_str
[0];
110 len
= strlen(timeout_str
);
111 switch (timeout_str
[len
- 1]) {
116 case 'w': unit
= timeout_str
[len
- 1];
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
);
124 /* calculate actual timeout value */
125 timeout
= (time_t)atoi(number
);
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 :) */
135 case '!': timeout
= time(NULL
) - timeout
; break;
137 default: timeout
+= time(NULL
); break;
140 if (number
) SAFE_FREE(number
);
146 * Add an entry to the cache. If it does exist, then set it.
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
152 static int net_cache_add(struct net_context
*c
, int argc
, const char **argv
)
154 const char *keystr
, *datastr
, *timeout_str
;
157 if (argc
< 3 || c
->display_usage
) {
160 _("net cache add <key string> <data string> "
167 timeout_str
= argv
[2];
169 /* parse timeout given in command line */
170 timeout
= parse_timeout(timeout_str
);
172 d_fprintf(stderr
, _("Invalid timeout argument.\n"));
176 if (gencache_set(keystr
, datastr
, timeout
)) {
177 d_printf(_("New cache entry stored successfully.\n"));
181 d_fprintf(stderr
, _("Entry couldn't be added. Perhaps there's already such a key.\n"));
186 * Delete an entry in the cache
188 * @param c A net_context structure
189 * @param argv key to delete an entry of
190 * @return 0 on success, otherwise failure
192 static int net_cache_del(struct net_context
*c
, int argc
, const char **argv
)
194 const char *keystr
= argv
[0];
196 if (argc
< 1 || c
->display_usage
) {
199 _(" net cache del <key string>\n"));
203 if(gencache_del(keystr
)) {
204 d_printf(_("Entry deleted.\n"));
208 d_fprintf(stderr
, _("Couldn't delete specified entry\n"));
214 * Get and display an entry from the cache
216 * @param c A net_context structure
217 * @param argv key to search an entry of
218 * @return 0 on success, otherwise failure
220 static int net_cache_get(struct net_context
*c
, int argc
, const char **argv
)
222 const char* keystr
= argv
[0];
223 char* valuestr
= NULL
;
226 if (argc
< 1 || c
->display_usage
) {
229 _(" net cache get <key>\n"));
233 if (gencache_get(keystr
, &valuestr
, &timeout
)) {
234 print_cache_entry(keystr
, valuestr
, timeout
, NULL
);
239 d_fprintf(stderr
, _("Failed to find entry\n"));
245 * Search an entry/entries in the cache
247 * @param c A net_context structure
248 * @param argv key pattern to match the entries to
249 * @return 0 on success, otherwise failure
251 static int net_cache_search(struct net_context
*c
, int argc
, const char **argv
)
255 if (argc
< 1 || c
->display_usage
) {
258 _(" net cache search <pattern>\n"));
263 gencache_iterate(print_cache_entry
, NULL
, pattern
);
269 * List the contents of the cache
271 * @param c A net_context structure
272 * @param argv ignored in this functionailty
273 * @return always returns 0
275 static int net_cache_list(struct net_context
*c
, int argc
, const char **argv
)
277 const char* pattern
= "*";
279 if (c
->display_usage
) {
284 _("List all cache entries."));
287 gencache_iterate(print_cache_entry
, NULL
, pattern
);
293 * Flush the whole cache
295 * @param c A net_context structure
296 * @param argv ignored in this functionality
297 * @return always returns 0
299 static int net_cache_flush(struct net_context
*c
, int argc
, const char **argv
)
301 const char* pattern
= "*";
302 if (c
->display_usage
) {
307 _("Delete all cache entries."));
310 gencache_iterate(delete_cache_entry
, NULL
, pattern
);
314 static int net_cache_stabilize(struct net_context
*c
, int argc
,
317 if (c
->display_usage
) {
319 "net cache stabilize\n"
322 _("Move transient cache content to stable storage"));
326 if (!gencache_stabilize()) {
332 * Entry point to 'net cache' subfunctionality
334 * @param c A net_context structure
335 * @param argv arguments passed to further called functions
336 * @return whatever further functions return
338 int net_cache(struct net_context
*c
, int argc
, const char **argv
)
340 struct functable func
[] = {
345 N_("Add new cache entry"),
346 N_("net cache add <key string> <data string> <timeout>\n"
347 " Add new cache entry.\n"
348 " key string\tKey string to add cache data under.\n"
349 " data string\tData to store under given key.\n"
350 " timeout\tTimeout for cache data.")
356 N_("Delete existing cache entry by key"),
357 N_("net cache del <key string>\n"
358 " Delete existing cache entry by key.\n"
359 " key string\tKey string to delete.")
365 N_("Get cache entry by key"),
366 N_("net cache get <key string>\n"
367 " Get cache entry by key.\n"
368 " key string\tKey string to look up cache entry for.")
375 N_("Search entry by pattern"),
376 N_("net cache search <pattern>\n"
377 " Search entry by pattern.\n"
378 " pattern\tPattern to search for in cache.")
384 N_("List all cache entries"),
385 N_("net cache list\n"
386 " List all cache entries")
392 N_("Delete all cache entries"),
393 N_("net cache flush\n"
394 " Delete all cache entries")
400 N_("Move transient cache content to stable storage"),
401 N_("net cache stabilize\n"
402 " Move transient cache content to stable storage")
404 {NULL
, NULL
, 0, NULL
, NULL
}
407 return net_run_function(c
, argc
, argv
, "net cache", func
);