#ifndef JUCI_PROJECT_H_ #define JUCI_PROJECT_H_ #include #include "cmake.h" #include #include "directories.h" #include #include #include "tooltips.h" #include "dispatcher.h" #include class Project { private: static boost::filesystem::path debug_last_stop_file_path; public: static std::unordered_map run_arguments; static std::unordered_map debug_run_arguments; static std::atomic compiling; static std::atomic debugging; static std::pair > debug_stop; static void debug_update_stop(); static std::unique_ptr debug_status_label; static void debug_update_status(const std::string &debug_status); class Language { public: Language() {} virtual ~Language() {} virtual std::pair get_run_arguments() {return {"", ""};} virtual void compile() {} virtual void compile_and_run() {} virtual std::pair debug_get_run_arguments() {return {"", ""};} Tooltips debug_variable_tooltips; virtual void debug_start() {} virtual void debug_continue() {} virtual void debug_stop() {} virtual void debug_kill() {} virtual void debug_step_over() {} virtual void debug_step_into() {} virtual void debug_step_out() {} virtual void debug_backtrace() {} virtual void debug_show_variables() {} virtual void debug_run_command(const std::string &command) {} virtual void debug_add_breakpoint(const boost::filesystem::path &file_path, int line_nr) {} virtual void debug_remove_breakpoint(const boost::filesystem::path &file_path, int line_nr, int line_count) {} virtual void debug_delete() {} }; class Clang : public Language { private: Dispatcher dispatcher; public: Clang() : Language() {} ~Clang() { dispatcher.disconnect(); } std::unique_ptr get_cmake(); std::pair get_run_arguments() override; void compile() override; void compile_and_run() override; std::mutex debug_start_mutex; #ifdef JUCI_ENABLE_DEBUG std::pair debug_get_run_arguments() override; void debug_start() override; void debug_continue() override; void debug_stop() override; void debug_kill() override; void debug_step_over() override; void debug_step_into() override; void debug_step_out() override; void debug_backtrace() override; void debug_show_variables() override; void debug_run_command(const std::string &command) override; void debug_add_breakpoint(const boost::filesystem::path &file_path, int line_nr) override; void debug_remove_breakpoint(const boost::filesystem::path &file_path, int line_nr, int line_count) override; void debug_delete() override; #endif }; class Markdown : public Language { public: Markdown() : Language() {} ~Markdown(); boost::filesystem::path last_temp_path; void compile_and_run() override; }; class Python : public Language { public: Python() : Language() {} void compile_and_run() override; }; class JavaScript : public Language { public: JavaScript() : Language() {} void compile_and_run() override; }; class HTML : public Language { public: HTML() : Language() {} void compile_and_run() override; }; static std::unique_ptr get_language(); }; #endif // JUCI_PROJECT_H_