aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/cmd_line.hpp
blob: 3a65ec7cdd326be37d556b5760d9af7081ca7612 (plain) (blame)
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#pragma once

#include "error.hpp"
#include "string.hpp"

#include <Windows.h>
#include <shellapi.h>

#include <cstddef>

#include <memory>
#include <stdexcept>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

class CommandLine
{
public:
    static CommandLine query()
    {
        return build_from_string(GetCommandLine());
    }

    static CommandLine build_from_main(int argc, wchar_t* argv[])
    {
        if (argc < 1)
            throw std::range_error(__FUNCTION__ ": invalid argc value");

        std::wstring argv0{argv[0]};
        --argc;
        ++argv;

        std::vector<std::wstring> args;
        args.reserve(argc);

        for (int i = 0; i < argc; ++i)
            args.emplace_back(argv[i]);

        return {std::move(argv0), std::move(args)};
    }

    CommandLine() = default;

    bool has_argv0() const
    {
        return !argv0.empty();
    }

    std::wstring get_argv0() const
    {
        return argv0;
    }

    std::wstring escape_argv0() const
    {
        return escape(get_argv0());
    }

    bool has_args() const
    {
        return !get_args().empty();
    }

    const std::vector<std::wstring>& get_args() const
    {
        return args;
    }

    std::vector<std::wstring> escape_args() const
    {
        std::vector<std::wstring> safe;
        safe.reserve(args.size());
        for (const auto& arg : args)
            safe.emplace_back(escape(arg));
        return safe;
    }

    static constexpr auto sep = L' ';

    std::wstring join_args() const
    {
        return string::join(sep, escape_args());
    }

    std::wstring join() const
    {
        if (!has_argv0())
            throw std::logic_error(__FUNCTION__ ": doesn't have executable path");
        std::wostringstream oss;
        oss << escape_argv0();
        if (has_args())
            oss << sep << string::join(sep, escape_args());
        return oss.str();
    }

private:
    static CommandLine build_from_string(std::wstring src)
    {
        string::trim(src);
        if (src.empty())
            return {};

        int argc = 0;
        std::unique_ptr<wchar_t*, LocalDelete> argv{CommandLineToArgvW(src.c_str(), &argc)};

        if (argv.get() == NULL)
            error::raise("CommandLineToArgvW");

        if (argc == 0)
            return {};

        std::wstring argv0{argv.get()[0]};

        std::vector<std::wstring> args;
        args.reserve(argc - 1);

        for (int i = 1; i < argc; ++i)
            args.emplace_back(argv.get()[i]);

        return {std::move(argv0), std::move(args)};
    }

    inline std::wstring escape_for_cmd(const std::wstring& arg)
    {
        static constexpr auto escape_symbol = L'^';
        static constexpr auto dangerous_symbols = L"!\"%&()<>^|";

        auto safe = escape(arg);
        string::prefix_with(safe, dangerous_symbols, escape_symbol);
        return safe;
    }

    static std::wstring escape(const std::wstring& arg)
    {
        std::wstring safe;
        safe.reserve(arg.length() + 2);

        safe.push_back(L'"');

        for (auto it = arg.cbegin(); it != arg.cend(); ++it)
        {
            std::size_t numof_backslashes = 0;

            for (; it != arg.cend() && *it == L'\\'; ++it)
                ++numof_backslashes;

            if (it == arg.cend())
            {
                safe.reserve(safe.capacity() + numof_backslashes);
                safe.append(2 * numof_backslashes, L'\\');
                break;
            }

            switch (*it)
            {
                case L'"':
                    safe.reserve(safe.capacity() + numof_backslashes + 1);
                    safe.append(2 * numof_backslashes + 1, L'\\');
                    break;

                default:
                    safe.append(numof_backslashes, L'\\');
                    break;
            }

            safe.push_back(*it);
        }

        safe.push_back(L'"');
        return safe;
    }

    struct LocalDelete
    {
        void operator()(wchar_t* argv[]) const
        {
            LocalFree(argv);
        }
    };

    CommandLine(std::vector<std::wstring>&& args)
        : args{std::move(args)}
    { }

    CommandLine(std::wstring&& argv0, std::vector<std::wstring>&& args = {})
        : argv0{std::move(argv0)}
        , args{std::move(args)}
    { }

    const std::wstring argv0;
    const std::vector<std::wstring> args;
};