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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/**
* (C) 2016 - 2021 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
* (C) 2016 - 2022 Stanislav Angelovic <stanislav.angelovic@protonmail.com>
*
* @file xml2cpp.cpp
*
* Created on: Feb 1, 2017
* Project: sdbus-c++
* Description: High-level D-Bus IPC C++ library based on sd-bus
*
* This file is part of sdbus-c++.
*
* sdbus-c++ is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* sdbus-c++ 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with sdbus-c++. If not, see <http://www.gnu.org/licenses/>.
*/
// Own
#include "xml.h"
#include "AdaptorGenerator.h"
#include "ProxyGenerator.h"
// STL
#include <cstdlib>
#include <cstring>
#include <string>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>
using std::endl;
using namespace sdbuscpp;
void usage(std::ostream& output, const char* programName)
{
output << "Usage: " << programName << " [OPTION]... [FILE]" << endl <<
"Creates C++ stubs for DBus API for adaptor and/or client" << endl <<
endl <<
"Available options:" << endl <<
" --proxy=FILE Generate header file FILE with proxy class (client)" << endl <<
" --adaptor=FILE Generate header file FILE with stub class (server)" << endl <<
" -h, --help " << endl <<
" --verbose Explain what is being done" << endl <<
endl <<
"The stub generator takes an XML file describing DBus interface and creates" << endl <<
"C++ header files to be used by C++ code wanting to cumminicate through that" << endl <<
"interface. Clients of the interface (those making the calls) need header" << endl <<
"created with the --proxy option as this header forwards the calls via DBus" << endl <<
"to provider of the service and the returns the result to the caller. Server" << endl <<
"implementing the service should derive from interface classes in header" << endl <<
"generated for --adaptor option and implement their methods." << endl <<
endl <<
"When FILE is not specified, standard input is read. Exit status is 0 when" << endl <<
"no error was encountered and all requested headers were sucessfully generated." << endl <<
"Otherwise 1 is returned." << endl;
}
int main(int argc, char **argv)
{
const char* programName = argv[0];
argv++;
argc--;
const char* proxy = nullptr;
const char* adaptor = nullptr;
const char* xmlFile = nullptr;
bool verbose = false;
while (argc > 0)
{
if (!strncmp(*argv, "--proxy=", 8))
{
if (proxy != nullptr)
{
std::cerr << "Multiple occurrencies of --proxy is not allowed" << endl;
usage(std::cerr, programName);
return 1;
}
proxy = *argv + 8;
}
else if (!strncmp(*argv, "--adaptor=", 10) || !strncmp(*argv, "--adapter=", 10))
{
if (adaptor != nullptr)
{
std::cerr << "Multiple occurrencies of --adaptor is not allowed" << endl;
usage(std::cerr, programName);
return 1;
}
adaptor = *argv + 10;
}
else if (!strcmp(*argv, "--help") || !strcmp(*argv, "-h"))
{
usage(std::cout, programName);
return 0;
}
else if (!strcmp(*argv, "--verbose"))
{
verbose = true;
}
else if (**argv == '-')
{
std::cerr << "Unknown option " << *argv << endl;
usage(std::cerr, programName);
return 1;
}
else
{
if (xmlFile != nullptr)
{
std::cerr << "More than one input file specified: " << *argv << endl;
usage(std::cerr, programName);
return 1;
}
xmlFile = *argv;
}
argc--;
argv++;
}
if (!proxy && !adaptor)
{
std::cerr << "Either --proxy or --adapter need to be specified" << endl;
usage(std::cerr, programName);
return 1;
}
xml::Document doc;
try
{
if (xmlFile != nullptr)
{
if (verbose)
{
std::cerr << "Reading DBus interface from " << xmlFile << endl;
}
std::ifstream input(xmlFile);
if (input.fail())
{
std::cerr << "Unable to open file " << xmlFile << endl;
return 1;
}
input >> doc;
}
else
{
if (verbose)
{
std::cerr << "Reading DBus interface from standard input" << endl;
}
std::cin >> doc;
}
}
catch (const xml::Error& e)
{
std::cerr << "Parsing error: " << e.what() << endl;
return 1;
}
if (!doc.root)
{
std::cerr << "Empty document" << endl;
return 1;
}
if (proxy)
{
if (verbose)
{
std::cerr << "Generating proxy header " << proxy << endl;
}
ProxyGenerator pg;
pg.transformXmlToFile(doc, proxy);
}
if (adaptor)
{
if (verbose)
{
std::cerr << "Generating adaptor header " << adaptor << endl;
}
AdaptorGenerator ag;
ag.transformXmlToFile(doc, adaptor);
}
return 0;
}
|