forked from cjdelisle/cjdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cleanconfig.c
52 lines (45 loc) · 1.89 KB
/
cleanconfig.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
/* vim: set expandtab ts=4 sw=4: */
/*
* You may redistribute this program and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "benc/Dict.h"
#include "benc/serialization/BencSerializer.h"
#include "benc/serialization/json/JsonBencSerializer.h"
#include "memory/MallocAllocator.h"
#include "io/Reader.h"
#include "io/FileReader.h"
#include "io/Writer.h"
#include "io/FileWriter.h"
#include <unistd.h>
int main(int argc, char** argv)
{
if (isatty(STDIN_FILENO)) {
printf("Usage: %s < cjdroute.conf > compliant.json\n", argv[0]);
printf("Cjdns accepts configuration which is not valid json but only outputs json\n"
"which is valid. This tool deserialies and reserialized a conf file or other "
"json file.\n");
printf("In honor of thefinn93, thanks for all of your hard work helping people.\n");
exit(0);
}
struct Allocator* allocator = MallocAllocator_new(1<<20);
struct Reader* stdinReader = FileReader_new(stdin, allocator);
Dict config;
if (JsonBencSerializer_get()->parseDictionary(stdinReader, allocator, &config)) {
fprintf(stderr, "Failed to parse configuration.\n");
return -1;
}
struct Writer* stdoutWriter = FileWriter_new(stdout, allocator);
JsonBencSerializer_get()->serializeDictionary(stdoutWriter, &config);
printf("\n");
Allocator_free(allocator);
}