main.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include "Editor.h"
  7. #include "HackStudio.h"
  8. #include "HackStudioWidget.h"
  9. #include "Project.h"
  10. #include <AK/StringBuilder.h>
  11. #include <LibConfig/Client.h>
  12. #include <LibCore/ArgsParser.h>
  13. #include <LibCore/File.h>
  14. #include <LibCore/System.h>
  15. #include <LibGUI/Application.h>
  16. #include <LibGUI/Menubar.h>
  17. #include <LibGUI/Notification.h>
  18. #include <LibGUI/Window.h>
  19. #include <LibMain/Main.h>
  20. #include <fcntl.h>
  21. #include <spawn.h>
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <sys/wait.h>
  25. #include <unistd.h>
  26. using namespace HackStudio;
  27. static WeakPtr<HackStudioWidget> s_hack_studio_widget;
  28. static bool make_is_available();
  29. static void notify_make_not_available();
  30. static void update_path_environment_variable();
  31. static Optional<String> last_opened_project_path();
  32. ErrorOr<int> serenity_main(Main::Arguments arguments)
  33. {
  34. TRY(Core::System::pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix fattr thread ptrace"));
  35. auto app = GUI::Application::construct(arguments.argc, arguments.argv);
  36. Config::pledge_domains({ "HackStudio", "Terminal" });
  37. auto window = GUI::Window::construct();
  38. window->resize(840, 600);
  39. window->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-hack-studio.png").release_value_but_fixme_should_propagate_errors());
  40. update_path_environment_variable();
  41. if (!make_is_available()) {
  42. notify_make_not_available();
  43. }
  44. const char* path_argument = nullptr;
  45. bool mode_coredump = false;
  46. Core::ArgsParser args_parser;
  47. args_parser.add_positional_argument(path_argument, "Path to a workspace or a file", "path", Core::ArgsParser::Required::No);
  48. args_parser.add_option(mode_coredump, "Debug a coredump in HackStudio", "coredump", 'c');
  49. args_parser.parse(arguments);
  50. auto argument_absolute_path = Core::File::real_path_for(path_argument);
  51. auto project_path = Core::File::real_path_for(".");
  52. if (!mode_coredump) {
  53. if (!argument_absolute_path.is_null())
  54. project_path = argument_absolute_path;
  55. else if (auto path = last_opened_project_path(); path.has_value())
  56. project_path = path.release_value();
  57. }
  58. auto hack_studio_widget = TRY(window->try_set_main_widget<HackStudioWidget>(project_path));
  59. s_hack_studio_widget = hack_studio_widget;
  60. window->set_title(String::formatted("{} - Hack Studio", hack_studio_widget->project().name()));
  61. hack_studio_widget->initialize_menubar(*window);
  62. window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
  63. hack_studio_widget->locator().close();
  64. if (hack_studio_widget->warn_unsaved_changes("There are unsaved changes, do you want to save before exiting?") == HackStudioWidget::ContinueDecision::Yes)
  65. return GUI::Window::CloseRequestDecision::Close;
  66. return GUI::Window::CloseRequestDecision::StayOpen;
  67. };
  68. window->show();
  69. hack_studio_widget->update_actions();
  70. if (mode_coredump)
  71. hack_studio_widget->open_coredump(argument_absolute_path);
  72. return app->exec();
  73. }
  74. static bool make_is_available()
  75. {
  76. pid_t pid;
  77. const char* argv[] = { "make", "--version", nullptr };
  78. posix_spawn_file_actions_t action;
  79. posix_spawn_file_actions_init(&action);
  80. posix_spawn_file_actions_addopen(&action, STDOUT_FILENO, "/dev/null", O_WRONLY, 0);
  81. if ((errno = posix_spawnp(&pid, "make", &action, nullptr, const_cast<char**>(argv), environ))) {
  82. perror("posix_spawn");
  83. return false;
  84. }
  85. int wstatus;
  86. waitpid(pid, &wstatus, 0);
  87. posix_spawn_file_actions_destroy(&action);
  88. return WEXITSTATUS(wstatus) == 0;
  89. }
  90. static void notify_make_not_available()
  91. {
  92. auto notification = GUI::Notification::construct();
  93. notification->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/32x32/app-hack-studio.png").release_value_but_fixme_should_propagate_errors());
  94. notification->set_title("'make' Not Available");
  95. notification->set_text("You probably want to install the binutils, gcc, and make ports from the root of the Serenity repository");
  96. notification->show();
  97. }
  98. static void update_path_environment_variable()
  99. {
  100. StringBuilder path;
  101. path.append(getenv("PATH"));
  102. if (path.length())
  103. path.append(":");
  104. path.append("/usr/local/bin:/usr/bin:/bin");
  105. setenv("PATH", path.to_string().characters(), true);
  106. }
  107. static Optional<String> last_opened_project_path()
  108. {
  109. auto projects = HackStudioWidget::read_recent_projects();
  110. if (projects.size() == 0)
  111. return {};
  112. if (!Core::File::exists(projects[0]))
  113. return {};
  114. return { projects[0] };
  115. }
  116. namespace HackStudio {
  117. GUI::TextEditor& current_editor()
  118. {
  119. return s_hack_studio_widget->current_editor();
  120. }
  121. void open_file(const String& filename)
  122. {
  123. s_hack_studio_widget->open_file(filename);
  124. }
  125. void open_file(const String& filename, size_t line, size_t column)
  126. {
  127. s_hack_studio_widget->open_file(filename, line, column);
  128. }
  129. RefPtr<EditorWrapper> current_editor_wrapper()
  130. {
  131. if (!s_hack_studio_widget)
  132. return nullptr;
  133. return s_hack_studio_widget->current_editor_wrapper();
  134. }
  135. Project& project()
  136. {
  137. return s_hack_studio_widget->project();
  138. }
  139. String currently_open_file()
  140. {
  141. if (!s_hack_studio_widget)
  142. return {};
  143. return s_hack_studio_widget->active_file();
  144. }
  145. void set_current_editor_wrapper(RefPtr<EditorWrapper> wrapper)
  146. {
  147. s_hack_studio_widget->set_current_editor_wrapper(wrapper);
  148. }
  149. Locator& locator()
  150. {
  151. return s_hack_studio_widget->locator();
  152. }
  153. void for_each_open_file(Function<void(ProjectFile const&)> func)
  154. {
  155. s_hack_studio_widget->for_each_open_file(move(func));
  156. }
  157. bool semantic_syntax_highlighting_is_enabled()
  158. {
  159. return s_hack_studio_widget->semantic_syntax_highlighting_is_enabled();
  160. }
  161. }