forked from meetecho/janus-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
janus-cfgconv.c
149 lines (142 loc) · 4.81 KB
/
janus-cfgconv.c
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*! \file janus-cfgconv.c
* \author Lorenzo Miniero <[email protected]>
* \copyright GNU General Public License v3
* \brief Simple utility to convert Janus .cfg files to .jcfg and viceversa
* \details Historically, Janus has made use of INI .cfg files for the
* configuration of core and plugins. Recently, support for the libconfig format
* has been added too. Due to the more expressive nature of libconfig, .jcfg
* files have been made the default: while support for .cfg files still
* exists as a fallback, new features may only be available in .jcfg files.
* As such, you may want to convert your existing .cfg configuration files
* to .jcfg as soon as possible, which is what this tool allows you to do.
* Notice that the tool also allows you to go the other way around, although
* libconfig concepts that cannot be expressed in INI will be lost in the process.
*
* Using the utility is quite simple. Just pass, as arguments to the tool,
* the path to the file you want to convert (.cfg or .jcfg) and the path to
* the target file (.jcfg or .cfg), e.g.:
*
\verbatim
./janus-cfgconv /path/to/config.cfg /path/to/config.jcfg
\endverbatim
*
* \ingroup tools
* \ref tools
*/
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "debug.h"
#include "version.h"
int janus_log_level = 4;
gboolean janus_log_timestamps = FALSE;
gboolean janus_log_colors = TRUE;
/* Main Code */
int main(int argc, char *argv[])
{
janus_log_init(FALSE, TRUE, NULL);
atexit(janus_log_destroy);
JANUS_LOG(LOG_INFO, "Janus version: %d (%s)\n", janus_version, janus_version_string);
JANUS_LOG(LOG_INFO, "Janus commit: %s\n", janus_build_git_sha);
JANUS_LOG(LOG_INFO, "Compiled on: %s\n\n", janus_build_git_time);
/* Evaluate arguments */
if(argc != 3) {
JANUS_LOG(LOG_INFO, "Usage: %s source.[cfg|jcfg] destination.[cfg|jcfg]\n", argv[0]);
JANUS_LOG(LOG_INFO, " %s --parse source.[cfg|jcfg]\n", argv[0]);
exit(1);
}
char *source = NULL, *destination = NULL;
/* Parse or convert the configuration files */
gboolean only_parse = FALSE;
source = argv[1];
if(!strcmp(source, "--parse")) {
only_parse = TRUE;
} else {
if(!strstr(source, ".cfg") && !strstr(source, ".jcfg")) {
JANUS_LOG(LOG_ERR, "Unsupported file: %s\n", source);
exit(1);
}
}
destination = argv[2];
if(!strstr(destination, ".cfg") && !strstr(destination, ".jcfg")) {
JANUS_LOG(LOG_ERR, "Unsupported file: %s\n", destination);
exit(1);
}
if(only_parse) {
source = destination;
destination = NULL;
JANUS_LOG(LOG_INFO, "Parsing:\n");
JANUS_LOG(LOG_INFO, " -- IN: %s\n", source);
} else {
JANUS_LOG(LOG_INFO, "Converting:\n");
JANUS_LOG(LOG_INFO, " -- IN: %s\n", source);
JANUS_LOG(LOG_INFO, " -- OUT: %s\n\n", destination);
}
/* Open the source */
janus_config *config = janus_config_parse(source);
if(config == NULL)
exit(1);
janus_config_print_as(config, LOG_INFO);
JANUS_LOG(LOG_INFO, "\n");
if(only_parse) {
/* We're done */
janus_config_destroy(config);
JANUS_LOG(LOG_INFO, "Bye!\n");
return 0;
}
/* If the source is an INI, check if there are numeric categories or attribute names */
if(!config->is_jcfg) {
GList *list = config->list;
while(list) {
janus_config_container *c = (janus_config_container *)list->data;
if(c && c->type == janus_config_type_category && c->name && atol(c->name) > 0) {
/* FIXME Ugly hack to add the "room-" prefix to category names
* (currently only needed in VideoRoom/AudioBridge/TextRoom) */
char newname[50];
g_snprintf(newname, sizeof(newname), "room-%s", c->name);
g_free((char *)c->name);
c->name = g_strdup(newname);
}
list = list->next;
}
}
/* Is the target an INI or a libconfig file? */
config->is_jcfg = strstr(destination, ".jcfg") != NULL;
/* Remove extension: janus_config_save adds it for us */
char *target = g_strdup(destination);
char *extension = config->is_jcfg ? strstr(target, ".jcfg") : strstr(target, ".cfg");
*extension = '\0';
/* Save to destination */
if(janus_config_save(config, NULL, target) < 0) {
g_free(target);
janus_config_destroy(config);
JANUS_LOG(LOG_ERR, "Error saving converted file\n");
exit(1);
}
janus_config_destroy(config);
/* Make sure everything's fine */
config = janus_config_parse(destination);
if(config == NULL) {
g_free(target);
JANUS_LOG(LOG_ERR, "Error parsing converted file\n");
exit(1);
}
janus_config_print_as(config, LOG_INFO);
JANUS_LOG(LOG_INFO, "\n");
janus_config_destroy(config);
/* Done */
FILE *file = fopen(destination, "rb");
if(file == NULL) {
g_free(target);
JANUS_LOG(LOG_WARN, "No destination file %s??\n", destination);
exit(1);
}
fseek(file, 0L, SEEK_END);
size_t fsize = ftell(file);
fseek(file, 0L, SEEK_SET);
JANUS_LOG(LOG_INFO, "%s is %zu bytes\n", destination, fsize);
fclose(file);
g_free(target);
JANUS_LOG(LOG_INFO, "Bye!\n");
return 0;
}