libcruft-util/tools/json-clean.cpp

62 lines
1.5 KiB
C++
Raw Normal View History

2012-04-20 18:08:59 +10:00
/*
2015-04-13 18:05:28 +10:00
* 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
2012-04-20 18:08:59 +10:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2015-04-13 18:05:28 +10:00
* 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.
2012-04-20 18:08:59 +10:00
*
* Copyright 2012-2016 Danny Robson <danny@nerdcruft.net>
2012-04-20 18:08:59 +10:00
*/
#include "io.hpp"
#include "json/except.hpp"
#include "json/tree.hpp"
2012-04-12 14:12:25 +10:00
#include <cstdlib>
#include <iostream>
///////////////////////////////////////////////////////////////////////////////
2012-04-12 14:12:25 +10:00
enum {
ARG_COMMAND,
ARG_INPUT,
NUM_ARGS
};
//-----------------------------------------------------------------------------
2012-04-12 14:12:25 +10:00
void
print_usage (int argc, char **argv)
{
2012-04-12 14:12:25 +10:00
(void)argc;
std::cerr << "usage: " << argv[0] << " <input>\n";
}
//-----------------------------------------------------------------------------
2012-04-12 14:12:25 +10:00
int
main (int argc, char **argv)
{
2012-04-12 14:12:25 +10:00
if (argc != NUM_ARGS) {
print_usage (argc, argv);
return EXIT_FAILURE;
}
try {
const util::mapped_file src (argv[ARG_INPUT]);
std::cout << *json::tree::parse (util::view{src}.cast<const char> ()) << '\n';
} catch (const json::error& err) {
2012-04-12 14:12:25 +10:00
std::cerr << err.what () << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}