summaryrefslogtreecommitdiffhomepage
path: root/xmake.cpp
blob: e5f85ac721eb9da66118f51d207e61e3aca10d76 (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
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
#include "xmake.h"

#include <cstdlib>
#include <filesystem>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <vector>

#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <boost/process.hpp>

#include <fmt/format.h>

namespace fs = std::filesystem;
namespace bp = boost::process;
namespace pt = boost::property_tree;
using namespace std::string_literals;

namespace {
 const fs::path XMakefile{"XMakefile"};

 void usage()
 {
  std::cout << "Usage: xmake <target>" << std::endl;
 }

 fs::path get_target(const pt::ptree& ptree) {
  return ptree.get<std::string>("xmake.build.name");
 }
 
 std::vector<fs::path> get_sources(const pt::ptree& ptree) {
  std::vector<fs::path> sources;
  for (const pt::ptree::value_type &v: ptree.get_child("xmake.build")) {
   if (v.first == "source")
    sources.push_back(v.second.data());
  }
  return sources;
 }

 std::vector<fs::path> get_objects(const pt::ptree& ptree) {
  std::vector<fs::path> objects{get_sources(ptree)};
  for (auto &i: objects) {
   i.replace_extension("o");
  }
  return objects;
 }

 // both need to exist
 bool is_older(const fs::path& p, const fs::path& other) {
  auto t_p{fs::last_write_time(p)};
  auto t_other{fs::last_write_time(other)};
  return t_p < t_other;
 }

 bool is_outdated(const fs::path& p, const std::vector<fs::path> &dependencies) {
  if (!fs::exists(p))
   return true;

  for (auto& dep: dependencies) {
   if (!exists(dep) || is_older(p, dep)) {
    return true;
   }
  }

  return false;
 }

 void build(const pt::ptree& ptree) {
  fs::path target{get_target(ptree)};

  std::vector<fs::path> sources{get_sources(ptree)};

  std::cout << "Target: " << target << std::endl;

  std::cout << "Sources: " << std::endl;
  for (auto &i: sources) {
   std::cout << "  " << i << std::endl;
  }

  std::vector<std::string> commands;
  // compile
  for (auto &p: sources) {
   fs::path p_obj{p};
   p_obj.replace_extension("o");
   if (is_outdated(p_obj, std::vector<fs::path>{p})) {
    commands.push_back(fmt::format("g++ -std=c++17 -c {} -o {}", p.string(), p_obj.string()));
   }
  }
  // link
  std::vector<fs::path> objects{get_objects(ptree)};
  std::vector<fs::path> dependencies{sources};
  if (is_outdated(target, dependencies)) {
   std::string link_command{"g++"};
   for (auto &i: objects) {
    link_command += fmt::format(" {}", i.string());
   }
   link_command += " -lfmt";
   link_command += fmt::format(" -o {}", target.string());
   commands.push_back(link_command);
  }

  std::cout << "Commands: " << std::endl;
  for (auto &i: commands) {
   std::cout << "  " << i << std::endl;
  }

  if (commands.size() == 0) {
   std::cout << "Everything up to date." << std::endl;
  } else {
   std::cout << "Running commands: " << std::endl;
   for (auto &i: commands) {
    std::cout << i << std::endl;
    int result{system(i.c_str())};
    if (result != 0) {
     throw std::runtime_error(fmt::format("Error {}", result));
    }
   }
  }
 }

 void clean(const pt::ptree& ptree) {
  std::vector<fs::path> cleanlist{get_objects(ptree)};
  cleanlist.push_back(get_target(ptree));

  std::vector<std::string> commands;
  for (auto &i: cleanlist) {
   commands.push_back(fmt::format("rm -f {}", i.string()));
  }

  std::cout << "Running commands: " << std::endl;
  for (auto &i: commands) {
   std::cout << i << std::endl;
   int result{system(i.c_str())};
   if (result != 0) {
    throw std::runtime_error(fmt::format("Error {}", result));
   }
  }
 }
}

int xmake(int argc, char* argv[])
{
 try {
  pt::ptree ptree;
  pt::read_xml(XMakefile, ptree, pt::xml_parser::no_comments | pt::xml_parser::trim_whitespace);

  std::string action{"default"};

  if (argc == 1) { // default action
  } else if (argc == 2) {
   action = argv[1];
  } else {
   std::cerr << "Invalid arguments." << std::endl;
   usage;
   exit(1);
  }

  if (action == "default"s || action == "build") { // build
   build(ptree);
  } else if (action == "clean") {
   clean(ptree);
  } else if (action == "install") {
   throw std::runtime_error("unimplemented");
  } else if (action == "rebuild") {
   throw std::runtime_error("unimplemented");
  } else if (action == "run") {
   throw std::runtime_error("unimplemented");
  } else {
   std::cerr << "Invalid action: " << action << std::endl;
   usage;
   exit(1);
  }


 } catch (const std::exception& ex) {
  std::cerr << "xmake: " << ex.what() << std::endl;
  return 1;
 }

 return 0;
}