/* * Open Chinese Convert * * Copyright 2010-2014 Carbo Kuo * * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * 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. */ #include "src/DictConverter.hpp" #include "src/CmdLineOutput.hpp" #include "src/Exception.hpp" using namespace opencc; int main(int argc, const char* argv[]) { try { TCLAP::CmdLine cmd("Open Chinese Convert (OpenCC) Dictionary Tool", ' ', VERSION); CmdLineOutput cmdLineOutput; cmd.setOutput(&cmdLineOutput); std::vector dictFormats{"text", "ocd2", "ocd"}; TCLAP::ValuesConstraint allowedVals(dictFormats); TCLAP::ValueArg toArg("t", "to", "Output format", true /* required */, "" /* default */, &allowedVals /* type */, cmd); TCLAP::ValueArg fromArg("f", "from", "Input format", true /* required */, "" /* default */, &allowedVals /* type */, cmd); TCLAP::ValueArg outputArg( "o", "output", "Path to output dictionary", true /* required */, "" /* default */, "file" /* type */, cmd); TCLAP::ValueArg inputArg( "i", "input", "Path to input dictionary", true /* required */, "" /* default */, "file" /* type */, cmd); cmd.parse(argc, argv); ConvertDictionary(inputArg.getValue(), outputArg.getValue(), fromArg.getValue(), toArg.getValue()); } catch (TCLAP::ArgException& e) { std::cerr << "error: " << e.error() << " for arg " << e.argId() << std::endl; } catch (Exception& e) { std::cerr << e.what() << std::endl; } return 0; }