dmrconfig/main.c

169 lines
6.0 KiB
C
Raw Normal View History

2018-08-20 22:47:13 -07:00
/*
* Configuration Utility for DMR radios.
*
* Copyright (C) 2018 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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "radio.h"
#include "util.h"
const char version[] = VERSION;
const char *copyright;
extern char *optarg;
extern int optind;
void usage()
{
fprintf(stderr, _("DMR Config, Version %s, %s\n"), version, copyright);
fprintf(stderr, _("Usage:\n"));
fprintf(stderr, _(" dmrconfig [-v] -r\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" Read image from the radio and save it to a binary file 'device.img'.\n"));
fprintf(stderr, _(" Save configuration to a text file 'device.conf'.\n"));
2018-08-20 22:47:13 -07:00
fprintf(stderr, _(" dmrconfig -w [-v] file.img\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" Write image to the radio.\n"));
2018-08-20 22:47:13 -07:00
fprintf(stderr, _(" dmrconfig -c [-v] file.conf\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" Apply configuration script to the radio.\n"));
2018-08-20 22:47:13 -07:00
fprintf(stderr, _(" dmrconfig -c [-v] file.img file.conf\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" Apply text configuration to the image file.\n"));
fprintf(stderr, _(" Store modified copy to a file 'device.img'.\n"));
2018-08-20 22:47:13 -07:00
fprintf(stderr, _(" dmrconfig file.img\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" Display configuration from the image file.\n"));
2018-08-20 22:47:13 -07:00
fprintf(stderr, _("Options:\n"));
2018-08-27 17:50:32 -07:00
fprintf(stderr, _(" -w Write image to the radio.\n"));
fprintf(stderr, _(" -c Configure the radio from a text file.\n"));
fprintf(stderr, _(" -v Trace USB protocol.\n"));
2018-08-20 22:47:13 -07:00
exit(-1);
}
int main(int argc, char **argv)
{
2018-08-25 20:20:51 -07:00
int read_flag = 0, write_flag = 0, config_flag = 0;
2018-08-20 22:47:13 -07:00
// Set locale and message catalogs.
setlocale(LC_ALL, "");
#ifdef MINGW32
// Files with localized messages should be placed in
// in c:/Program Files/dmrconfig/ directory.
bindtextdomain("dmrconfig", "c:/Program Files/dmrconfig");
#else
bindtextdomain("dmrconfig", "/usr/local/share/locale");
#endif
textdomain("dmrconfig");
copyright = _("Copyright (C) 2018 Serge Vakulenko KK6ABQ");
serial_verbose = 0;
for (;;) {
2018-08-25 20:20:51 -07:00
switch (getopt(argc, argv, "vcwr")) {
2018-08-20 22:47:13 -07:00
case 'v': ++serial_verbose; continue;
2018-08-25 20:20:51 -07:00
case 'r': ++read_flag; continue;
2018-08-20 22:47:13 -07:00
case 'w': ++write_flag; continue;
case 'c': ++config_flag; 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 (write_flag) {
// Restore image file to device.
2018-08-25 20:20:51 -07:00
if (argc != 1)
2018-08-20 22:47:13 -07:00
usage();
2018-08-21 22:04:45 -07:00
radio_connect();
2018-08-25 20:20:51 -07:00
radio_read_image(argv[0]);
2018-08-20 22:47:13 -07:00
radio_print_version(stdout);
radio_upload(0);
radio_disconnect();
} else if (config_flag) {
2018-08-25 20:20:51 -07:00
if (argc != 1 && argc != 2)
2018-08-20 22:47:13 -07:00
usage();
2018-08-25 20:20:51 -07:00
if (argc == 2) {
2018-08-20 22:47:13 -07:00
// Apply text config to image file.
radio_read_image(argv[0]);
radio_print_version(stdout);
radio_parse_config(argv[1]);
radio_save_image("device.img");
} else {
// Update device from text config file.
2018-08-21 22:04:45 -07:00
radio_connect();
2018-08-20 22:47:13 -07:00
radio_download();
radio_print_version(stdout);
radio_save_image("backup.img");
2018-08-25 20:20:51 -07:00
radio_parse_config(argv[0]);
2018-08-20 22:47:13 -07:00
radio_upload(1);
radio_disconnect();
}
2018-08-25 20:20:51 -07:00
} else if (read_flag) {
if (argc != 0 && argc != 1)
2018-08-20 22:47:13 -07:00
usage();
2018-08-25 20:20:51 -07:00
if (argc == 1) {
2018-08-20 22:47:13 -07:00
// Print configuration from image file.
// Load image from file.
radio_read_image(argv[0]);
radio_print_config(stdout, ! isatty(1));
} else {
// Dump device to image file.
2018-08-21 22:04:45 -07:00
radio_connect();
2018-08-20 22:47:13 -07:00
radio_download();
radio_print_version(stdout);
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_config(conf, 1);
fclose(conf);
}
2018-08-25 20:20:51 -07:00
} else {
usage();
2018-08-20 22:47:13 -07:00
}
return 0;
}