forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libtcmu_config.h
75 lines (64 loc) · 1.63 KB
/
libtcmu_config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright 2016, China Mobile, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#ifndef __TCMU_CONFIG_H
# define __TCMU_CONFIG_H
#include <stdbool.h>
#include <pthread.h>
#include "ccan/list/list.h"
struct tcmu_config {
pthread_t thread_id;
char *path;
bool is_dynamic;
int log_level;
char *log_dir_path;
};
/*
* There are 5 logging levels supported in tcmu.conf:
* 1: ERROR
* 2: WARNING
* 3: INFO
* 4: DEBUG
* 5: DEBUG SCSI CMD
*/
enum {
TCMU_CONF_LOG_LEVEL_MIN = 1,
TCMU_CONF_LOG_ERROR = 1,
TCMU_CONF_LOG_WARN,
TCMU_CONF_LOG_INFO,
TCMU_CONF_LOG_DEBUG,
TCMU_CONF_LOG_DEBUG_SCSI_CMD,
TCMU_CONF_LOG_LEVEL_MAX = TCMU_CONF_LOG_DEBUG_SCSI_CMD,
};
typedef enum {
TCMU_OPT_NONE = 0,
TCMU_OPT_INT, /* type int */
TCMU_OPT_STR, /* type string */
TCMU_OPT_BOOL, /* type boolean */
TCMU_OPT_MAX,
} tcmu_option_type;
struct tcmu_conf_option {
struct list_node list;
char *key;
tcmu_option_type type;
union {
int opt_int;
bool opt_bool;
char *opt_str;
};
};
void tcmu_destroy_config(struct tcmu_config *cfg);
struct tcmu_config * tcmu_setup_config(const char *path);
#endif /* __TCMU_CONFIG_H */