blob: 563b7e36da629e1a4b2f3b8f25b306393fa7e684 (
plain)
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
53
54
55
56
57
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "orcus_json_cli.hpp"
#include "orcus/config.hpp"
#ifdef __ORCUS_SPREADSHEET_MODEL
#include "orcus/spreadsheet/document.hpp"
#include "orcus/spreadsheet/factory.hpp"
#include "orcus/orcus_json.hpp"
#endif
#include <iostream>
#include <cassert>
#include <vector>
#include <sstream>
using namespace std;
namespace orcus { namespace detail {
#ifdef __ORCUS_SPREADSHEET_MODEL
void map_to_sheets_and_dump(const file_content& content, cmd_params& params)
{
spreadsheet::range_size_t ss{1048576, 16384};
spreadsheet::document doc{ss};
spreadsheet::import_factory factory(doc);
orcus_json app(&factory);
if (params.map_file.empty())
// Automatic mapping of JSON to table.
app.detect_map_definition(content.str());
else
app.read_map_definition(params.map_file.str());
app.read_stream(content.str());
doc.dump(params.config->output_format, params.config->output_path);
}
#else
void map_to_sheets_and_dump(const file_content& /*content*/, cmd_params& /*params*/)
{
throw std::runtime_error(
"map mode disabled as the spreadsheet model backend is not available.");
}
#endif
}}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|