mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			242 lines
		
	
	
	
		
			7.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			242 lines
		
	
	
	
		
			7.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Spencer Dixon <spencercdixon@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "Providers.h"
 | |
| #include <AK/FuzzyMatch.h>
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <AK/URL.h>
 | |
| #include <LibCore/DirIterator.h>
 | |
| #include <LibCore/ElapsedTimer.h>
 | |
| #include <LibCore/Process.h>
 | |
| #include <LibCore/StandardPaths.h>
 | |
| #include <LibDesktop/Launcher.h>
 | |
| #include <LibGUI/Clipboard.h>
 | |
| #include <LibGUI/FileIconProvider.h>
 | |
| #include <LibJS/Interpreter.h>
 | |
| #include <LibJS/Runtime/GlobalObject.h>
 | |
| #include <LibJS/Script.h>
 | |
| #include <errno.h>
 | |
| #include <fcntl.h>
 | |
| #include <serenity.h>
 | |
| #include <spawn.h>
 | |
| #include <sys/stat.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| namespace Assistant {
 | |
| 
 | |
| void AppResult::activate() const
 | |
| {
 | |
|     if (chdir(Core::StandardPaths::home_directory().characters()) < 0) {
 | |
|         perror("chdir");
 | |
|         exit(1);
 | |
|     }
 | |
| 
 | |
|     auto arguments_list = m_arguments.split_view(' ');
 | |
|     m_app_file->spawn(arguments_list.span());
 | |
| }
 | |
| 
 | |
| void CalculatorResult::activate() const
 | |
| {
 | |
|     GUI::Clipboard::the().set_plain_text(title());
 | |
| }
 | |
| 
 | |
| void FileResult::activate() const
 | |
| {
 | |
|     Desktop::Launcher::open(URL::create_with_file_scheme(title()));
 | |
| }
 | |
| 
 | |
| void TerminalResult::activate() const
 | |
| {
 | |
|     // FIXME: This should be a GUI::Process::spawn_or_show_error(), however this is a
 | |
|     // Assistant::Result object, which does not have access to the application's GUI::Window* pointer
 | |
|     // (which spawn_or_show_error() needs in case it has to open a error message box).
 | |
|     (void)Core::Process::spawn("/bin/Terminal"sv, Array { "-k", "-e", title().characters() });
 | |
| }
 | |
| 
 | |
| void URLResult::activate() const
 | |
| {
 | |
|     Desktop::Launcher::open(URL::create_with_url_or_path(title()));
 | |
| }
 | |
| 
 | |
| void AppProvider::query(DeprecatedString const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete)
 | |
| {
 | |
|     if (query.starts_with('=') || query.starts_with('$'))
 | |
|         return;
 | |
| 
 | |
|     NonnullRefPtrVector<Result> results;
 | |
| 
 | |
|     Desktop::AppFile::for_each([&](NonnullRefPtr<Desktop::AppFile> app_file) {
 | |
|         auto query_and_arguments = query.split_limit(' ', 2);
 | |
|         auto app_name = query_and_arguments.is_empty() ? query : query_and_arguments[0];
 | |
|         auto arguments = query_and_arguments.size() < 2 ? DeprecatedString::empty() : query_and_arguments[1];
 | |
|         auto match_result = fuzzy_match(app_name, app_file->name());
 | |
|         if (!match_result.matched)
 | |
|             return;
 | |
| 
 | |
|         auto icon = GUI::FileIconProvider::icon_for_executable(app_file->executable());
 | |
|         results.append(adopt_ref(*new AppResult(icon.bitmap_for_size(16), app_file->name(), {}, app_file, arguments, match_result.score)));
 | |
|     });
 | |
| 
 | |
|     on_complete(move(results));
 | |
| }
 | |
| 
 | |
| void CalculatorProvider::query(DeprecatedString const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete)
 | |
| {
 | |
|     if (!query.starts_with('='))
 | |
|         return;
 | |
| 
 | |
|     auto vm = JS::VM::create();
 | |
|     auto interpreter = JS::Interpreter::create<JS::GlobalObject>(*vm);
 | |
| 
 | |
|     auto source_code = query.substring(1);
 | |
|     auto parse_result = JS::Script::parse(source_code, interpreter->realm());
 | |
|     if (parse_result.is_error())
 | |
|         return;
 | |
| 
 | |
|     auto completion = interpreter->run(parse_result.value());
 | |
|     if (completion.is_error())
 | |
|         return;
 | |
| 
 | |
|     auto result = completion.release_value();
 | |
|     DeprecatedString calculation;
 | |
|     if (!result.is_number()) {
 | |
|         calculation = "0";
 | |
|     } else {
 | |
|         calculation = result.to_string_without_side_effects().release_value_but_fixme_should_propagate_errors().to_deprecated_string();
 | |
|     }
 | |
| 
 | |
|     NonnullRefPtrVector<Result> results;
 | |
|     results.append(adopt_ref(*new CalculatorResult(calculation)));
 | |
|     on_complete(move(results));
 | |
| }
 | |
| 
 | |
| Gfx::Bitmap const* FileResult::bitmap() const
 | |
| {
 | |
|     return GUI::FileIconProvider::icon_for_path(title()).bitmap_for_size(16);
 | |
| }
 | |
| 
 | |
| FileProvider::FileProvider()
 | |
| {
 | |
|     build_filesystem_cache();
 | |
| }
 | |
| 
 | |
| void FileProvider::query(DeprecatedString const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete)
 | |
| {
 | |
|     build_filesystem_cache();
 | |
| 
 | |
|     if (m_fuzzy_match_work)
 | |
|         m_fuzzy_match_work->cancel();
 | |
| 
 | |
|     m_fuzzy_match_work = Threading::BackgroundAction<Optional<NonnullRefPtrVector<Result>>>::construct(
 | |
|         [this, query](auto& task) -> Optional<NonnullRefPtrVector<Result>> {
 | |
|             NonnullRefPtrVector<Result> results;
 | |
| 
 | |
|             for (auto& path : m_full_path_cache) {
 | |
|                 if (task.is_cancelled())
 | |
|                     return {};
 | |
| 
 | |
|                 auto match_result = fuzzy_match(query, path);
 | |
|                 if (!match_result.matched)
 | |
|                     continue;
 | |
|                 if (match_result.score < 0)
 | |
|                     continue;
 | |
| 
 | |
|                 results.append(adopt_ref(*new FileResult(path, match_result.score)));
 | |
|             }
 | |
|             return results;
 | |
|         },
 | |
|         [on_complete = move(on_complete)](auto results) -> ErrorOr<void> {
 | |
|             if (results.has_value())
 | |
|                 on_complete(move(results.value()));
 | |
| 
 | |
|             return {};
 | |
|         });
 | |
| }
 | |
| 
 | |
| void FileProvider::build_filesystem_cache()
 | |
| {
 | |
|     if (m_full_path_cache.size() > 0 || m_building_cache)
 | |
|         return;
 | |
| 
 | |
|     m_building_cache = true;
 | |
|     m_work_queue.enqueue("/");
 | |
| 
 | |
|     (void)Threading::BackgroundAction<int>::construct(
 | |
|         [this, strong_ref = NonnullRefPtr(*this)](auto&) {
 | |
|             DeprecatedString slash = "/";
 | |
|             auto timer = Core::ElapsedTimer::start_new();
 | |
|             while (!m_work_queue.is_empty()) {
 | |
|                 auto base_directory = m_work_queue.dequeue();
 | |
| 
 | |
|                 if (base_directory.template is_one_of("/dev"sv, "/proc"sv, "/sys"sv))
 | |
|                     continue;
 | |
| 
 | |
|                 Core::DirIterator di(base_directory, Core::DirIterator::SkipDots);
 | |
| 
 | |
|                 while (di.has_next()) {
 | |
|                     auto path = di.next_path();
 | |
|                     struct stat st = {};
 | |
|                     if (fstatat(di.fd(), path.characters(), &st, AT_SYMLINK_NOFOLLOW) < 0) {
 | |
|                         perror("fstatat");
 | |
|                         continue;
 | |
|                     }
 | |
| 
 | |
|                     if (S_ISLNK(st.st_mode))
 | |
|                         continue;
 | |
| 
 | |
|                     auto full_path = LexicalPath::join(slash, base_directory, path).string();
 | |
| 
 | |
|                     m_full_path_cache.append(full_path);
 | |
| 
 | |
|                     if (S_ISDIR(st.st_mode)) {
 | |
|                         m_work_queue.enqueue(full_path);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|             dbgln("Built cache in {} ms", timer.elapsed());
 | |
|             return 0;
 | |
|         },
 | |
|         [this](auto) -> ErrorOr<void> {
 | |
|             m_building_cache = false;
 | |
|             return {};
 | |
|         });
 | |
| }
 | |
| 
 | |
| void TerminalProvider::query(DeprecatedString const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete)
 | |
| {
 | |
|     if (!query.starts_with('$'))
 | |
|         return;
 | |
| 
 | |
|     auto command = query.substring(1).trim_whitespace();
 | |
| 
 | |
|     NonnullRefPtrVector<Result> results;
 | |
|     results.append(adopt_ref(*new TerminalResult(move(command))));
 | |
|     on_complete(move(results));
 | |
| }
 | |
| 
 | |
| void URLProvider::query(DeprecatedString const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete)
 | |
| {
 | |
|     if (query.is_empty() || query.starts_with('=') || query.starts_with('$'))
 | |
|         return;
 | |
| 
 | |
|     URL url = URL(query);
 | |
| 
 | |
|     if (url.scheme().is_empty())
 | |
|         url.set_scheme("http");
 | |
|     if (url.host().is_empty())
 | |
|         url.set_host(query);
 | |
|     if (url.paths().is_empty())
 | |
|         url.set_paths({ "" });
 | |
| 
 | |
|     if (!url.is_valid())
 | |
|         return;
 | |
| 
 | |
|     NonnullRefPtrVector<Result> results;
 | |
|     results.append(adopt_ref(*new URLResult(url)));
 | |
|     on_complete(results);
 | |
| }
 | |
| 
 | |
| }
 | 
