"...resnet50_onnxruntime.git" did not exist on "cf7b82b4c2eae946a0afe210a90735425911edc2"
process.cpp 6.83 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
25
26
27
28
#include <migraphx/process.hpp>
#include <migraphx/errors.hpp>
#include <migraphx/env.hpp>
#include <functional>
#include <iostream>
Artur Wojcik's avatar
process  
Artur Wojcik committed
29
30
31
32
33
34

#ifdef _WIN32
// cppcheck-suppress definePrefix
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#else
35
#include <unistd.h>
Artur Wojcik's avatar
process  
Artur Wojcik committed
36
#endif
37
38
39
40
41
42

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_TRACE_CMD_EXECUTE)

Artur Wojcik's avatar
process  
Artur Wojcik committed
43
#ifndef _WIN32
44

45
46
template <class F>
int exec(const std::string& cmd, const char* type, F f)
47
48
49
50
51
52
{
    int ec = 0;
    if(enabled(MIGRAPHX_TRACE_CMD_EXECUTE{}))
        std::cout << cmd << std::endl;
    auto closer = [&](FILE* stream) {
        auto status = pclose(stream);
53
        ec          = WIFEXITED(status) ? WEXITSTATUS(status) : 0; // NOLINT
54
55
56
    };
    {
        // TODO: Use execve instead of popen
57
        std::unique_ptr<FILE, decltype(closer)> pipe(popen(cmd.c_str(), type), closer); // NOLINT
58
        if(not pipe)
59
            MIGRAPHX_THROW("popen() failed: " + cmd);
60
        f(pipe.get());
61
62
63
64
    }
    return ec;
}

Artur Wojcik's avatar
process  
Artur Wojcik committed
65
int exec(const std::string& cmd)
66
{
Artur Wojcik's avatar
process  
Artur Wojcik committed
67
    auto std_out{[](const char* x) { std::cout << x; }};
68
    return exec(cmd, "r", [&](FILE* f) {
Artur Wojcik's avatar
process  
Artur Wojcik committed
69
        std::array<char, 128> buffer{};
70
71
72
73
74
75
76
77
78
79
80
81
        while(fgets(buffer.data(), buffer.size(), f) != nullptr)
            std_out(buffer.data());
    });
}

int exec(const std::string& cmd, std::function<void(process::writer)> std_in)
{
    return exec(cmd, "w", [&](FILE* f) {
        std_in([&](const char* buffer, std::size_t n) { std::fwrite(buffer, 1, n, f); });
    });
}

Artur Wojcik's avatar
process  
Artur Wojcik committed
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
195
196
197
198
199
200
201
202
203
204
205
206
#else

#define MIGRAPHX_PROCESS_BUFSIZE 4096

class pipe
{
    public:
    explicit pipe(bool inherit_handle = true)
    {
        SECURITY_ATTRIBUTES attrs;
        attrs.nLength              = sizeof(SECURITY_ATTRIBUTES);
        attrs.bInheritHandle       = inherit_handle ? TRUE : FALSE;
        attrs.lpSecurityDescriptor = nullptr;

        if(CreatePipe(&hRead_, &hWrite_, &attrs, 0) == FALSE)
            throw GetLastError();

        if(SetHandleInformation(&hRead_, HANDLE_FLAG_INHERIT, 0) == FALSE)
            throw GetLastError();
    }

    ~pipe()
    {
        close_write_handle();
        close_read_handle();
    }

    HANDLE get_read_handle() const { return hRead_; }

    void close_read_handle()
    {
        if(hRead_ != nullptr)
        {
            CloseHandle(hRead_);
            hRead_ = nullptr;
        }
    }

    HANDLE get_write_handle() const { return hWrite_; }

    void close_write_handle()
    {
        if(hWrite_ != nullptr)
        {
            CloseHandle(hWrite_);
            hWrite_ = nullptr;
        }
    }

    private:
    HANDLE hWrite_{nullptr}, hRead_{nullptr};
};

int exec(const std::string& cmd)
{
    try
    {
        if(enabled(MIGRAPHX_TRACE_CMD_EXECUTE{}))
            std::cout << cmd << std::endl;

        pipe stdin_{}, stdout_{};

        STARTUPINFO info;
        PROCESS_INFORMATION processInfo;

        ZeroMemory(&info, sizeof(STARTUPINFO));
        info.cb         = sizeof(STARTUPINFO);
        info.hStdError  = stdout_.get_write_handle();
        info.hStdOutput = stdout_.get_write_handle();
        info.hStdInput  = stdin_.get_read_handle();
        info.dwFlags |= STARTF_USESTDHANDLES;

        ZeroMemory(&processInfo, sizeof(processInfo));

        LPSTR lpCmdLn{const_cast<LPSTR>(cmd.c_str())};

        BOOL bSuccess = CreateProcess(
            nullptr, lpCmdLn, nullptr, nullptr, TRUE, 0, nullptr, nullptr, &info, &processInfo);

        if(bSuccess == FALSE)
            return GetLastError();

        DWORD dwRead, dwWritten;
        TCHAR chBuf[MIGRAPHX_PROCESS_BUFSIZE];
        HANDLE hStdOut{GetStdHandle(STD_OUTPUT_HANDLE)};

        for(;;)
        {
            BOOL bRead = ReadFile(
                stdout_.get_read_handle(), chBuf, MIGRAPHX_PROCESS_BUFSIZE, &dwRead, nullptr);

            if(bRead == FALSE)
            {
                if(GetLastError() != ERROR_MORE_DATA)
                    break;
            }

            if(dwRead == 0)
                break;

            BOOL bWrite = WriteFile(hStdOut, chBuf, dwRead, &dwWritten, nullptr);

            if(bWrite == FALSE)
                break;
        }

        WaitForSingleObject(processInfo.hProcess, INFINITE);

        DWORD status{};
        GetExitCodeProcess(processInfo.hProcess, &status);

        CloseHandle(processInfo.hProcess);
        CloseHandle(processInfo.hThread);

        return static_cast<int>(status);
    }
    // cppcheck-suppress catchExceptionByValue
    catch(DWORD lastError)
    {
        return lastError;
    }
}

#endif

207
208
209
210
211
212
213
214
215
216
217
218
219
struct process_impl
{
    std::string command{};
    fs::path cwd{};

    std::string get_command() const
    {
        std::string result;
        if(not cwd.empty())
            result += "cd " + cwd.string() + "; ";
        result += command;
        return result;
    }
220
221
222
223
224
225
226
227
228

    template <class... Ts>
    void check_exec(Ts&&... xs) const
    {
        int ec = migraphx::exec(std::forward<Ts>(xs)...);
        if(ec != 0)
            MIGRAPHX_THROW("Command " + get_command() + " exited with status " +
                           std::to_string(ec));
    }
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
};

process::process(const std::string& cmd) : impl(std::make_unique<process_impl>())
{
    impl->command = cmd;
}

process::process(process&&) noexcept = default;

process& process::operator=(process rhs)
{
    std::swap(impl, rhs.impl);
    return *this;
}

process::~process() noexcept = default;

process& process::cwd(const fs::path& p)
{
    impl->cwd = p;
    return *this;
}

Artur Wojcik's avatar
process  
Artur Wojcik committed
252
void process::exec() { impl->check_exec(impl->get_command()); }
253
254

void process::write(std::function<void(process::writer)> pipe_in)
255
{
Artur Wojcik's avatar
process  
Artur Wojcik committed
256
257
258
#ifdef _WIN32
    impl->check_exec(impl->get_command());
#else
259
    impl->check_exec(impl->get_command(), std::move(pipe_in));
Artur Wojcik's avatar
process  
Artur Wojcik committed
260
#endif
261
262
263
264
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx