]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_select.c
Misc ...
[bacula/bacula] / bacula / src / dird / ua_select.c
1 /*
2  *
3  *   Bacula Director -- User Agent Prompt and Selection code
4  *
5  *     Kern Sibbald, October MMI
6  *
7  *   Version  $Id$
8  */
9
10 /*
11    Copyright (C) 2000-2003 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "dird.h"
32
33 /* Imported variables */
34
35
36 /*
37  * Confirm a retention period
38  */
39 int confirm_retention(UAContext *ua, utime_t *ret, char *msg)
40 {
41    char ed1[30];
42
43    for ( ;; ) {
44        bsendmsg(ua, _("The current %s retention period is: %s\n"), 
45           msg, edit_utime(*ret, ed1));
46        if (!get_cmd(ua, _("Continue? (yes/mod/no): "))) {
47           return 0;
48        }
49        if (strcasecmp(ua->cmd, _("mod")) == 0) {
50           if (!get_cmd(ua, _("Enter new retention period: "))) {
51              return 0;
52           }
53           if (!duration_to_utime(ua->cmd, ret)) {
54              bsendmsg(ua, _("Invalid period.\n"));
55              continue;
56           }
57           continue;
58        }
59        if (strcasecmp(ua->cmd, _("yes")) == 0) {
60           return 1;
61        }
62        if (strcasecmp(ua->cmd, _("no")) == 0) {
63           return 0;
64        }
65     }
66     return 1;
67 }
68
69 /* 
70  * Given a list of keywords, find the first one
71  *  that is in the argument list.
72  * Returns: -1 if not found
73  *          index into list (base 0) on success
74  */
75 int find_arg_keyword(UAContext *ua, char **list)
76 {
77    for (int i=1; i<ua->argc; i++) {
78       for(int j=0; list[j]; j++) {
79          if (strcasecmp(_(list[j]), ua->argk[i]) == 0) {
80             return j;
81          }
82       }
83    }
84    return -1;
85 }
86
87 /* 
88  * Given one keyword, find the first one that
89  *   is in the argument list.
90  * Returns: argk index (always gt 0)
91  *          -1 if not found
92  */
93 int find_arg(UAContext *ua, char *keyword)
94 {
95    for (int i=1; i<ua->argc; i++) {
96       if (strcasecmp(keyword, ua->argk[i]) == 0) {
97          return i;
98       }
99    }
100    return -1;
101 }
102
103 /* 
104  * Given a single keyword, find it in the argument list, but
105  *   it must have a value
106  * Returns: -1 if not found or no value
107  *           list index (base 0) on success
108  */
109 int find_arg_with_value(UAContext *ua, char *keyword)
110 {
111    for (int i=1; i<ua->argc; i++) {
112       if (strcasecmp(keyword, ua->argk[i]) == 0) {
113          if (ua->argv[i]) {
114             return i;
115          } else {
116             return -1;
117          }
118       }
119    }
120    return -1;
121 }
122
123 /* 
124  * Given a list of keywords, prompt the user 
125  * to choose one.
126  *
127  * Returns: -1 on failure
128  *          index into list (base 0) on success
129  */
130 int do_keyword_prompt(UAContext *ua, char *msg, char **list)
131 {
132    int i;
133    start_prompt(ua, _("You have the following choices:\n"));
134    for (i=0; list[i]; i++) {
135       add_prompt(ua, list[i]);
136    }
137    return do_prompt(ua, "", msg, NULL, 0);
138 }
139
140
141 /* 
142  * Select a Storage resource from prompt list
143  */
144 STORE *select_storage_resource(UAContext *ua)
145 {
146    char name[MAX_NAME_LENGTH];    
147    STORE *store;
148
149    start_prompt(ua, _("The defined Storage resources are:\n"));
150    LockRes();
151    foreach_res(store, R_STORAGE) {
152       add_prompt(ua, store->hdr.name);
153    }
154    UnlockRes();
155    do_prompt(ua, _("Storage"),  _("Select Storage resource"), name, sizeof(name));
156    store = (STORE *)GetResWithName(R_STORAGE, name);
157    return store;
158 }
159
160 /* 
161  * Select a FileSet resource from prompt list
162  */
163 FILESET *select_fileset_resource(UAContext *ua)
164 {
165    char name[MAX_NAME_LENGTH];    
166    FILESET *fs;
167
168    start_prompt(ua, _("The defined FileSet resources are:\n"));
169    LockRes();
170    foreach_res(fs, R_FILESET) {
171       add_prompt(ua, fs->hdr.name);
172    }
173    UnlockRes();
174    do_prompt(ua, _("FileSet"), _("Select FileSet resource"), name, sizeof(name));
175    fs = (FILESET *)GetResWithName(R_FILESET, name);
176    return fs;
177 }
178
179
180 /* 
181  * Get a catalog resource from prompt list
182  */
183 CAT *get_catalog_resource(UAContext *ua)
184 {
185    char name[MAX_NAME_LENGTH];    
186    CAT *catalog = NULL;
187    int i;
188
189    for (i=1; i<ua->argc; i++) {
190       if (strcasecmp(ua->argk[i], _("catalog")) == 0 && ua->argv[i]) {
191          catalog = (CAT *)GetResWithName(R_CATALOG, ua->argv[i]);
192          break;
193       }
194    }
195    if (!catalog) {
196       start_prompt(ua, _("The defined Catalog resources are:\n"));
197       LockRes();
198       foreach_res(catalog, R_CATALOG) {
199          add_prompt(ua, catalog->hdr.name);
200       }
201       UnlockRes();
202       do_prompt(ua, _("Catalog"),  _("Select Catalog resource"), name, sizeof(name));
203       catalog = (CAT *)GetResWithName(R_CATALOG, name);
204    }
205    return catalog;
206 }
207
208
209 /* 
210  * Select a Job resource from prompt list
211  */
212 JOB *select_job_resource(UAContext *ua)
213 {
214    char name[MAX_NAME_LENGTH];    
215    JOB *job;
216
217    start_prompt(ua, _("The defined Job resources are:\n"));
218    LockRes();
219    foreach_res(job, R_JOB) {
220       add_prompt(ua, job->hdr.name);
221    }
222    UnlockRes();
223    do_prompt(ua, _("Job"), _("Select Job resource"), name, sizeof(name));
224    job = (JOB *)GetResWithName(R_JOB, name);
225    return job;
226 }
227
228 /* 
229  * Select a Restore Job resource from prompt list
230  */
231 JOB *select_restore_job_resource(UAContext *ua)
232 {
233    char name[MAX_NAME_LENGTH];    
234    JOB *job;
235
236    start_prompt(ua, _("The defined Restore Job resources are:\n"));
237    LockRes();
238    foreach_res(job, R_JOB) {
239       if (job->JobType == JT_RESTORE) {
240          add_prompt(ua, job->hdr.name);
241       }
242    }
243    UnlockRes();
244    do_prompt(ua, _("Job"), _("Select Restore Job"), name, sizeof(name));
245    job = (JOB *)GetResWithName(R_JOB, name);
246    return job;
247 }
248
249
250
251 /* 
252  * Select a client resource from prompt list
253  */
254 CLIENT *select_client_resource(UAContext *ua)
255 {
256    char name[MAX_NAME_LENGTH];    
257    CLIENT *client;
258
259    start_prompt(ua, _("The defined Client resources are:\n"));
260    LockRes();
261    foreach_res(client, R_CLIENT) {
262       add_prompt(ua, client->hdr.name);
263    }
264    UnlockRes();
265    do_prompt(ua, _("Client"),  _("Select Client (File daemon) resource"), name, sizeof(name));
266    client = (CLIENT *)GetResWithName(R_CLIENT, name);
267    return client;
268 }
269
270 /*
271  *  Get client resource, start by looking for
272  *   client=<client-name>
273  *  if we don't find the keyword, we prompt the user.
274  */
275 CLIENT *get_client_resource(UAContext *ua)
276 {
277    CLIENT *client = NULL;
278    int i;
279    
280    for (i=1; i<ua->argc; i++) {
281       if ((strcasecmp(ua->argk[i], _("client")) == 0 ||
282            strcasecmp(ua->argk[i], _("fd")) == 0) && ua->argv[i]) {
283          client = (CLIENT *)GetResWithName(R_CLIENT, ua->argv[i]);
284          if (client) {
285             return client;
286          }
287          bsendmsg(ua, _("Error: Client resource %s does not exist.\n"), ua->argv[i]);
288          break;
289       }
290    }
291    return select_client_resource(ua);
292 }
293
294 /* Scan what the user has entered looking for:
295  * 
296  *  client=<client-name>
297  *
298  *  if error or not found, put up a list of client DBRs
299  *  to choose from.
300  *
301  *   returns: 0 on error
302  *            1 on success and fills in CLIENT_DBR
303  */
304 int get_client_dbr(UAContext *ua, CLIENT_DBR *cr)
305 {
306    int i;
307
308    if (cr->Name[0]) {                 /* If name already supplied */
309       if (db_get_client_record(ua->jcr, ua->db, cr)) {
310          return 1;
311       }
312       bsendmsg(ua, _("Could not find Client %s: ERR=%s"), cr->Name, db_strerror(ua->db));
313    }
314    for (i=1; i<ua->argc; i++) {
315       if ((strcasecmp(ua->argk[i], _("client")) == 0 ||               
316            strcasecmp(ua->argk[i], _("fd")) == 0) && ua->argv[i]) {
317          bstrncpy(cr->Name, ua->argv[i], sizeof(cr->Name));
318          if (!db_get_client_record(ua->jcr, ua->db, cr)) {
319             bsendmsg(ua, _("Could not find Client \"%s\": ERR=%s"), ua->argv[i],
320                      db_strerror(ua->db));
321             cr->ClientId = 0;
322             break;
323          }
324          return 1;
325       }
326    }
327    if (!select_client_dbr(ua, cr)) {  /* try once more by proposing a list */
328       return 0;
329    }
330    return 1;
331 }
332
333 /*
334  * Select a Client record from the catalog
335  *  Returns 1 on success
336  *          0 on failure
337  */
338 int select_client_dbr(UAContext *ua, CLIENT_DBR *cr)
339 {
340    CLIENT_DBR ocr;
341    char name[MAX_NAME_LENGTH];
342    int num_clients, i;
343    uint32_t *ids; 
344
345
346    cr->ClientId = 0;
347    if (!db_get_client_ids(ua->jcr, ua->db, &num_clients, &ids)) {
348       bsendmsg(ua, _("Error obtaining client ids. ERR=%s\n"), db_strerror(ua->db));
349       return 0;
350    }
351    if (num_clients <= 0) {
352       bsendmsg(ua, _("No clients defined. You must run a job before using this command.\n"));
353       return 0;
354    }
355      
356    start_prompt(ua, _("Defined Clients:\n"));
357    for (i=0; i < num_clients; i++) {
358       ocr.ClientId = ids[i];
359       if (!db_get_client_record(ua->jcr, ua->db, &ocr)) {
360          continue;
361       }
362       add_prompt(ua, ocr.Name);
363    }
364    free(ids);
365    if (do_prompt(ua, _("Client"),  _("Select the Client"), name, sizeof(name)) < 0) {
366       return 0;
367    }
368    memset(&ocr, 0, sizeof(ocr));
369    bstrncpy(ocr.Name, name, sizeof(ocr.Name));
370
371    if (!db_get_client_record(ua->jcr, ua->db, &ocr)) {
372       bsendmsg(ua, _("Could not find Client \"%s\": ERR=%s"), name, db_strerror(ua->db));
373       return 0;
374    }
375    memcpy(cr, &ocr, sizeof(ocr));
376    return 1;
377 }
378
379
380
381 /* Scan what the user has entered looking for:
382  * 
383  *  pool=<pool-name>   
384  *
385  *  if error or not found, put up a list of pool DBRs
386  *  to choose from.
387  *
388  *   returns: 0 on error
389  *            1 on success and fills in POOL_DBR
390  */
391 int get_pool_dbr(UAContext *ua, POOL_DBR *pr)
392 {
393    if (pr->Name[0]) {                 /* If name already supplied */
394       if (db_get_pool_record(ua->jcr, ua->db, pr)) {
395          return pr->PoolId;
396       }
397       bsendmsg(ua, _("Could not find Pool \"%s\": ERR=%s"), pr->Name, db_strerror(ua->db));
398    }
399    if (!select_pool_dbr(ua, pr)) {  /* try once more */
400       return 0;
401    }
402    return 1;
403 }
404
405 /*
406  * Select a Pool record from the catalog
407  */
408 int select_pool_dbr(UAContext *ua, POOL_DBR *pr)
409 {
410    POOL_DBR opr;
411    char name[MAX_NAME_LENGTH];
412    int num_pools, i;
413    uint32_t *ids; 
414
415    for (i=1; i<ua->argc; i++) {
416       if (strcasecmp(ua->argk[i], _("pool")) == 0 && ua->argv[i]) {
417          bstrncpy(pr->Name, ua->argv[i], sizeof(pr->Name));
418          if (!db_get_pool_record(ua->jcr, ua->db, pr)) {
419             bsendmsg(ua, _("Could not find Pool \"%s\": ERR=%s"), ua->argv[i],
420                      db_strerror(ua->db));
421             pr->PoolId = 0;
422             break;
423          }
424          return 1;
425       }
426    }
427
428    pr->PoolId = 0;
429    if (!db_get_pool_ids(ua->jcr, ua->db, &num_pools, &ids)) {
430       bsendmsg(ua, _("Error obtaining pool ids. ERR=%s\n"), db_strerror(ua->db));
431       return 0;
432    }
433    if (num_pools <= 0) {
434       bsendmsg(ua, _("No pools defined. Use the \"create\" command to create one.\n"));
435       return 0;
436    }
437      
438    start_prompt(ua, _("Defined Pools:\n"));
439    for (i=0; i < num_pools; i++) {
440       opr.PoolId = ids[i];
441       if (!db_get_pool_record(ua->jcr, ua->db, &opr)) {
442          continue;
443       }
444       add_prompt(ua, opr.Name);
445    }
446    free(ids);
447    if (do_prompt(ua, _("Pool"),  _("Select the Pool"), name, sizeof(name)) < 0) {
448       return 0;
449    }
450    memset(&opr, 0, sizeof(opr));
451    bstrncpy(opr.Name, name, sizeof(opr.Name));
452
453    if (!db_get_pool_record(ua->jcr, ua->db, &opr)) {
454       bsendmsg(ua, _("Could not find Pool \"%s\": ERR=%s"), name, db_strerror(ua->db));
455       return 0;
456    }
457    memcpy(pr, &opr, sizeof(opr));
458    return 1;
459 }
460
461 /*
462  * Select a Pool and a Media (Volume) record from the database
463  */
464 int select_pool_and_media_dbr(UAContext *ua, POOL_DBR *pr, MEDIA_DBR *mr)
465 {
466
467    if (!select_media_dbr(ua, mr)) {
468       return 0;
469    }
470    memset(pr, 0, sizeof(POOL_DBR));
471    pr->PoolId = mr->PoolId;
472    if (!db_get_pool_record(ua->jcr, ua->db, pr)) {
473       bsendmsg(ua, "%s", db_strerror(ua->db));
474       return 0;
475    }
476    return 1;
477 }
478
479 /* Select a Media (Volume) record from the database */
480 int select_media_dbr(UAContext *ua, MEDIA_DBR *mr)
481 {
482    int i;
483
484    memset(mr, 0, sizeof(MEDIA_DBR));
485
486    i = find_arg_with_value(ua, "volume");
487    if (i >= 0) {
488       bstrncpy(mr->VolumeName, ua->argv[i], sizeof(mr->VolumeName));
489    }
490    if (mr->VolumeName[0] == 0) {
491       POOL_DBR pr;
492       memset(&pr, 0, sizeof(pr));
493       /* Get the pool from pool=<pool-name> */
494       if (!get_pool_dbr(ua, &pr)) {
495          return 0;
496       }
497       mr->PoolId = pr.PoolId;
498       db_list_media_records(ua->jcr, ua->db, mr, prtit, ua, HORZ_LIST);
499       if (!get_cmd(ua, _("Enter MediaId or Volume name: "))) {
500          return 0;
501       }
502       if (is_a_number(ua->cmd)) {
503          mr->MediaId = atoi(ua->cmd);
504       } else {
505          bstrncpy(mr->VolumeName, ua->cmd, sizeof(mr->VolumeName));
506       }
507    }
508
509    if (!db_get_media_record(ua->jcr, ua->db, mr)) {
510       bsendmsg(ua, "%s", db_strerror(ua->db));
511       return 0;
512    }
513    return 1;
514 }
515
516
517 /* 
518  * Select a pool resource from prompt list
519  */
520 POOL *select_pool_resource(UAContext *ua)
521 {
522    char name[MAX_NAME_LENGTH];    
523    POOL *pool;
524
525    start_prompt(ua, _("The defined Pool resources are:\n"));
526    LockRes();
527    foreach_res(pool, R_POOL) {
528       add_prompt(ua, pool->hdr.name);
529    }
530    UnlockRes();
531    do_prompt(ua, _("Pool"), _("Select Pool resource"), name, sizeof(name));
532    pool = (POOL *)GetResWithName(R_POOL, name);
533    return pool;
534 }
535
536
537 /*
538  *  If you are thinking about using it, you
539  *  probably want to use select_pool_dbr() 
540  *  or get_pool_dbr() above.
541  */
542 POOL *get_pool_resource(UAContext *ua)
543 {
544    POOL *pool = NULL;
545    int i;
546    
547    i = find_arg_with_value(ua, "pool");
548    if (i >= 0) {
549       pool = (POOL *)GetResWithName(R_POOL, ua->argv[i]);
550       if (pool) {
551          return pool;
552       }
553       bsendmsg(ua, _("Error: Pool resource \"%s\" does not exist.\n"), ua->argv[i]);
554    }
555    return select_pool_resource(ua);
556 }
557
558 /*
559  * List all jobs and ask user to select one
560  */
561 int select_job_dbr(UAContext *ua, JOB_DBR *jr)
562 {
563    db_list_job_records(ua->jcr, ua->db, jr, prtit, ua, HORZ_LIST);
564    if (!get_pint(ua, _("Enter the JobId to select: "))) {
565       return 0;
566    }
567    jr->JobId = ua->pint32_val;
568    if (!db_get_job_record(ua->jcr, ua->db, jr)) {
569       bsendmsg(ua, "%s", db_strerror(ua->db));
570       return 0;
571    }
572    return jr->JobId;
573
574 }
575
576
577 /* Scan what the user has entered looking for:
578  * 
579  *  jobid=nn
580  *
581  *  if error or not found, put up a list of Jobs
582  *  to choose from.
583  *
584  *   returns: 0 on error
585  *            JobId on success and fills in JOB_DBR
586  */
587 int get_job_dbr(UAContext *ua, JOB_DBR *jr)
588 {
589    int i;
590
591    for (i=1; i<ua->argc; i++) {
592       if (strcasecmp(ua->argk[i], _("job")) == 0 && ua->argv[i]) {
593          jr->JobId = 0;
594          bstrncpy(jr->Job, ua->argv[i], sizeof(jr->Job));
595       } else if (strcasecmp(ua->argk[i], _("jobid")) == 0 && ua->argv[i]) {
596          jr->JobId = atoi(ua->argv[i]);
597       } else {
598          continue;
599       }
600       if (!db_get_job_record(ua->jcr, ua->db, jr)) {
601          bsendmsg(ua, _("Could not find Job \"%s\": ERR=%s"), ua->argv[i],
602                   db_strerror(ua->db));
603          jr->JobId = 0;
604          break;
605       }
606       return jr->JobId;
607    }
608
609    if (!select_job_dbr(ua, jr)) {  /* try once more */
610       return 0;
611    }
612    return jr->JobId;
613 }
614
615 /*
616  * Implement unique set of prompts 
617  */
618 void start_prompt(UAContext *ua, char *msg)
619 {
620   if (ua->max_prompts == 0) {
621      ua->max_prompts = 10;
622      ua->prompt = (char **)bmalloc(sizeof(char *) * ua->max_prompts);
623   }
624   ua->num_prompts = 1;
625   ua->prompt[0] = bstrdup(msg);
626 }
627
628 /*
629  * Add to prompts -- keeping them unique 
630  */
631 void add_prompt(UAContext *ua, char *prompt)
632 {
633    int i;
634    if (ua->num_prompts == ua->max_prompts) {
635       ua->max_prompts *= 2;
636       ua->prompt = (char **)brealloc(ua->prompt, sizeof(char *) *
637          ua->max_prompts);
638     }
639     for (i=1; i < ua->num_prompts; i++) {
640        if (strcmp(ua->prompt[i], prompt) == 0) {
641           return;
642        }
643     }
644     ua->prompt[ua->num_prompts++] = bstrdup(prompt);
645 }
646
647 /*
648  * Display prompts and get user's choice
649  *
650  *  Returns: -1 on error
651  *            index base 0 on success, and choice
652  *               is copied to prompt if not NULL
653  */
654 int do_prompt(UAContext *ua, char *automsg, char *msg, char *prompt, int max_prompt)
655 {
656    int i, item;
657    char pmsg[MAXSTRING];
658
659    if (ua->num_prompts == 2) {
660       item = 1;
661       if (prompt) {
662          bstrncpy(prompt, ua->prompt[1], max_prompt);
663       }
664       bsendmsg(ua, _("Automatically selected %s: %s\n"), automsg, ua->prompt[1]);
665       goto done;
666    }
667    bsendmsg(ua, ua->prompt[0]);
668    for (i=1; i < ua->num_prompts; i++) {
669       bsendmsg(ua, "%6d: %s\n", i, ua->prompt[i]);
670    }
671
672    if (prompt) {
673       *prompt = 0;
674    }
675
676    for ( ;; ) {
677       /* First item is the prompt string, not the items */
678       if (ua->num_prompts == 1) { 
679          bsendmsg(ua, _("Selection is empty!\n"));
680          item = 0;                    /* list is empty ! */
681          break;
682       }
683       if (ua->num_prompts == 2) {
684          item = 1;
685          bsendmsg(ua, _("Item 1 selected automatically.\n"));
686          if (prompt) {
687             bstrncpy(prompt, ua->prompt[1], max_prompt);
688          }
689          break;
690       } else {
691          sprintf(pmsg, "%s (1-%d): ", msg, ua->num_prompts-1);
692       }
693       /* Either a . or an @ will get you out of the loop */
694       if (!get_pint(ua, pmsg)) {
695          item = -1;                   /* error */
696          bsendmsg(ua, _("Selection aborted, nothing done.\n"));
697          break;
698       }
699       item = ua->pint32_val;
700       if (item < 1 || item >= ua->num_prompts) {
701          bsendmsg(ua, _("Please enter a number between 1 and %d\n"), ua->num_prompts-1);
702          continue;
703       }
704       if (prompt) {
705          bstrncpy(prompt, ua->prompt[item], max_prompt);
706       }
707       break;
708    }
709                               
710 done:
711    for (i=0; i < ua->num_prompts; i++) {
712       free(ua->prompt[i]);
713    }
714    ua->num_prompts = 0;
715    return item - 1;
716 }
717
718
719 /*
720  * We scan what the user has entered looking for
721  *    storage=<storage-resource>
722  *    job=<job_name>
723  *    jobid=<jobid>
724  *    ?              (prompt him with storage list)
725  *    <some-error>   (prompt him with storage list)
726  *
727  * If use_default is set, we assume that any keyword without a value
728  *   is the name of the Storage resource wanted.
729  */
730 STORE *get_storage_resource(UAContext *ua, int use_default)
731 {
732    char *store_name = NULL;
733    STORE *store = NULL;
734    int jobid;
735    JCR *jcr;
736    int i;
737       
738
739    for (i=1; i<ua->argc; i++) {
740       if (use_default && !ua->argv[i]) {
741          /* Ignore scan and barcode(s) keywords */
742          if (strncasecmp("scan", ua->argk[i], 4) == 0 ||
743              strncasecmp("barcode", ua->argk[i], 7) == 0) {
744             continue;
745          }
746          /* Default argument is storage */
747          if (store_name) {
748             bsendmsg(ua, _("Storage name given twice.\n"));
749             return NULL;
750          }
751          store_name = ua->argk[i];
752          if (*store_name == '?') {
753             *store_name = 0;
754             break;
755          }
756       } else {
757          if (strcasecmp(ua->argk[i], _("storage")) == 0 ||
758              strcasecmp(ua->argk[i], _("sd")) == 0) {
759             store_name = ua->argv[i];
760             break;
761
762          } else if (strcasecmp(ua->argk[i], _("jobid")) == 0) {
763             jobid = atoi(ua->argv[i]);
764             if (jobid <= 0) {
765                bsendmsg(ua, _("Expecting jobid=nn command, got: %s\n"), ua->argk[i]);
766                return NULL;
767             }
768             if (!(jcr=get_jcr_by_id(jobid))) {
769                bsendmsg(ua, _("JobId %d is not running.\n"), jobid);
770                return NULL;
771             }
772             store = jcr->store;
773             free_jcr(jcr);
774             break;
775
776          } else if (strcasecmp(ua->argk[i], _("job")) == 0) {
777             if (!(jcr=get_jcr_by_partial_name(ua->argv[i]))) {
778                bsendmsg(ua, _("Job \"%s\" is not running.\n"), ua->argv[i]);
779                return NULL;
780             }
781             store = jcr->store;
782             free_jcr(jcr);
783             break;
784         }
785       }
786    }
787
788    if (!store && store_name) {
789       store = (STORE *)GetResWithName(R_STORAGE, store_name);
790       if (!store) {
791          bsendmsg(ua, "Storage resource \"%s\": not found\n", store_name);
792       }
793    }
794    /* No keywords found, so present a selection list */
795    if (!store) {
796       store = select_storage_resource(ua);
797    }
798    return store;
799 }
800
801
802 /*
803  * Scan looking for mediatype= 
804  *
805  *  if not found or error, put up selection list
806  *
807  *  Returns: 0 on error
808  *           1 on success, MediaType is set
809  */
810 int get_media_type(UAContext *ua, char *MediaType, int max_media)
811 {
812    STORE *store;
813    int i;
814
815    i = find_arg_with_value(ua, "mediatype");
816    if (i >= 0) {
817       bstrncpy(MediaType, ua->argv[i], max_media);
818       return 1;
819    }
820
821    start_prompt(ua, _("Media Types defined in conf file:\n"));
822    LockRes();
823    foreach_res(store, R_STORAGE) {
824       add_prompt(ua, store->media_type);
825    }
826    UnlockRes();
827    return (do_prompt(ua, _("Media Type"), _("Select the Media Type"), MediaType, max_media) < 0) ? 0 : 1;
828 }