123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /*
- * Copyright (c) 2020, Hunter Salyer <thefalsehonesty@gmail.com>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "ConsoleWidget.h"
- #include <AK/StringBuilder.h>
- #include <LibGUI/BoxLayout.h>
- #include <LibGUI/Button.h>
- #include <LibGUI/JSSyntaxHighlighter.h>
- #include <LibGUI/TextBox.h>
- #include <LibJS/Interpreter.h>
- #include <LibJS/MarkupGenerator.h>
- #include <LibJS/Parser.h>
- #include <LibJS/Runtime/Error.h>
- #include <LibWeb/DOM/DocumentType.h>
- #include <LibWeb/DOM/ElementFactory.h>
- #include <LibWeb/DOM/Text.h>
- #include <LibWeb/DOMTreeModel.h>
- #include <LibWeb/HTML/HTMLBodyElement.h>
- namespace Browser {
- ConsoleWidget::ConsoleWidget()
- {
- set_layout<GUI::VerticalBoxLayout>();
- set_fill_with_background_color(true);
- auto base_document = adopt(*new Web::DOM::Document);
- base_document->append_child(adopt(*new Web::DOM::DocumentType(base_document)));
- auto html_element = Web::DOM::create_element(base_document, "html");
- base_document->append_child(html_element);
- auto head_element = Web::DOM::create_element(base_document, "head");
- html_element->append_child(head_element);
- auto body_element = Web::DOM::create_element(base_document, "body");
- html_element->append_child(body_element);
- m_output_container = body_element;
- m_output_view = add<Web::InProcessWebView>();
- m_output_view->set_document(base_document);
- auto& bottom_container = add<GUI::Widget>();
- bottom_container.set_layout<GUI::HorizontalBoxLayout>();
- bottom_container.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
- bottom_container.set_preferred_size(0, 22);
- m_input = bottom_container.add<GUI::TextBox>();
- m_input->set_syntax_highlighter(make<GUI::JSSyntaxHighlighter>());
- // FIXME: Syntax Highlighting breaks the cursor's position on non fixed-width fonts.
- m_input->set_font(Gfx::Font::default_fixed_width_font());
- m_input->set_history_enabled(true);
- m_input->on_return_pressed = [this] {
- auto js_source = m_input->text();
- // FIXME: An is_blank check to check if there is only whitespace would probably be preferable.
- if (js_source.is_empty())
- return;
- m_input->add_current_text_to_history();
- m_input->clear();
- print_source_line(js_source);
- auto parser = JS::Parser(JS::Lexer(js_source));
- auto program = parser.parse_program();
- StringBuilder output_html;
- if (parser.has_errors()) {
- auto error = parser.errors()[0];
- auto hint = error.source_location_hint(js_source);
- if (!hint.is_empty())
- output_html.append(String::formatted("<pre>{}</pre>", escape_html_entities(hint)));
- m_interpreter->vm().throw_exception<JS::SyntaxError>(m_interpreter->global_object(), error.to_string());
- } else {
- m_interpreter->run(m_interpreter->global_object(), *program);
- }
- if (m_interpreter->exception()) {
- output_html.append("Uncaught exception: ");
- output_html.append(JS::MarkupGenerator::html_from_value(m_interpreter->exception()->value()));
- print_html(output_html.string_view());
- m_interpreter->vm().clear_exception();
- return;
- }
- print_html(JS::MarkupGenerator::html_from_value(m_interpreter->vm().last_value()));
- };
- auto& clear_button = bottom_container.add<GUI::Button>();
- clear_button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
- clear_button.set_preferred_size(22, 22);
- clear_button.set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/delete.png"));
- clear_button.set_tooltip("Clear the console output");
- clear_button.on_click = [this](auto) {
- clear_output();
- };
- }
- ConsoleWidget::~ConsoleWidget()
- {
- }
- void ConsoleWidget::set_interpreter(WeakPtr<JS::Interpreter> interpreter)
- {
- if (m_interpreter.ptr() == interpreter.ptr())
- return;
- m_interpreter = interpreter;
- m_console_client = make<BrowserConsoleClient>(interpreter->global_object().console(), *this);
- interpreter->global_object().console().set_client(*m_console_client.ptr());
- clear_output();
- }
- void ConsoleWidget::print_source_line(const StringView& source)
- {
- StringBuilder html;
- html.append("<span class=\"repl-indicator\">");
- html.append("> ");
- html.append("</span>");
- html.append(JS::MarkupGenerator::html_from_source(source));
- print_html(html.string_view());
- }
- void ConsoleWidget::print_html(const StringView& line)
- {
- auto paragraph = create_element(m_output_container->document(), "p");
- paragraph->set_inner_html(line);
- m_output_container->append_child(paragraph);
- m_output_container->document().invalidate_layout();
- m_output_container->document().update_layout();
- m_output_view->scroll_to_bottom();
- }
- void ConsoleWidget::clear_output()
- {
- m_output_container->remove_all_children();
- m_output_view->update();
- }
- void ConsoleWidget::focusin_event(GUI::FocusEvent&)
- {
- m_input->set_focus(true);
- }
- }
|