-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
126 lines (106 loc) · 4.04 KB
/
main.cpp
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
/*
The MIT License (MIT)
Copyright (c) 2014
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "yawg_pyxlator.h"
#include "boostpy/xlator.h"
#include "cppprog.h"
#include "cppwriter.h"
#include <boost/system/config.hpp>
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
#include <fstream>
#include <strstream>
#include <iostream>
namespace bfs = boost::filesystem;
namespace bpo = boost::program_options;
//////////////////////////////////////////////////////////////////////////
/**
* Makes sure \a path uses preferred slash and it ends with slash
*/
inline void make_preferred_dir_format(boost::filesystem::path& path)
{
path.make_preferred();
if(path.native().back() != path.preferred_separator)
path = path.native() + path.preferred_separator;
}
int main(int argc, char** argv)
{
// Declare the supported options.
bpo::options_description desc("Automatic wrapper generation");
desc.add_options()
("help,h", "produce help message")
("input-folder,i", bpo::value<std::string>(), "Input folder from where header files are picked.")
("output-folder,o", bpo::value<std::string>(), "Output folder for emitting wrapper files.")
("binding,b", bpo::value<std::string>(), "Binding target. It can be CPython or BPython (for Boost.Python).")
("module,m", bpo::value<std::string>(), "Module name.")
;
bpo::variables_map vm;
bpo::store(bpo::parse_command_line(argc, argv, desc), vm);
bpo::notify(vm);
if(vm.count("help"))
{
std::cerr << desc << "\n";
return 1;
}
if(vm.count("input-folder") == 0)
{
std::cerr << "Error: Input folder not specified.\n\n" << desc << "\n";
return 1;
}
if(vm.count("output-folder") == 0)
{
std::cerr << "Error: Output folder not specified.\n\n" << desc << "\n";
return 1;
}
if(vm.count("module") == 0)
{
std::cerr << "Error: Module name not specified.\n\n" << desc << "\n";
return 1;
}
bfs::path inputPath;
bfs::path outputPath;
if(vm.count("input-folder"))
inputPath = bfs::absolute(vm["input-folder"].as<std::string>());
if(vm.count("output-folder"))
outputPath = bfs::absolute(vm["output-folder"].as<std::string>());
if (!bfs::is_directory(inputPath) ||
(bfs::exists(outputPath) && !bfs::is_directory(outputPath))
)
return -1;
make_preferred_dir_format(inputPath);
make_preferred_dir_format(outputPath);
bfs::create_directories(outputPath);
std::string binding = vm.count("binding") == 0 ? "BPython" : vm["binding"].as<std::string>();
if(binding == "CPython")
{
YPyXlator pyXlator(inputPath, outputPath, vm["module"].as<std::string>());
const CppProgram& pyWrapProg = pyXlator.getBindingProg();
const CppCompoundArray& fileDOMs = pyWrapProg.getFileDOMs();
CppWriter cppWriter;
for(CppCompoundArray::const_iterator itr = fileDOMs.begin(); itr != fileDOMs.end(); ++itr)
{
const CppCompound* pyCompound = *itr;
std::ofstream stm(pyCompound->name_);
cppWriter.emit(pyCompound, stm);
}
}
else if(binding == "BPython")
{
BoostPythonXlator boostpyXlator(inputPath, outputPath, vm["module"].as<std::string>());
}
}