Imported Upstream version 3.1.0
[debian/amanda] / ndmp-src / ndma_control.c
1 /*
2  * Copyright (c) 1998,1999,2000
3  *      Traakan, Inc., Los Altos, CA
4  *      All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 /*
30  * Project:  NDMJOB
31  * Ident:    $Id: $
32  *
33  * Description:
34  *
35  *      CONTROL agent entry point.
36  */
37
38
39 #include "ndmagents.h"
40
41
42 #ifndef NDMOS_OPTION_NO_CONTROL_AGENT
43
44
45 int
46 ndmca_control_agent (struct ndm_session *sess)
47 {
48         struct ndm_job_param *  job = &sess->control_acb.job;
49         int                     rc;
50
51         switch (job->operation) {
52         default:
53                 ndmalogf (sess, 0, 0, "Job operation invalid");
54                 rc = -1;
55                 break;
56
57         case NDM_JOB_OP_INIT_LABELS:
58                 rc = ndmca_op_init_labels (sess);
59                 break;
60
61         case NDM_JOB_OP_LIST_LABELS:
62                 rc = ndmca_op_list_labels (sess);
63                 break;
64
65         case NDM_JOB_OP_BACKUP:
66                 rc = ndmca_op_create_backup (sess);
67                 break;
68
69         case NDM_JOB_OP_EXTRACT:
70                 rc = ndmca_op_recover_files (sess);
71                 break;
72
73         case NDM_JOB_OP_TOC:
74                 rc = ndmca_op_recover_fh (sess);
75                 break;
76
77         case NDM_JOB_OP_REMEDY_ROBOT:
78                 rc = ndmca_op_robot_remedy (sess);
79                 break;
80
81         case NDM_JOB_OP_QUERY_AGENTS:
82                 rc = ndmca_op_query (sess);
83                 break;
84
85         case NDM_JOB_OP_TEST_TAPE:
86                 rc = ndmca_op_test_tape (sess);
87                 break;
88
89         case NDM_JOB_OP_TEST_MOVER:
90                 rc = ndmca_op_test_mover (sess);
91                 break;
92
93         case NDM_JOB_OP_TEST_DATA:
94                 rc = ndmca_op_test_data (sess);
95                 break;
96
97         case NDM_JOB_OP_REWIND_TAPE:
98                 rc = ndmca_op_rewind_tape (sess);
99                 break;
100
101         case NDM_JOB_OP_EJECT_TAPE:
102                 rc = ndmca_op_eject_tape (sess);
103                 break;
104
105         case NDM_JOB_OP_MOVE_TAPE:
106                 rc = ndmca_op_move_tape (sess);
107                 break;
108
109         case NDM_JOB_OP_LOAD_TAPE:
110                 rc = ndmca_op_load_tape (sess);
111                 break;
112
113         case NDM_JOB_OP_UNLOAD_TAPE:
114                 rc = ndmca_op_unload_tape (sess);
115                 break;
116
117         case NDM_JOB_OP_IMPORT_TAPE:
118                 rc = ndmca_op_import_tape (sess);
119                 break;
120
121         case NDM_JOB_OP_EXPORT_TAPE:
122                 rc = ndmca_op_export_tape (sess);
123                 break;
124
125         case NDM_JOB_OP_INIT_ELEM_STATUS:
126                 rc = ndmca_op_init_elem_status (sess);
127                 break;
128         }
129
130         return rc;
131 }
132 #endif /* !NDMOS_OPTION_NO_CONTROL_AGENT */