2012-04-20 18:20:49 +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:20:49 +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:20:49 +10:00
|
|
|
*
|
2015-03-18 16:08:18 +11:00
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
2012-04-20 18:20:49 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-02-03 00:07:09 +11:00
|
|
|
#include "json/except.hpp"
|
2015-03-18 16:08:18 +11:00
|
|
|
#include "json/schema.hpp"
|
2016-10-11 23:47:57 +11:00
|
|
|
#include "json/tree.hpp"
|
2012-04-20 18:20:49 +10:00
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
#include "io.hpp"
|
|
|
|
|
2016-10-07 19:48:42 +11:00
|
|
|
#include <experimental/filesystem>
|
2016-08-04 17:42:41 +10:00
|
|
|
#include <iostream>
|
|
|
|
|
2012-04-20 18:20:49 +10:00
|
|
|
|
2016-10-07 19:48:42 +11:00
|
|
|
namespace fs = std::experimental::filesystem;
|
2012-04-20 18:20:49 +10:00
|
|
|
|
2016-08-04 17:42:41 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2012-04-20 18:20:49 +10:00
|
|
|
enum {
|
2015-03-18 16:08:18 +11:00
|
|
|
ARG_CMD,
|
2012-04-20 18:20:49 +10:00
|
|
|
ARG_SCHEMA,
|
|
|
|
ARG_INPUT,
|
|
|
|
|
|
|
|
NUM_ARGS
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-08-04 17:42:41 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2012-04-20 18:20:49 +10:00
|
|
|
int
|
|
|
|
main (int argc, char **argv) {
|
|
|
|
if (argc != NUM_ARGS) {
|
2015-03-18 16:08:18 +11:00
|
|
|
std::cerr << argv[ARG_CMD] << " <schema> <json>\n";
|
2012-04-20 18:20:49 +10:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2015-03-23 18:42:00 +11:00
|
|
|
try {
|
2016-06-28 15:58:41 +10:00
|
|
|
const util::mapped_file schema_src (argv[ARG_SCHEMA]);
|
|
|
|
const util::mapped_file input_src (argv[ARG_INPUT]);
|
|
|
|
|
|
|
|
auto schema = json::tree::parse (schema_src.as_view<const char> ());
|
|
|
|
auto input = json::tree::parse (input_src.as_view<const char> ());
|
2016-04-27 17:09:48 +10:00
|
|
|
|
2015-03-23 18:42:00 +11:00
|
|
|
json::schema::validate (*input, schema->as_object ());
|
|
|
|
} catch (const json::error &e) {
|
|
|
|
std::cerr << "error: " << e.what () << '\n';
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2012-04-20 18:20:49 +10:00
|
|
|
}
|