summaryrefslogtreecommitdiff
path: root/Userland/Utilities/gml-format.cpp
blob: 3b6c1ca1d84ce2817fed8f2b32d6bb6560cfcf1e (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
/*
 * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/ArgsParser.h>
#include <LibCore/Stream.h>
#include <LibCore/System.h>
#include <LibGUI/GML/Formatter.h>
#include <LibMain/Main.h>

static ErrorOr<bool> format_file(StringView path, bool inplace)
{
    auto read_from_stdin = path == "-";
    auto open_mode = (inplace && !read_from_stdin) ? Core::Stream::OpenMode::ReadWrite : Core::Stream::OpenMode::Read;
    auto file = TRY(Core::Stream::File::open_file_or_standard_stream(path, open_mode));

    auto contents = TRY(file->read_all());
    auto formatted_gml_or_error = GUI::GML::format_gml(contents);
    if (formatted_gml_or_error.is_error()) {
        warnln("Failed to parse GML: {}", formatted_gml_or_error.error());
        return false;
    }
    auto formatted_gml = formatted_gml_or_error.release_value();
    if (inplace && !read_from_stdin) {
        if (formatted_gml == contents)
            return true;
        TRY(file->seek(0, Core::Stream::SeekMode::SetPosition));
        TRY(file->truncate(0));
        TRY(file->write(formatted_gml.bytes()));
    } else {
        out("{}", formatted_gml);
    }
    return formatted_gml == contents;
}

ErrorOr<int> serenity_main(Main::Arguments args)
{
    TRY(Core::System::pledge("stdio rpath wpath cpath"));

    bool inplace = false;
    Vector<String> files;

    Core::ArgsParser args_parser;
    args_parser.set_general_help("Format GML files.");
    args_parser.add_option(inplace, "Write formatted contents back to file rather than standard output", "inplace", 'i');
    args_parser.add_positional_argument(files, "File(s) to process", "path", Core::ArgsParser::Required::No);
    args_parser.parse(args);

    if (!inplace)
        TRY(Core::System::pledge("stdio rpath"));

    if (files.is_empty())
        files.append("-");

    auto formatting_changed = false;
    for (auto& file : files) {
        if (!TRY(format_file(file, inplace)))
            formatting_changed = true;
    }

    if (formatting_changed) {
        dbgln("Some GML formatting issues were encountered.");
        return 1;
    }

    return 0;
}