Files
ladybird/Userland/Utilities/pkg/AvailablePort.cpp
Timothy Flynn 168d28c15f LibProtocol+Userland: Support unbuffered protocol requests
LibWeb will need to use unbuffered requests to support server-sent
events. Connection for such events remain open and the remote end sends
data as HTTP bodies at its leisure. The browser needs to be able to
handle this data as it arrives, as the request essentially never
finishes.

To support this, this make Protocol::Request operate in one of two
modes: buffered or unbuffered. The existing mechanism for setting up a
buffered request was a bit awkward; you had to set specific callbacks,
but be sure not to set some others, and then set a flag. The new
mechanism is to set the mode and the callbacks that the mode needs in
one API.
2024-05-26 18:29:24 +02:00

196 lines
8.0 KiB
C++

/*
* Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Optional.h>
#include <AK/Stream.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/EventLoop.h>
#include <LibCore/File.h>
#include <LibCore/Proxy.h>
#include <LibCore/System.h>
#include <LibFileSystem/FileSystem.h>
#include <LibHTTP/HttpResponse.h>
#include <LibMain/Main.h>
#include <LibMarkdown/Document.h>
#include <LibMarkdown/Table.h>
#include <LibProtocol/Request.h>
#include <LibProtocol/RequestClient.h>
#include "AvailablePort.h"
#include "MarkdownTableFinder.h"
#include <Shell/AST.h>
#include <Shell/Formatter.h>
#include <Shell/NodeVisitor.h>
#include <Shell/PosixParser.h>
#include <Shell/Shell.h>
void AvailablePort::query_details_for_package(HashMap<String, AvailablePort>& available_ports, HashMap<String, InstalledPort> const& installed_ports, StringView package_name, bool verbose)
{
auto possible_available_port = available_ports.find(package_name);
if (possible_available_port == available_ports.end()) {
outln("pkg: No match for queried name \"{}\"", package_name);
return;
}
auto& available_port = possible_available_port->value;
outln("{}: {}, {}", available_port.name(), available_port.version_string(), available_port.website());
if (verbose) {
out("Installed: ");
auto installed_port = installed_ports.find(package_name);
if (installed_port != installed_ports.end()) {
outln("Yes");
out("Update Status: ");
auto error_or_available_version = available_port.version_semver();
auto error_or_installed_version = installed_port->value.version_semver();
if (error_or_available_version.is_error() || error_or_installed_version.is_error()) {
auto ip_version = installed_port->value.version_string();
auto ap_version = available_port.version_string();
if (ip_version == ap_version) {
outln("Already on latest version");
} else {
outln("Update to {} available", ap_version);
}
return;
}
auto available_version = error_or_available_version.value();
auto installed_version = error_or_installed_version.value();
if (available_version.is_same(installed_version, SemVer::CompareType::Patch)) {
outln("Already on latest version");
} else if (available_version.is_greater_than(installed_version)) {
outln("Update to {} available", available_port.version_string());
}
} else {
outln("No");
}
}
}
static Optional<Markdown::Table::Column const&> get_column_in_table(Markdown::Table const& ports_table, StringView column_name)
{
for (auto const& column : ports_table.columns()) {
if (column_name == column.header.render_for_terminal())
return column;
}
return {};
}
ErrorOr<int> AvailablePort::update_available_ports_list_file()
{
if (auto error_or_void = Core::System::mkdir("/usr/Ports/"sv, 0655); error_or_void.is_error()) {
if (error_or_void.error().code() != EEXIST)
return error_or_void.release_error();
}
if (!Core::System::access("/usr/Ports/AvailablePorts.md"sv, R_OK).is_error() && FileSystem::remove("/usr/Ports/AvailablePorts.md"sv, FileSystem::RecursionMode::Disallowed).is_error()) {
outln("pkg: /usr/Ports/AvailablePorts.md exists, but can't delete it before updating it!");
return 0;
}
RefPtr<Protocol::Request> request;
auto protocol_client = TRY(Protocol::RequestClient::try_create());
HashMap<ByteString, ByteString, CaseInsensitiveStringTraits> request_headers;
Core::ProxyData proxy_data {};
auto output_stream = TRY(Core::File::open("/usr/Ports/AvailablePorts.md"sv, Core::File::OpenMode::ReadWrite, 0644));
Core::EventLoop loop;
URL::URL url("https://raw.githubusercontent.com/SerenityOS/serenity/master/Ports/AvailablePorts.md");
ByteString method = "GET";
outln("pkg: Syncing packages database...");
request = protocol_client->start_request(method, url, request_headers, ReadonlyBytes {}, proxy_data);
auto on_data_received = [&](auto data) {
output_stream->write_until_depleted(data).release_value_but_fixme_should_propagate_errors();
};
auto on_finished = [&](bool success, auto) {
if (!success)
outln("pkg: Syncing packages database failed.");
else
outln("pkg: Syncing packages database done.");
loop.quit(success ? 0 : 1);
};
request->set_unbuffered_request_callbacks({}, move(on_data_received), move(on_finished));
return loop.exec();
}
static ErrorOr<String> extract_port_name_from_column(Markdown::Table::Column const& column, size_t row_index)
{
struct : public Markdown::Visitor {
virtual RecursionDecision visit(Markdown::Text::LinkNode const& node) override
{
text_node = node.text.ptr();
return RecursionDecision::Break;
}
public:
Markdown::Text::Node* text_node;
} text_node_find_visitor;
column.rows[row_index].walk(text_node_find_visitor);
VERIFY(text_node_find_visitor.text_node);
StringBuilder string_builder;
text_node_find_visitor.text_node->render_for_raw_print(string_builder);
return string_builder.to_string();
}
ErrorOr<HashMap<String, AvailablePort>> AvailablePort::read_available_ports_list()
{
if (Core::System::access("/usr/Ports/AvailablePorts.md"sv, R_OK).is_error()) {
warnln("pkg: /usr/Ports/AvailablePorts.md doesn't exist, did you run pkg -u first?");
return Error::from_errno(ENOENT);
}
auto available_ports_file = TRY(Core::File::open("/usr/Ports/AvailablePorts.md"sv, Core::File::OpenMode::Read, 0600));
auto content_buffer = TRY(available_ports_file->read_until_eof());
auto content = StringView(content_buffer);
auto document = Markdown::Document::parse(content);
auto finder = MarkdownTableFinder::analyze(*document);
if (finder.table_count() != 1)
return Error::from_string_literal("Invalid tables count in /usr/Ports/AvailablePorts.md");
VERIFY(finder.tables()[0]);
auto possible_port_name_column = get_column_in_table(*finder.tables()[0], "Port"sv);
auto possible_port_version_column = get_column_in_table(*finder.tables()[0], "Version"sv);
auto possible_port_website_column = get_column_in_table(*finder.tables()[0], "Website"sv);
if (!possible_port_name_column.has_value())
return Error::from_string_literal("pkg: Port column not found /usr/Ports/AvailablePorts.md");
if (!possible_port_version_column.has_value())
return Error::from_string_literal("pkg: Version column not found /usr/Ports/AvailablePorts.md");
if (!possible_port_website_column.has_value())
return Error::from_string_literal("pkg: Website column not found /usr/Ports/AvailablePorts.md");
auto const& port_name_column = possible_port_name_column.release_value();
auto const& port_version_column = possible_port_version_column.release_value();
auto const& port_website_column = possible_port_website_column.release_value();
VERIFY(port_name_column.rows.size() == port_version_column.rows.size());
VERIFY(port_version_column.rows.size() == port_website_column.rows.size());
HashMap<String, AvailablePort> available_ports;
for (size_t port_index = 0; port_index < port_name_column.rows.size(); port_index++) {
auto name = TRY(extract_port_name_from_column(port_name_column, port_index));
auto website = TRY(String::from_byte_string(port_website_column.rows[port_index].render_for_terminal()));
if (website.is_empty())
website = "n/a"_string;
auto version = TRY(String::from_byte_string(port_version_column.rows[port_index].render_for_terminal()));
if (version.is_empty())
version = "n/a"_string;
TRY(available_ports.try_set(name, AvailablePort { name, version, website }));
}
return available_ports;
}