diff options
author | Kenneth Myhra <kennethmyhra@gmail.com> | 2021-12-08 19:47:04 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-16 02:10:47 -0800 |
commit | 54f6829533972bd01ff4f18956445481fdb7223c (patch) | |
tree | 0e516bb58d6f256b5c45a7afb9fe097a67640a85 /Userland/Utilities/file.cpp | |
parent | 27e63d40f1cb2615353d25c4f0a7dc3563ebef22 (diff) | |
download | serenity-54f6829533972bd01ff4f18956445481fdb7223c.zip |
file: Port to LibMain
Diffstat (limited to 'Userland/Utilities/file.cpp')
-rw-r--r-- | Userland/Utilities/file.cpp | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/Userland/Utilities/file.cpp b/Userland/Utilities/file.cpp index 0e7495531f..e065d900c6 100644 --- a/Userland/Utilities/file.cpp +++ b/Userland/Utilities/file.cpp @@ -10,9 +10,11 @@ #include <LibCore/FileStream.h> #include <LibCore/MappedFile.h> #include <LibCore/MimeData.h> +#include <LibCore/System.h> #include <LibELF/Image.h> #include <LibELF/Validation.h> #include <LibGfx/ImageDecoder.h> +#include <LibMain/Main.h> #include <stdio.h> #include <sys/stat.h> #include <unistd.h> @@ -132,12 +134,9 @@ static Optional<String> get_description_from_mime_type(const String& mime, const return {}; } -int main(int argc, char** argv) +ErrorOr<int> serenity_main(Main::Arguments arguments) { - if (pledge("stdio rpath", nullptr) < 0) { - perror("pledge"); - return 1; - } + TRY(Core::System::pledge("stdio rpath")); Vector<const char*> paths; bool flag_mime_only = false; @@ -146,23 +145,20 @@ int main(int argc, char** argv) args_parser.set_general_help("Determine type of files"); args_parser.add_option(flag_mime_only, "Only print mime type", "mime-type", 'I'); args_parser.add_positional_argument(paths, "Files to identify", "files", Core::ArgsParser::Required::Yes); - args_parser.parse(argc, argv); + args_parser.parse(arguments); bool all_ok = true; for (auto path : paths) { - auto file = Core::File::construct(path); - if (!file->open(Core::OpenMode::ReadOnly)) { + auto file_or_error = Core::File::open(path, Core::OpenMode::ReadOnly); + if (file_or_error.is_error()) { perror(path); all_ok = false; continue; } + auto file = file_or_error.release_value(); - struct stat file_stat; - if (lstat(path, &file_stat) < 0) { - perror("lstat"); - return 1; - } + struct stat file_stat = TRY(Core::System::lstat(path)); auto file_size_in_bytes = file_stat.st_size; if (file->is_directory()) { |