blob: 5bf35e199e0edb13c91792efa8f4ee9afdd260de [file] [log] [blame]
// Copyright 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include <base/command_line.h>
#include <base/files/file_path.h>
#include <base/logging.h>
#include <chromeos/syslog_logging.h>
#include "chromeos-dbus-bindings/adaptor_generator.h"
#include "chromeos-dbus-bindings/method_name_generator.h"
#include "chromeos-dbus-bindings/proxy_generator.h"
#include "chromeos-dbus-bindings/xml_interface_parser.h"
namespace switches {
static const char kHelp[] = "help";
static const char kInput[] = "input";
static const char kMethodNames[] = "method-names";
static const char kAdaptor[] = "adaptor";
static const char kProxy[] = "proxy";
static const char kHelpMessage[] = "\n"
"Available Switches: \n"
" --input=<interface>\n"
" The input XML interface file (mandatory).\n"
" --method-names=<method name header filename>\n"
" The output header file with string constants for each method name.\n"
" --adaptor=<adaptor header filename>\n"
" The output header file name containing the DBus adaptor class.\n"
" --proxy=<proxy header filename>\n"
" The output header file name containing the DBus proxy class.\n";
} // namespace switches
int main(int argc, char** argv) {
CommandLine::Init(argc, argv);
CommandLine* cl = CommandLine::ForCurrentProcess();
// Setup logging to stderr. This also parses some implicit flags using the
// CommandLine singleton.
chromeos::InitLog(chromeos::kLogToStderr | chromeos::kLogHeader);
if (cl->HasSwitch(switches::kHelp)) {
LOG(INFO) << switches::kHelpMessage;
return 0;
}
if (!cl->HasSwitch(switches::kInput)) {
LOG(ERROR) << switches::kInput << " switch is mandatory.";
LOG(ERROR) << switches::kHelpMessage;
return 1;
}
std::string input = cl->GetSwitchValueASCII(switches::kInput);
chromeos_dbus_bindings::XmlInterfaceParser parser;
if (!parser.ParseXmlInterfaceFile(base::FilePath(input))) {
LOG(ERROR) << "Failed to parse interface file.";
return 1;
}
if (cl->HasSwitch(switches::kMethodNames)) {
std::string method_name_file =
cl->GetSwitchValueASCII(switches::kMethodNames);
VLOG(1) << "Outputting method names to " << method_name_file;
if (!chromeos_dbus_bindings::MethodNameGenerator::GenerateMethodNames(
parser.interface(),
base::FilePath(method_name_file))) {
LOG(ERROR) << "Failed to output method names.";
return 1;
}
}
if (cl->HasSwitch(switches::kAdaptor)) {
std::string adaptor_file = cl->GetSwitchValueASCII(switches::kAdaptor);
VLOG(1) << "Outputting adaptor to " << adaptor_file;
if (!chromeos_dbus_bindings::AdaptorGenerator::GenerateAdaptor(
parser.interface(),
base::FilePath(adaptor_file))) {
LOG(ERROR) << "Failed to output adaptor.";
return 1;
}
}
if (cl->HasSwitch(switches::kProxy)) {
std::string proxy_file = cl->GetSwitchValueASCII(switches::kProxy);
LOG(INFO) << "Outputting proxy to " << proxy_file;
if (!chromeos_dbus_bindings::ProxyGenerator::GenerateProxy(
parser.interface(),
base::FilePath(proxy_file))) {
LOG(ERROR) << "Failed to output proxy.";
return 1;
}
}
return 0;
}