-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.c
192 lines (175 loc) · 6.62 KB
/
main.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
* Clone Utility for Baofeng radios.
*
* Copyright (C) 2013-2023 Serge Vakulenko, KK6ABQ
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
#include <unistd.h>
#include "radio.h"
#include "util.h"
extern char *optarg;
extern int optind;
void usage()
{
fprintf(stderr, _("BaoClone Utility, Version %s\n"), program_version);
fprintf(stderr, _("%s\n"), program_copyright);
fprintf(stderr, _("Usage:\n"));
fprintf(stderr, _(" baoclone [-v] port\n"));
fprintf(stderr, _(" Save device image to file 'device.img',\n"));
fprintf(stderr, _(" and text configuration to 'device.conf'.\n"));
fprintf(stderr, _(" baoclone -w [-v] port file.img\n"));
fprintf(stderr, _(" Write image to device.\n"));
fprintf(stderr, _(" baoclone -c [-v] port file.conf\n"));
fprintf(stderr, _(" Configure device from text file.\n"));
fprintf(stderr, _(" baoclone -c [-v] file.img file.conf\n"));
fprintf(stderr, _(" Apply text configuration to the image.\n"));
fprintf(stderr, _(" baoclone file.img\n"));
fprintf(stderr, _(" Display configuration from image file.\n"));
fprintf(stderr, _(" baoclone -a [-v] port mhz\n"));
fprintf(stderr, _(" baoclone -b [-v] port mhz\n"));
fprintf(stderr, _(" Set VFO A or B mode with given frequency.\n"));
fprintf(stderr, _("Options:\n"));
fprintf(stderr, _(" -w Write image to device.\n"));
fprintf(stderr, _(" -c Configure device from text file.\n"));
fprintf(stderr, _(" -v Trace serial protocol.\n"));
fprintf(stderr, _(" -a Set VFO A mode.\n"));
fprintf(stderr, _(" -b Set VFO B mode.\n"));
exit(-1);
}
int main(int argc, char **argv)
{
bool write_flag = false;
bool config_flag = false;
bool vfo_a_flag = false;
bool vfo_b_flag = false;
// Set locale and message catalogs.
setlocale(LC_ALL, "");
#ifdef MINGW32
// Files with localized messages should be placed in
// in c:/Program Files/baoclone/ directory.
bindtextdomain("baoclone", "c:/Program Files/baoclone");
#else
bindtextdomain("baoclone", "/usr/local/share/locale");
#endif
textdomain("baoclone");
trace_flag = 0;
for (;;) {
switch (getopt(argc, argv, "vcwab")) {
case 'v':
trace_flag = true;
continue;
case 'w':
write_flag = true;
continue;
case 'c':
config_flag = true;
continue;
case 'a':
vfo_a_flag = true;
continue;
case 'b':
vfo_b_flag = true;
continue;
default:
usage();
case EOF:
break;
}
break;
}
argc -= optind;
argv += optind;
if (write_flag + config_flag > 1) {
fprintf(stderr, "Only one of -w or -c options is allowed.\n");
usage();
}
setvbuf(stdout, 0, _IOLBF, 0);
setvbuf(stderr, 0, _IOLBF, 0);
if (vfo_a_flag || vfo_b_flag) {
// Set VFO mode.
if (argc != 2)
usage();
radio_connect(argv[0]);
radio_set_vfo(vfo_b_flag, strtod(argv[1], NULL));
radio_disconnect();
} else if (write_flag) {
// Restore image file to device.
if (argc != 2)
usage();
radio_connect(argv[0]);
radio_read_image(argv[1]);
radio_print_version(stdout, 1);
radio_upload(0);
radio_disconnect();
} else if (config_flag) {
if (argc != 2)
usage();
if (is_file(argv[0])) {
// Apply text config to image file.
radio_read_image(argv[0]);
radio_print_version(stdout, 1);
radio_parse_config(argv[1]);
radio_save_image("device.img");
} else {
// Update device from text config file.
radio_connect(argv[0]);
radio_download();
radio_print_version(stdout, 1);
radio_save_image("backup.img");
radio_parse_config(argv[1]);
radio_upload(1);
radio_disconnect();
}
} else {
if (argc != 1)
usage();
if (is_file(argv[0])) {
// Print configuration from image file.
// Load image from file.
radio_read_image(argv[0]);
radio_print_version(stdout, 1);
radio_print_config(stdout, !isatty(1));
} else {
// Dump device to image file.
radio_connect(argv[0]);
radio_download();
radio_print_version(stdout, 1);
radio_disconnect();
radio_save_image("device.img");
// Print configuration to file.
const char *filename = "device.conf";
printf("Print configuration to file '%s'.\n", filename);
FILE *conf = fopen(filename, "w");
if (!conf) {
perror(filename);
exit(-1);
}
radio_print_version(conf, 0);
radio_print_config(conf, 1);
fclose(conf);
}
}
return (0);
}