2 * Resource codes -- they must be sequential for indexing
7 Copyright (C) 2000-2005 Kern Sibbald
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2 of
12 the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public
20 License along with this program; if not, write to the Free
21 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
33 R_LAST = R_AUTOCHANGER /* keep this updated */
45 /* Definition of the contents of each Resource */
50 char *password; /* Director password */
51 char *address; /* Director IP address or zero */
52 int enable_ssl; /* Use SSL with this Director */
53 int monitor; /* Have only access to status and .status functions */
57 /* Storage daemon "global" definitions */
64 char *working_directory; /* working directory for checkpoints */
66 char *subsys_directory;
67 int require_ssl; /* Require SSL on all connections */
68 uint32_t max_concurrent_jobs; /* maximum concurrent jobs to run */
69 MSGS *messages; /* Daemon message handler */
70 utime_t heartbeat_interval; /* Interval to send hb to FD */
72 typedef struct s_res_store STORES;
74 /* Device specific definitions */
79 char *media_type; /* User assigned media type */
80 char *device_name; /* Archive device name */
81 char *changer_name; /* Changer device name */
82 char *changer_command; /* Changer command -- external program */
83 char *alert_command; /* Alert command -- external program */
84 char *spool_directory; /* Spool file directory */
85 int label_type; /* label type */
86 uint32_t drive_index; /* Autochanger drive index */
87 uint32_t cap_bits; /* Capabilities of this device */
88 uint32_t max_changer_wait; /* Changer timeout */
89 uint32_t max_rewind_wait; /* maximum secs to wait for rewind */
90 uint32_t max_open_wait; /* maximum secs to wait for open */
91 uint32_t max_open_vols; /* maximum simultaneous open volumes */
92 uint32_t min_block_size; /* min block size */
93 uint32_t max_block_size; /* max block size */
94 uint32_t max_volume_jobs; /* max jobs to put on one volume */
95 uint32_t max_network_buffer_size; /* max network buf size */
96 utime_t vol_poll_interval; /* interval between polling volume during mount */
97 int64_t max_volume_files; /* max files to put on one volume */
98 int64_t max_volume_size; /* max bytes to put on one volume */
99 int64_t max_file_size; /* max file size in bytes */
100 int64_t volume_capacity; /* advisory capacity */
101 int64_t max_spool_size; /* Max spool size for all jobs */
102 int64_t max_job_spool_size; /* Max spool size for any single job */
104 int64_t max_part_size; /* Max part size */
105 char *mount_point; /* Mount point for require mount devices */
106 char *mount_command; /* Mount command */
107 char *unmount_command; /* Unmount command */
108 char *write_part_command; /* Write part command */
109 char *free_space_command; /* Free space command */
111 DEVICE *dev; /* Pointer to phyical dev -- set at runtime */
118 char *changer_name; /* Changer device name */
119 char *changer_command; /* Changer command -- external program */
127 AUTOCHANGER res_changer;