Crafter.Build/Crafter.Build-Project.cpp

215 lines
8.8 KiB
C++
Raw Normal View History

2024-12-29 01:04:33 +01:00
/*
Crafter.Build
Copyright (C) 2024 Jorijn van der Graaf
This library 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.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA
*/
2024-12-28 21:00:12 +01:00
module;
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include "json.hpp"
#include <filesystem>
#include <thread>
module Crafter.Build:ProjectImpl;
import :Project;
import :Configuration;
using namespace Crafter::Build;
Project::Project(std::string name, std::vector<Configuration> configurations) : name(name), configurations(configurations) {
}
struct ConfigData {
std::string standard;
std::vector<std::string> sourceFiles;
std::vector<std::string> moduleFiles;
std::string optimizationLevel;
std::string buildDir;
std::string outputDir;
2024-12-29 01:38:25 +01:00
std::string type;
std::string target;
2024-12-28 21:00:12 +01:00
};
ConfigData CollapseConfig(nlohmann::json& configs,nlohmann::json& config) {
ConfigData data;
if(config.contains("standard")) {
data.standard = config["standard"].get<std::string>();
}
2024-12-29 01:38:25 +01:00
if(config.contains("target")) {
data.target = config["target"].get<std::string>();
}
if(config.contains("type")) {
data.type = config["type"].get<std::string>();
}
2024-12-28 21:00:12 +01:00
if(config.contains("source_files")) {
data.sourceFiles = config["source_files"].get<std::vector<std::string>>();
}
if(config.contains("module_files")) {
data.moduleFiles = config["module_files"].get<std::vector<std::string>>();
}
if(config.contains("optimization_level")) {
data.optimizationLevel = config["optimization_level"].get<std::string>();
}
if(config.contains("build_dir")) {
data.buildDir = config["build_dir"].get<std::string>();
}
if(config.contains("output_dir")) {
data.outputDir = config["output_dir"].get<std::string>();
}
if(config.contains("extends")){
const std::vector<std::string> extends = config["extends"].get<std::vector<std::string>>();
for(const std::string& extendName : extends) {
for (nlohmann::json::iterator it = configs.begin(); it != configs.end(); ++it) {
if((*it)["name"].get<std::string>() == extendName){
ConfigData extendData = CollapseConfig(configs, (*it));
if(!extendData.standard.empty() && data.standard.empty()){
data.standard = extendData.standard;
}
if(!extendData.sourceFiles.empty()){
data.sourceFiles.insert(data.sourceFiles.end(), extendData.sourceFiles.begin(), extendData.sourceFiles.end());
}
if(!extendData.moduleFiles.empty()){
data.moduleFiles.insert(data.moduleFiles.end(), extendData.moduleFiles.begin(), extendData.moduleFiles.end());
}
if(!extendData.optimizationLevel.empty() && data.standard.empty()){
data.optimizationLevel = extendData.optimizationLevel;
}
if(!extendData.buildDir.empty() && data.buildDir.empty()) {
data.buildDir = extendData.buildDir;
}
if(!extendData.outputDir.empty() && data.outputDir.empty()) {
data.outputDir = extendData.outputDir;
}
2024-12-29 01:38:25 +01:00
if(!extendData.target.empty() && data.target.empty()) {
data.target = extendData.target;
}
if(!extendData.type.empty() && data.type.empty()) {
data.type = extendData.type;
}
2024-12-28 21:00:12 +01:00
break;
}
}
}
}
return data;
}
void Project::Build(std::string configuration) {
for(const Configuration& config : configurations) {
if(config.name == configuration){
2024-12-29 00:51:02 +01:00
Build(config, config.outputDir);
2024-12-28 21:26:19 +01:00
return;
2024-12-28 21:00:12 +01:00
}
}
2024-12-28 21:26:19 +01:00
throw std::runtime_error("Configuration: " + configuration + " not found.");
2024-12-28 21:00:12 +01:00
}
2024-12-29 00:51:02 +01:00
void Project::Build(std::string configuration, std::string outputDir) {
for(const Configuration& config : configurations) {
if(config.name == configuration){
Build(config, outputDir);
return;
}
}
throw std::runtime_error("Configuration: " + configuration + " not found.");
}
void Project::Build(Configuration configuration) {
Build(configuration, configuration.outputDir);
}
void Project::Build(Configuration config, std::string outputDir) {
if (!std::filesystem::exists(config.buildDir)) {
std::filesystem::create_directory(config.buildDir);
} else {
for (const auto& entry : std::filesystem::directory_iterator(config.buildDir)){
std::filesystem::remove_all(entry.path());
}
}
if (!std::filesystem::exists(outputDir)) {
std::filesystem::create_directory(outputDir);
} else {
for (const auto& entry : std::filesystem::directory_iterator(outputDir)){
std::filesystem::remove_all(entry.path());
}
}
2024-12-29 01:38:25 +01:00
std::string target;
if(!config.target.empty()){
target = std::format("-target {}", config.target);
}
std::string pcmDir;
if(config.type == "library" || config.type == "shared-library"){
pcmDir = outputDir;
}else{
pcmDir = config.buildDir;
}
std::string clangDir;
if(config.target == "wasm32-unknown-wasi"){
clangDir = "${WASI_SDK_PATH}/bin/clang++ --sysroot=${WASI_SDK_PATH}/share/wasi-sysroot";
name+=".wasm";
} else{
clangDir = "clang++";
}
2024-12-29 01:38:25 +01:00
2024-12-29 00:51:02 +01:00
for(const std::string& moduleFile : config.moduleFiles){
system(std::format("{} -std={} {}.cppm --precompile -fprebuilt-module-path={} -o {}/{}.pcm {}", clangDir, config.standard, moduleFile, pcmDir, pcmDir, moduleFile, target).c_str());
2024-12-29 00:51:02 +01:00
}
std::vector<std::thread> threads = std::vector<std::thread>(config.moduleFiles.size() + config.sourceFiles.size());
std::string files;
for(std::int_fast32_t i = 0; i < config.moduleFiles.size(); i++) {
files+=std::format("{}/{}.o ",config.buildDir, config.moduleFiles[i]);
threads[i] = std::thread([i, config, pcmDir, target, clangDir](){
system(std::format("{} -std={} {}/{}.pcm -fprebuilt-module-path={} -c -O{} -o {}/{}.o {}", clangDir, config.standard, pcmDir, config.moduleFiles[i], pcmDir, config.optimizationLevel, config.buildDir, config.moduleFiles[i], target).c_str());
2024-12-29 00:51:02 +01:00
});
}
for(std::int_fast32_t i = 0; i < config.sourceFiles.size(); i++) {
files+=std::format("{}/{}_source.o ",config.buildDir, config.sourceFiles[i]);
threads[config.moduleFiles.size()+i] = std::thread([i, config, pcmDir, target, clangDir](){
system(std::format("{} -std={} {}.cpp -fprebuilt-module-path={} -c -O{} -o {}/{}_source.o {}", clangDir, config.standard, config.sourceFiles[i], pcmDir, config.optimizationLevel, config.buildDir, config.sourceFiles[i], target).c_str());
2024-12-29 00:51:02 +01:00
});
}
for(std::thread& thread : threads){
thread.join();
}
2024-12-29 01:38:25 +01:00
if(config.type == "executable"){
system(std::format("{} {}-O{} -o {}/{} {}", clangDir, files, config.optimizationLevel, outputDir, name, target).c_str());
2024-12-29 01:38:25 +01:00
} else if(config.type == "library"){
system(std::format("ar r {}/{}.a {}", clangDir, outputDir, name, files, target).c_str());
2024-12-29 01:38:25 +01:00
} else if(config.type == "shared-library"){
system(std::format("ar r {}/{}.so {} -shared", outputDir, name, files, target).c_str());
}
2024-12-29 00:51:02 +01:00
}
2024-12-28 21:00:12 +01:00
Project Project::LoadFromJSON(std::string file) {
2024-12-28 21:26:19 +01:00
if (!std::filesystem::exists(file)) {
throw std::runtime_error("Project file: " + file + " not found.");
}
2024-12-28 21:00:12 +01:00
std::ifstream f(file);
nlohmann::json data = nlohmann::json::parse(f);
const std::string name = data["name"].get<std::string>();
std::vector<Configuration> configurations;
nlohmann::json configs = data["configurations"];
for (nlohmann::json::iterator it = configs.begin(); it != configs.end(); ++it) {
ConfigData configData = CollapseConfig(configs, (*it));
2024-12-29 01:38:25 +01:00
configurations.emplace_back((*it)["name"].get<std::string>(), configData.standard, configData.sourceFiles, configData.moduleFiles, configData.optimizationLevel, configData.buildDir, configData.outputDir,configData.type, configData.target);
2024-12-28 21:00:12 +01:00
}
return Project(name,configurations);
}