summaryrefslogtreecommitdiff
path: root/Userland/Utilities/file.cpp
blob: fa82fcdca28453f9490e5f224e297a1a3494fc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright (c) 2021, Valtteri Koskivuori <vkoskiv@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/MappedFile.h>
#include <AK/Vector.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/FileStream.h>
#include <LibCore/MimeData.h>
#include <LibGfx/ImageDecoder.h>
#include <stdio.h>
#include <unistd.h>

static Optional<String> description_only(String description, [[maybe_unused]] const String& path)
{
    return description;
}

// FIXME: Ideally Gfx::ImageDecoder could tell us the image type directly.
static Optional<String> image_details(const String& description, const String& path)
{
    auto file_or_error = MappedFile::map(path);
    if (file_or_error.is_error())
        return {};

    auto& mapped_file = *file_or_error.value();
    auto image_decoder = Gfx::ImageDecoder::create((const u8*)mapped_file.data(), mapped_file.size());

    if (!image_decoder->is_valid())
        return {};

    return String::formatted("{}, {} x {}", description, image_decoder->width(), image_decoder->height());
}

#define ENUMERATE_DESCRIPTION_CONTENTS(V)                                           \
    V("image/x-portable-bitmap", "PBM image data", image_details)                   \
    V("image/x-portable-graymap", "PGM image data", image_details)                  \
    V("image/png", "PNG image data", image_details)                                 \
    V("image/x-portable-pixmap", "PPM image data", image_details)                   \
    V("image/gif", "GIF image data", image_details)                                 \
    V("image/gif", "GIF image data", image_details)                                 \
    V("image/bmp", "BMP image data", image_details)                                 \
    V("image/jpeg", "JPEG image data", image_details)                               \
    V("image/jpeg", "JFIF image data", image_details)                               \
    V("image/jpeg", "JPEG image data", image_details)                               \
    V("text/x-shellscript", "POSIX shell script text executable", description_only) \
    V("application/json", "JSON data", description_only)                            \
    V("application/javascript", "JavaScript source", description_only)              \
    V("text/markdown", "Markdown document", description_only)

static Optional<String> get_description_from_mime_type(const String& mime, const String& path)
{
#define V(mime_type, description, details) \
    if (String(mime_type) == mime)         \
        return details(String(description), path);
    ENUMERATE_DESCRIPTION_CONTENTS(V);
#undef V
    return {};
}

int main(int argc, char** argv)
{
    if (pledge("stdio rpath", nullptr) < 0) {
        perror("pledge");
        return 1;
    }

    Vector<const char*> paths;
    bool flag_mime_only = false;

    Core::ArgsParser args_parser;
    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);

    bool all_ok = true;

    for (auto path : paths) {
        auto file = Core::File::construct(path);
        if (!file->open(Core::File::ReadOnly)) {
            perror(path);
            all_ok = false;
            continue;
        }
        auto bytes = file->read(25);
        auto file_name_guess = Core::guess_mime_type_based_on_filename(path);
        auto mime_type = Core::guess_mime_type_based_on_sniffed_bytes(bytes.bytes()).value_or(file_name_guess);
        auto human_readable_description = get_description_from_mime_type(mime_type, String(path)).value_or(mime_type);
        outln("{}: {}", path, flag_mime_only ? mime_type : human_readable_description);
    }

    return all_ok ? 0 : 1;
}