123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include "Editor.h"
- #include "HackStudio.h"
- #include "HackStudioWidget.h"
- #include "Project.h"
- #include <AK/StringBuilder.h>
- #include <LibCore/ArgsParser.h>
- #include <LibCore/Event.h>
- #include <LibCore/EventLoop.h>
- #include <LibCore/File.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/Menubar.h>
- #include <LibGUI/MessageBox.h>
- #include <LibGUI/Notification.h>
- #include <LibGUI/Widget.h>
- #include <LibGUI/Window.h>
- #include <LibThread/Lock.h>
- #include <LibThread/Thread.h>
- #include <LibVT/TerminalWidget.h>
- #include <fcntl.h>
- #include <spawn.h>
- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <unistd.h>
- using namespace HackStudio;
- static RefPtr<GUI::Window> s_window;
- static RefPtr<HackStudioWidget> s_hack_studio_widget;
- static bool make_is_available();
- static void notify_make_not_available();
- static void update_path_environment_variable();
- int main(int argc, char** argv)
- {
- if (pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix thread ptrace", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- auto app = GUI::Application::construct(argc, argv);
- s_window = GUI::Window::construct();
- s_window->resize(840, 600);
- s_window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-hack-studio.png"));
- update_path_environment_variable();
- if (!make_is_available()) {
- notify_make_not_available();
- }
- const char* path_argument = nullptr;
- Core::ArgsParser args_parser;
- args_parser.add_positional_argument(path_argument, "Path to a workspace or a file", "path", Core::ArgsParser::Required::No);
- args_parser.parse(argc, argv);
- auto argument_absolute_path = Core::File::real_path_for(path_argument);
- auto project_path = argument_absolute_path;
- if (argument_absolute_path.is_null())
- project_path = Core::File::real_path_for(".");
- s_hack_studio_widget = s_window->set_main_widget<HackStudioWidget>(project_path);
- s_window->set_title(String::formatted("{} - Hack Studio", s_hack_studio_widget->project().name()));
- auto menubar = GUI::Menubar::construct();
- s_hack_studio_widget->initialize_menubar(menubar);
- s_window->set_menubar(menubar);
- s_window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
- if (s_hack_studio_widget->warn_unsaved_changes("There are unsaved changes, do you want to save before exiting?") == HackStudioWidget::ContinueDecision::Yes)
- return GUI::Window::CloseRequestDecision::Close;
- return GUI::Window::CloseRequestDecision::StayOpen;
- };
- s_window->show();
- s_hack_studio_widget->update_actions();
- return app->exec();
- }
- static bool make_is_available()
- {
- pid_t pid;
- const char* argv[] = { "make", "--version", nullptr };
- posix_spawn_file_actions_t action;
- posix_spawn_file_actions_init(&action);
- posix_spawn_file_actions_addopen(&action, STDOUT_FILENO, "/dev/null", O_WRONLY, 0);
- if ((errno = posix_spawnp(&pid, "make", &action, nullptr, const_cast<char**>(argv), environ))) {
- perror("posix_spawn");
- return false;
- }
- int wstatus;
- waitpid(pid, &wstatus, 0);
- posix_spawn_file_actions_destroy(&action);
- return WEXITSTATUS(wstatus) == 0;
- }
- static void notify_make_not_available()
- {
- auto notification = GUI::Notification::construct();
- notification->set_icon(Gfx::Bitmap::load_from_file("/res/icons/32x32/app-hack-studio.png"));
- notification->set_title("'make' Not Available");
- notification->set_text("You probably want to install the binutils, gcc, and make ports from the root of the Serenity repository");
- notification->show();
- }
- static void update_path_environment_variable()
- {
- StringBuilder path;
- path.append(getenv("PATH"));
- if (path.length())
- path.append(":");
- path.append("/bin:/usr/bin:/usr/local/bin");
- setenv("PATH", path.to_string().characters(), true);
- }
- namespace HackStudio {
- GUI::TextEditor& current_editor()
- {
- return s_hack_studio_widget->current_editor();
- }
- void open_file(const String& filename)
- {
- s_hack_studio_widget->open_file(filename);
- }
- void open_file(const String& filename, size_t line, size_t column)
- {
- s_hack_studio_widget->open_file(filename);
- s_hack_studio_widget->current_editor_wrapper().editor().set_cursor({ line, column });
- }
- RefPtr<EditorWrapper> current_editor_wrapper()
- {
- if (!s_hack_studio_widget)
- return nullptr;
- return s_hack_studio_widget->current_editor_wrapper();
- }
- Project& project()
- {
- return s_hack_studio_widget->project();
- }
- String currently_open_file()
- {
- if (!s_hack_studio_widget)
- return {};
- return s_hack_studio_widget->active_file();
- }
- void set_current_editor_wrapper(RefPtr<EditorWrapper> wrapper)
- {
- s_hack_studio_widget->set_current_editor_wrapper(wrapper);
- }
- Locator& locator()
- {
- return s_hack_studio_widget->locator();
- }
- }
|