2017-10-02 23:24:00 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* godotsharp_builds.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2017-10-02 23:24:00 +02:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
#include "godotsharp_builds.h"
|
|
|
|
|
2017-10-05 00:08:38 +02:00
|
|
|
#include "main/main.h"
|
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
#include "../godotsharp_dirs.h"
|
|
|
|
#include "../mono_gd/gd_mono_class.h"
|
|
|
|
#include "../mono_gd/gd_mono_marshal.h"
|
|
|
|
#include "../utils/path_utils.h"
|
|
|
|
#include "bindings_generator.h"
|
|
|
|
#include "godotsharp_editor.h"
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
#define PROP_NAME_MSBUILD_MONO "MSBuild (Mono)"
|
|
|
|
#define PROP_NAME_MSBUILD_VS "MSBuild (VS Build Tools)"
|
|
|
|
#define PROP_NAME_XBUILD "xbuild (Deprecated)"
|
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
void godot_icall_BuildInstance_ExitCallback(MonoString *p_solution, MonoString *p_config, int p_exit_code) {
|
|
|
|
|
|
|
|
String solution = GDMonoMarshal::mono_string_to_godot(p_solution);
|
|
|
|
String config = GDMonoMarshal::mono_string_to_godot(p_config);
|
|
|
|
GodotSharpBuilds::get_singleton()->build_exit_callback(MonoBuildInfo(solution, config), p_exit_code);
|
|
|
|
}
|
|
|
|
|
2017-10-05 00:08:38 +02:00
|
|
|
#ifdef UNIX_ENABLED
|
|
|
|
String _find_build_engine_on_unix(const String &p_name) {
|
|
|
|
String ret = path_which(p_name);
|
|
|
|
|
|
|
|
if (ret.length())
|
|
|
|
return ret;
|
|
|
|
|
2017-11-04 21:55:04 +01:00
|
|
|
String ret_fallback = path_which(p_name + ".exe");
|
|
|
|
if (ret_fallback.length())
|
|
|
|
return ret_fallback;
|
|
|
|
|
2017-10-05 00:08:38 +02:00
|
|
|
const char *locations[] = {
|
|
|
|
#ifdef OSX_ENABLED
|
|
|
|
"/Library/Frameworks/Mono.framework/Versions/Current/bin/",
|
2018-07-10 00:25:13 +02:00
|
|
|
"/usr/local/var/homebrew/linked/mono/bin/",
|
2017-10-05 00:08:38 +02:00
|
|
|
#endif
|
|
|
|
"/opt/novell/mono/bin/"
|
|
|
|
};
|
|
|
|
|
2017-10-07 04:22:26 +02:00
|
|
|
for (int i = 0; i < sizeof(locations) / sizeof(const char *); i++) {
|
2017-10-31 15:15:42 +01:00
|
|
|
String hint_path = locations[i] + p_name;
|
2017-10-05 00:08:38 +02:00
|
|
|
|
2017-10-31 15:15:42 +01:00
|
|
|
if (FileAccess::exists(hint_path)) {
|
|
|
|
return hint_path;
|
2017-10-05 00:08:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
MonoString *godot_icall_BuildInstance_get_MSBuildPath() {
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
GodotSharpBuilds::BuildTool build_tool = GodotSharpBuilds::BuildTool(int(EditorSettings::get_singleton()->get("mono/builds/build_tool")));
|
|
|
|
|
2017-10-05 00:08:38 +02:00
|
|
|
#if defined(WINDOWS_ENABLED)
|
2017-10-02 23:24:00 +02:00
|
|
|
switch (build_tool) {
|
2018-05-17 01:26:02 +02:00
|
|
|
case GodotSharpBuilds::MSBUILD_VS: {
|
2017-10-02 23:24:00 +02:00
|
|
|
static String msbuild_tools_path = MonoRegUtils::find_msbuild_tools_path();
|
|
|
|
|
|
|
|
if (msbuild_tools_path.length()) {
|
|
|
|
if (!msbuild_tools_path.ends_with("\\"))
|
|
|
|
msbuild_tools_path += "\\";
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
return GDMonoMarshal::mono_string_from_godot(msbuild_tools_path + "MSBuild.exe");
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
2018-08-24 08:47:34 +02:00
|
|
|
print_verbose("Cannot find executable for '" PROP_NAME_MSBUILD_VS "'. Trying with '" PROP_NAME_MSBUILD_MONO "'...");
|
2018-05-17 01:26:02 +02:00
|
|
|
} // FALL THROUGH
|
2017-10-02 23:24:00 +02:00
|
|
|
case GodotSharpBuilds::MSBUILD_MONO: {
|
|
|
|
String msbuild_path = GDMono::get_singleton()->get_mono_reg_info().bin_dir.plus_file("msbuild.bat");
|
|
|
|
|
|
|
|
if (!FileAccess::exists(msbuild_path)) {
|
2018-05-17 01:26:02 +02:00
|
|
|
WARN_PRINTS("Cannot find executable for '" PROP_NAME_MSBUILD_MONO "'. Tried with path: " + msbuild_path);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
return GDMonoMarshal::mono_string_from_godot(msbuild_path);
|
|
|
|
} break;
|
|
|
|
case GodotSharpBuilds::XBUILD: {
|
|
|
|
String xbuild_path = GDMono::get_singleton()->get_mono_reg_info().bin_dir.plus_file("xbuild.bat");
|
2017-10-29 10:11:20 +01:00
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
if (!FileAccess::exists(xbuild_path)) {
|
|
|
|
WARN_PRINTS("Cannot find executable for '" PROP_NAME_XBUILD "'. Tried with path: " + xbuild_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GDMonoMarshal::mono_string_from_godot(xbuild_path);
|
2017-10-24 22:47:27 +02:00
|
|
|
} break;
|
2017-10-02 23:24:00 +02:00
|
|
|
default:
|
|
|
|
ERR_EXPLAIN("You don't deserve to live");
|
|
|
|
CRASH_NOW();
|
|
|
|
}
|
2017-10-05 00:08:38 +02:00
|
|
|
#elif defined(UNIX_ENABLED)
|
|
|
|
static String msbuild_path = _find_build_engine_on_unix("msbuild");
|
|
|
|
static String xbuild_path = _find_build_engine_on_unix("xbuild");
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
if (build_tool == GodotSharpBuilds::XBUILD) {
|
|
|
|
if (xbuild_path.empty()) {
|
|
|
|
WARN_PRINT("Cannot find binary for '" PROP_NAME_XBUILD "'");
|
2018-05-17 11:34:05 +02:00
|
|
|
return NULL;
|
2017-10-05 00:08:38 +02:00
|
|
|
}
|
|
|
|
} else {
|
2018-05-17 01:26:02 +02:00
|
|
|
if (msbuild_path.empty()) {
|
|
|
|
WARN_PRINT("Cannot find binary for '" PROP_NAME_MSBUILD_MONO "'");
|
2018-05-17 11:34:05 +02:00
|
|
|
return NULL;
|
2017-10-05 00:08:38 +02:00
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
return GDMonoMarshal::mono_string_from_godot(build_tool != GodotSharpBuilds::XBUILD ? msbuild_path : xbuild_path);
|
|
|
|
#else
|
|
|
|
(void)build_tool; // UNUSED
|
|
|
|
|
|
|
|
ERR_EXPLAIN("Not implemented on this platform");
|
|
|
|
ERR_FAIL_V(NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
MonoString *godot_icall_BuildInstance_get_FrameworkPath() {
|
|
|
|
|
|
|
|
#if defined(WINDOWS_ENABLED)
|
|
|
|
const MonoRegInfo &mono_reg_info = GDMono::get_singleton()->get_mono_reg_info();
|
|
|
|
if (mono_reg_info.assembly_dir.length()) {
|
|
|
|
String framework_path = path_join(mono_reg_info.assembly_dir, "mono", "4.5");
|
|
|
|
return GDMonoMarshal::mono_string_from_godot(framework_path);
|
|
|
|
}
|
2017-10-29 10:11:20 +01:00
|
|
|
|
2018-05-17 01:26:02 +02:00
|
|
|
ERR_EXPLAIN("Cannot find Mono's assemblies directory in the registry");
|
|
|
|
ERR_FAIL_V(NULL);
|
2017-10-05 00:08:38 +02:00
|
|
|
#else
|
2018-05-17 01:26:02 +02:00
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
MonoString *godot_icall_BuildInstance_get_MonoWindowsBinDir() {
|
|
|
|
|
|
|
|
#if defined(WINDOWS_ENABLED)
|
|
|
|
const MonoRegInfo &mono_reg_info = GDMono::get_singleton()->get_mono_reg_info();
|
|
|
|
if (mono_reg_info.bin_dir.length()) {
|
|
|
|
return GDMonoMarshal::mono_string_from_godot(mono_reg_info.bin_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
ERR_EXPLAIN("Cannot find Mono's binaries directory in the registry");
|
|
|
|
ERR_FAIL_V(NULL);
|
|
|
|
#else
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
MonoBoolean godot_icall_BuildInstance_get_UsingMonoMSBuildOnWindows() {
|
|
|
|
|
|
|
|
#if defined(WINDOWS_ENABLED)
|
|
|
|
return GodotSharpBuilds::BuildTool(int(EditorSettings::get_singleton()->get("mono/builds/build_tool"))) == GodotSharpBuilds::MSBUILD_MONO;
|
|
|
|
#else
|
|
|
|
return false;
|
2017-10-02 23:24:00 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::_register_internal_calls() {
|
|
|
|
|
|
|
|
mono_add_internal_call("GodotSharpTools.Build.BuildSystem::godot_icall_BuildInstance_ExitCallback", (void *)godot_icall_BuildInstance_ExitCallback);
|
2018-05-17 01:26:02 +02:00
|
|
|
mono_add_internal_call("GodotSharpTools.Build.BuildInstance::godot_icall_BuildInstance_get_MSBuildPath", (void *)godot_icall_BuildInstance_get_MSBuildPath);
|
|
|
|
mono_add_internal_call("GodotSharpTools.Build.BuildInstance::godot_icall_BuildInstance_get_FrameworkPath", (void *)godot_icall_BuildInstance_get_FrameworkPath);
|
|
|
|
mono_add_internal_call("GodotSharpTools.Build.BuildInstance::godot_icall_BuildInstance_get_MonoWindowsBinDir", (void *)godot_icall_BuildInstance_get_MonoWindowsBinDir);
|
|
|
|
mono_add_internal_call("GodotSharpTools.Build.BuildInstance::godot_icall_BuildInstance_get_UsingMonoMSBuildOnWindows", (void *)godot_icall_BuildInstance_get_UsingMonoMSBuildOnWindows);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::show_build_error_dialog(const String &p_message) {
|
|
|
|
|
|
|
|
GodotSharpEditor::get_singleton()->show_error_dialog(p_message, "Build error");
|
|
|
|
MonoBottomPanel::get_singleton()->show_build_tab();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GodotSharpBuilds::build_api_sln(const String &p_name, const String &p_api_sln_dir, const String &p_config) {
|
|
|
|
|
|
|
|
String api_sln_file = p_api_sln_dir.plus_file(p_name + ".sln");
|
|
|
|
String api_assembly_dir = p_api_sln_dir.plus_file("bin").plus_file(p_config);
|
|
|
|
String api_assembly_file = api_assembly_dir.plus_file(p_name + ".dll");
|
|
|
|
|
|
|
|
if (!FileAccess::exists(api_assembly_file)) {
|
|
|
|
MonoBuildInfo api_build_info(api_sln_file, p_config);
|
2018-08-17 13:49:15 +02:00
|
|
|
// TODO Replace this global NoWarn with '#pragma warning' directives on generated files,
|
|
|
|
// once we start to actively document manually maintained C# classes
|
2017-10-02 23:24:00 +02:00
|
|
|
api_build_info.custom_props.push_back("NoWarn=1591"); // Ignore missing documentation warnings
|
|
|
|
|
|
|
|
if (!GodotSharpBuilds::get_singleton()->build(api_build_info)) {
|
|
|
|
show_build_error_dialog("Failed to build " + p_name + " solution.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
bool GodotSharpBuilds::copy_api_assembly(const String &p_src_dir, const String &p_dst_dir, const String &p_assembly_name, APIAssembly::Type p_api_type) {
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
String assembly_file = p_assembly_name + ".dll";
|
|
|
|
String assembly_src = p_src_dir.plus_file(assembly_file);
|
|
|
|
String assembly_dst = p_dst_dir.plus_file(assembly_file);
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
if (!FileAccess::exists(assembly_dst) ||
|
|
|
|
FileAccess::get_modified_time(assembly_src) > FileAccess::get_modified_time(assembly_dst) ||
|
|
|
|
GDMono::get_singleton()->metadata_is_api_assembly_invalidated(p_api_type)) {
|
2017-10-02 23:24:00 +02:00
|
|
|
DirAccess *da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
|
|
|
|
|
|
|
|
String xml_file = p_assembly_name + ".xml";
|
|
|
|
if (da->copy(p_src_dir.plus_file(xml_file), p_dst_dir.plus_file(xml_file)) != OK)
|
|
|
|
WARN_PRINTS("Failed to copy " + xml_file);
|
|
|
|
|
|
|
|
String pdb_file = p_assembly_name + ".pdb";
|
|
|
|
if (da->copy(p_src_dir.plus_file(pdb_file), p_dst_dir.plus_file(pdb_file)) != OK)
|
|
|
|
WARN_PRINTS("Failed to copy " + pdb_file);
|
|
|
|
|
|
|
|
Error err = da->copy(assembly_src, assembly_dst);
|
|
|
|
|
|
|
|
memdelete(da);
|
|
|
|
|
|
|
|
if (err != OK) {
|
2018-02-22 13:39:41 +01:00
|
|
|
show_build_error_dialog("Failed to copy " + assembly_file);
|
2017-10-02 23:24:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-02-22 13:13:51 +01:00
|
|
|
|
|
|
|
GDMono::get_singleton()->metadata_set_api_assembly_invalidated(p_api_type, false);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
String GodotSharpBuilds::_api_folder_name(APIAssembly::Type p_api_type) {
|
|
|
|
|
|
|
|
uint64_t api_hash = p_api_type == APIAssembly::API_CORE ?
|
|
|
|
GDMono::get_singleton()->get_api_core_hash() :
|
|
|
|
GDMono::get_singleton()->get_api_editor_hash();
|
|
|
|
return String::num_uint64(api_hash) +
|
|
|
|
"_" + String::num_uint64(BindingsGenerator::get_version()) +
|
|
|
|
"_" + String::num_uint64(BindingsGenerator::get_cs_glue_version());
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
bool GodotSharpBuilds::make_api_sln(APIAssembly::Type p_api_type) {
|
|
|
|
|
|
|
|
String api_name = p_api_type == APIAssembly::API_CORE ? API_ASSEMBLY_NAME : EDITOR_API_ASSEMBLY_NAME;
|
2017-10-02 23:24:00 +02:00
|
|
|
String api_build_config = "Release";
|
|
|
|
|
|
|
|
EditorProgress pr("mono_build_release_" + api_name, "Building " + api_name + " solution...", 4);
|
|
|
|
|
|
|
|
pr.step("Generating " + api_name + " solution");
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
String core_api_sln_dir = GodotSharpDirs::get_mono_solutions_dir()
|
|
|
|
.plus_file(_api_folder_name(APIAssembly::API_CORE))
|
|
|
|
.plus_file(API_ASSEMBLY_NAME);
|
|
|
|
String editor_api_sln_dir = GodotSharpDirs::get_mono_solutions_dir()
|
|
|
|
.plus_file(_api_folder_name(APIAssembly::API_EDITOR))
|
|
|
|
.plus_file(EDITOR_API_ASSEMBLY_NAME);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
String api_sln_dir = p_api_type == APIAssembly::API_CORE ? core_api_sln_dir : editor_api_sln_dir;
|
2017-10-02 23:24:00 +02:00
|
|
|
String api_sln_file = api_sln_dir.plus_file(api_name + ".sln");
|
|
|
|
|
|
|
|
if (!DirAccess::exists(api_sln_dir) || !FileAccess::exists(api_sln_file)) {
|
|
|
|
String core_api_assembly;
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
if (p_api_type == APIAssembly::API_EDITOR) {
|
2017-10-02 23:24:00 +02:00
|
|
|
core_api_assembly = core_api_sln_dir.plus_file("bin")
|
|
|
|
.plus_file(api_build_config)
|
|
|
|
.plus_file(API_ASSEMBLY_NAME ".dll");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef DEBUG_METHODS_ENABLED
|
|
|
|
#error "How am I supposed to generate the bindings?"
|
|
|
|
#endif
|
|
|
|
|
2018-01-01 03:04:49 +01:00
|
|
|
BindingsGenerator *gen = BindingsGenerator::get_singleton();
|
2017-10-02 23:24:00 +02:00
|
|
|
bool gen_verbose = OS::get_singleton()->is_stdout_verbose();
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
Error err = p_api_type == APIAssembly::API_CORE ?
|
2018-01-01 03:04:49 +01:00
|
|
|
gen->generate_cs_core_project(api_sln_dir, gen_verbose) :
|
|
|
|
gen->generate_cs_editor_project(api_sln_dir, core_api_assembly, gen_verbose);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
if (err != OK) {
|
|
|
|
show_build_error_dialog("Failed to generate " + api_name + " solution. Error: " + itos(err));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pr.step("Building " + api_name + " solution");
|
|
|
|
|
|
|
|
if (!GodotSharpBuilds::build_api_sln(api_name, api_sln_dir, api_build_config))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
pr.step("Copying " + api_name + " assembly");
|
|
|
|
|
|
|
|
String res_assemblies_dir = GodotSharpDirs::get_res_assemblies_dir();
|
|
|
|
|
|
|
|
// Create assemblies directory if needed
|
|
|
|
if (!DirAccess::exists(res_assemblies_dir)) {
|
|
|
|
DirAccess *da = DirAccess::create_for_path(res_assemblies_dir);
|
|
|
|
Error err = da->make_dir_recursive(res_assemblies_dir);
|
|
|
|
memdelete(da);
|
|
|
|
|
|
|
|
if (err != OK) {
|
|
|
|
show_build_error_dialog("Failed to create assemblies directory. Error: " + itos(err));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the built assembly to the assemblies directory
|
|
|
|
String api_assembly_dir = api_sln_dir.plus_file("bin").plus_file(api_build_config);
|
2018-02-22 13:13:51 +01:00
|
|
|
if (!GodotSharpBuilds::copy_api_assembly(api_assembly_dir, res_assemblies_dir, api_name, p_api_type))
|
2017-10-02 23:24:00 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
pr.step("Done");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:39:41 +01:00
|
|
|
bool GodotSharpBuilds::build_project_blocking(const String &p_config) {
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
if (!FileAccess::exists(GodotSharpDirs::get_project_sln_path()))
|
|
|
|
return true; // No solution to build
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
if (!GodotSharpBuilds::make_api_sln(APIAssembly::API_CORE))
|
2017-10-02 23:24:00 +02:00
|
|
|
return false;
|
|
|
|
|
2018-02-22 13:13:51 +01:00
|
|
|
if (!GodotSharpBuilds::make_api_sln(APIAssembly::API_EDITOR))
|
2017-10-02 23:24:00 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
EditorProgress pr("mono_project_debug_build", "Building project solution...", 2);
|
|
|
|
|
|
|
|
pr.step("Building project solution");
|
|
|
|
|
2018-02-22 13:39:41 +01:00
|
|
|
MonoBuildInfo build_info(GodotSharpDirs::get_project_sln_path(), p_config);
|
2017-10-02 23:24:00 +02:00
|
|
|
if (!GodotSharpBuilds::get_singleton()->build(build_info)) {
|
|
|
|
GodotSharpBuilds::show_build_error_dialog("Failed to build project solution");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
pr.step("Done");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:39:41 +01:00
|
|
|
bool GodotSharpBuilds::editor_build_callback() {
|
|
|
|
|
|
|
|
return build_project_blocking("Tools");
|
|
|
|
}
|
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
GodotSharpBuilds *GodotSharpBuilds::singleton = NULL;
|
|
|
|
|
|
|
|
void GodotSharpBuilds::build_exit_callback(const MonoBuildInfo &p_build_info, int p_exit_code) {
|
|
|
|
|
|
|
|
BuildProcess *match = builds.getptr(p_build_info);
|
2017-12-24 03:17:48 +01:00
|
|
|
ERR_FAIL_NULL(match);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
BuildProcess &bp = *match;
|
|
|
|
bp.on_exit(p_exit_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::restart_build(MonoBuildTab *p_build_tab) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::stop_build(MonoBuildTab *p_build_tab) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GodotSharpBuilds::build(const MonoBuildInfo &p_build_info) {
|
|
|
|
|
|
|
|
BuildProcess *match = builds.getptr(p_build_info);
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
BuildProcess &bp = *match;
|
|
|
|
bp.start(true);
|
|
|
|
return bp.exit_code == 0;
|
|
|
|
} else {
|
|
|
|
BuildProcess bp = BuildProcess(p_build_info);
|
|
|
|
bp.start(true);
|
|
|
|
builds.set(p_build_info, bp);
|
|
|
|
return bp.exit_code == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GodotSharpBuilds::build_async(const MonoBuildInfo &p_build_info, GodotSharpBuild_ExitCallback p_callback) {
|
|
|
|
|
|
|
|
BuildProcess *match = builds.getptr(p_build_info);
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
BuildProcess &bp = *match;
|
|
|
|
bp.start();
|
|
|
|
return !bp.exited; // failed to start
|
|
|
|
} else {
|
|
|
|
BuildProcess bp = BuildProcess(p_build_info, p_callback);
|
|
|
|
bp.start();
|
|
|
|
builds.set(p_build_info, bp);
|
|
|
|
return !bp.exited; // failed to start
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GodotSharpBuilds::GodotSharpBuilds() {
|
|
|
|
|
|
|
|
singleton = this;
|
|
|
|
|
2018-02-22 13:39:41 +01:00
|
|
|
EditorNode::get_singleton()->add_build_callback(&GodotSharpBuilds::editor_build_callback);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
// Build tool settings
|
|
|
|
EditorSettings *ed_settings = EditorSettings::get_singleton();
|
2017-11-10 10:04:25 +01:00
|
|
|
|
|
|
|
EDITOR_DEF("mono/builds/build_tool", MSBUILD_MONO);
|
|
|
|
|
2017-10-24 22:47:27 +02:00
|
|
|
ed_settings->add_property_hint(PropertyInfo(Variant::INT, "mono/builds/build_tool", PROPERTY_HINT_ENUM,
|
2018-05-17 01:26:02 +02:00
|
|
|
PROP_NAME_MSBUILD_MONO
|
2017-10-24 22:47:27 +02:00
|
|
|
#ifdef WINDOWS_ENABLED
|
2018-05-17 01:26:02 +02:00
|
|
|
"," PROP_NAME_MSBUILD_VS
|
2017-10-24 22:47:27 +02:00
|
|
|
#endif
|
2018-05-17 01:26:02 +02:00
|
|
|
"," PROP_NAME_XBUILD));
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GodotSharpBuilds::~GodotSharpBuilds() {
|
|
|
|
|
|
|
|
singleton = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::BuildProcess::on_exit(int p_exit_code) {
|
|
|
|
|
|
|
|
exited = true;
|
|
|
|
exit_code = p_exit_code;
|
|
|
|
build_tab->on_build_exit(p_exit_code == 0 ? MonoBuildTab::RESULT_SUCCESS : MonoBuildTab::RESULT_ERROR);
|
|
|
|
build_instance.unref();
|
|
|
|
|
|
|
|
if (exit_callback)
|
|
|
|
exit_callback(exit_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GodotSharpBuilds::BuildProcess::start(bool p_blocking) {
|
|
|
|
|
|
|
|
_GDMONO_SCOPE_DOMAIN_(TOOLS_DOMAIN)
|
|
|
|
|
|
|
|
exit_code = -1;
|
|
|
|
|
2018-06-05 22:21:52 +02:00
|
|
|
String log_dirpath = build_info.get_log_dirpath();
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
if (build_tab) {
|
|
|
|
build_tab->on_build_start();
|
|
|
|
} else {
|
2018-06-05 22:21:52 +02:00
|
|
|
build_tab = memnew(MonoBuildTab(build_info, log_dirpath));
|
2017-10-02 23:24:00 +02:00
|
|
|
MonoBottomPanel::get_singleton()->add_build_tab(build_tab);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_blocking) {
|
|
|
|
// Required in order to update the build tasks list
|
|
|
|
Main::iteration();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!exited) {
|
|
|
|
exited = true;
|
2017-10-24 00:49:44 +02:00
|
|
|
String message = "Tried to start build process, but it is already running";
|
|
|
|
build_tab->on_build_exec_failed(message);
|
|
|
|
ERR_EXPLAIN(message);
|
|
|
|
ERR_FAIL();
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
exited = false;
|
|
|
|
|
|
|
|
// Remove old issues file
|
|
|
|
|
|
|
|
String issues_file = "msbuild_issues.csv";
|
2018-06-05 22:21:52 +02:00
|
|
|
DirAccessRef d = DirAccess::create_for_path(log_dirpath);
|
2017-10-02 23:24:00 +02:00
|
|
|
if (d->file_exists(issues_file)) {
|
|
|
|
Error err = d->remove(issues_file);
|
|
|
|
if (err != OK) {
|
|
|
|
exited = true;
|
2018-06-05 22:21:52 +02:00
|
|
|
String file_path = ProjectSettings::get_singleton()->localize_path(log_dirpath).plus_file(issues_file);
|
2017-10-24 00:49:44 +02:00
|
|
|
String message = "Cannot remove issues file: " + file_path;
|
|
|
|
build_tab->on_build_exec_failed(message);
|
|
|
|
ERR_EXPLAIN(message);
|
|
|
|
ERR_FAIL();
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GDMonoClass *klass = GDMono::get_singleton()->get_editor_tools_assembly()->get_class("GodotSharpTools.Build", "BuildInstance");
|
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
MonoObject *mono_object = mono_object_new(mono_domain_get(), klass->get_mono_ptr());
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
// Construct
|
|
|
|
|
|
|
|
Variant solution = build_info.solution;
|
|
|
|
Variant config = build_info.configuration;
|
|
|
|
|
|
|
|
const Variant *ctor_args[2] = { &solution, &config };
|
|
|
|
|
2018-06-26 21:03:42 +02:00
|
|
|
MonoException *exc = NULL;
|
2017-10-02 23:24:00 +02:00
|
|
|
GDMonoMethod *ctor = klass->get_method(".ctor", 2);
|
2018-06-26 21:03:42 +02:00
|
|
|
ctor->invoke(mono_object, ctor_args, &exc);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-06-26 21:03:42 +02:00
|
|
|
if (exc) {
|
2017-10-02 23:24:00 +02:00
|
|
|
exited = true;
|
2018-06-26 21:03:42 +02:00
|
|
|
GDMonoUtils::debug_unhandled_exception(exc);
|
|
|
|
String message = "The build constructor threw an exception.\n" + GDMonoUtils::get_exception_name_and_message(exc);
|
2017-10-24 00:49:44 +02:00
|
|
|
build_tab->on_build_exec_failed(message);
|
|
|
|
ERR_EXPLAIN(message);
|
2017-10-02 23:24:00 +02:00
|
|
|
ERR_FAIL();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call Build
|
|
|
|
|
2018-06-05 22:18:43 +02:00
|
|
|
String logger_assembly_path = GDMono::get_singleton()->get_editor_tools_assembly()->get_path();
|
|
|
|
Variant logger_assembly = ProjectSettings::get_singleton()->globalize_path(logger_assembly_path);
|
|
|
|
Variant logger_output_dir = log_dirpath;
|
2017-10-02 23:24:00 +02:00
|
|
|
Variant custom_props = build_info.custom_props;
|
|
|
|
|
|
|
|
const Variant *args[3] = { &logger_assembly, &logger_output_dir, &custom_props };
|
|
|
|
|
2018-06-26 21:03:42 +02:00
|
|
|
exc = NULL;
|
2017-10-02 23:24:00 +02:00
|
|
|
GDMonoMethod *build_method = klass->get_method(p_blocking ? "Build" : "BuildAsync", 3);
|
2018-06-26 21:03:42 +02:00
|
|
|
build_method->invoke(mono_object, args, &exc);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-06-26 21:03:42 +02:00
|
|
|
if (exc) {
|
2017-10-02 23:24:00 +02:00
|
|
|
exited = true;
|
2018-06-26 21:03:42 +02:00
|
|
|
GDMonoUtils::debug_unhandled_exception(exc);
|
|
|
|
String message = "The build method threw an exception.\n" + GDMonoUtils::get_exception_name_and_message(exc);
|
2017-10-24 00:49:44 +02:00
|
|
|
build_tab->on_build_exec_failed(message);
|
|
|
|
ERR_EXPLAIN(message);
|
2017-10-02 23:24:00 +02:00
|
|
|
ERR_FAIL();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build returned
|
|
|
|
|
|
|
|
if (p_blocking) {
|
|
|
|
exited = true;
|
|
|
|
exit_code = klass->get_field("exitCode")->get_int_value(mono_object);
|
2017-10-07 01:21:11 +02:00
|
|
|
|
2018-08-24 08:47:34 +02:00
|
|
|
if (exit_code != 0) {
|
|
|
|
print_verbose("MSBuild finished with exit code " + itos(exit_code));
|
|
|
|
}
|
2017-10-07 01:21:11 +02:00
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
build_tab->on_build_exit(exit_code == 0 ? MonoBuildTab::RESULT_SUCCESS : MonoBuildTab::RESULT_ERROR);
|
|
|
|
} else {
|
|
|
|
build_instance = MonoGCHandle::create_strong(mono_object);
|
|
|
|
exited = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-28 03:14:52 +02:00
|
|
|
GodotSharpBuilds::BuildProcess::BuildProcess(const MonoBuildInfo &p_build_info, GodotSharpBuild_ExitCallback p_callback) :
|
|
|
|
build_info(p_build_info),
|
|
|
|
build_tab(NULL),
|
|
|
|
exit_callback(p_callback),
|
|
|
|
exited(true),
|
|
|
|
exit_code(-1) {
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|