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-02-02 23:00:38 +11:00
|
|
|
*
|
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
|
|
|
*
|
2016-06-28 15:58:41 +10:00
|
|
|
* Copyright 2012-2016 Danny Robson <danny@nerdcruft.net>
|
2012-04-20 18:08:59 +10:00
|
|
|
*/
|
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
#include "io.hpp"
|
2015-02-03 00:07:09 +11:00
|
|
|
#include "json/except.hpp"
|
|
|
|
#include "json/tree.hpp"
|
2012-04-12 14:12:25 +10:00
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2012-04-12 14:12:25 +10:00
|
|
|
enum {
|
|
|
|
ARG_COMMAND,
|
|
|
|
ARG_INPUT,
|
|
|
|
|
|
|
|
NUM_ARGS
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2012-04-12 14:12:25 +10:00
|
|
|
void
|
2016-06-28 15:58:41 +10:00
|
|
|
print_usage (int argc, char **argv)
|
|
|
|
{
|
2012-04-12 14:12:25 +10:00
|
|
|
(void)argc;
|
|
|
|
std::cerr << "usage: " << argv[0] << " <input>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2012-04-12 14:12:25 +10:00
|
|
|
int
|
2016-06-28 15:58:41 +10:00
|
|
|
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 {
|
2016-06-28 15:58:41 +10:00
|
|
|
const util::mapped_file src (argv[ARG_INPUT]);
|
|
|
|
std::cout << *json::tree::parse (src.as_view<const char> ()) << '\n';
|
2015-02-03 00:07:09 +11:00
|
|
|
} catch (const json::error& err) {
|
2012-04-12 14:12:25 +10:00
|
|
|
std::cerr << err.what () << "\n";
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|