vcpkg/toolsrc/src/vcpkg_System.cpp

116 lines
3.1 KiB
C++
Raw Normal View History

2017-01-28 04:49:09 +08:00
#include "pch.h"
2016-09-19 11:50:08 +08:00
#include "vcpkg_System.h"
2017-01-06 04:47:08 +08:00
namespace vcpkg::System
2016-09-19 11:50:08 +08:00
{
fs::path get_exe_path_of_current_process()
{
wchar_t buf[_MAX_PATH ];
int bytes = GetModuleFileNameW(nullptr, buf, _MAX_PATH);
if (bytes == 0)
std::abort();
return fs::path(buf, buf + bytes);
}
int cmd_execute(const wchar_t* cmd_line)
{
// Basically we are wrapping it in quotes
const std::wstring& actual_cmd_line = Strings::wformat(LR"###("%s")###", cmd_line);
2016-09-19 11:50:08 +08:00
int exit_code = _wsystem(actual_cmd_line.c_str());
return exit_code;
}
exit_code_and_output cmd_execute_and_capture_output(const wchar_t* cmd_line)
{
const std::wstring& actual_cmd_line = Strings::wformat(LR"###("%s")###", cmd_line);
2016-09-19 11:50:08 +08:00
std::string output;
char buf[1024];
auto pipe = _wpopen(actual_cmd_line.c_str(), L"r");
if (pipe == nullptr)
{
return { 1, output };
2016-09-19 11:50:08 +08:00
}
while (fgets(buf, 1024, pipe))
{
output.append(buf);
}
if (!feof(pipe))
{
return { 1, output };
2016-09-19 11:50:08 +08:00
}
auto ec = _pclose(pipe);
return { ec, output };
2016-09-19 11:50:08 +08:00
}
void print(const char* message)
{
std::cout << message;
}
void println(const char* message)
{
print(message);
std::cout << "\n";
}
void print(const color c, const char* message)
2016-09-19 11:50:08 +08:00
{
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO consoleScreenBufferInfo{};
GetConsoleScreenBufferInfo(hConsole, &consoleScreenBufferInfo);
auto original_color = consoleScreenBufferInfo.wAttributes;
SetConsoleTextAttribute(hConsole, static_cast<int>(c) | (original_color & 0xF0));
std::cout << message;
SetConsoleTextAttribute(hConsole, original_color);
}
void println(const color c, const char* message)
2016-09-19 11:50:08 +08:00
{
print(c, message);
std::cout << "\n";
}
optional<std::wstring> get_environmental_variable(const wchar_t* varname) noexcept
2016-09-19 11:50:08 +08:00
{
std::wstring ret;
wchar_t* buffer;
_wdupenv_s(&buffer, nullptr, varname);
if (buffer == nullptr)
2016-09-19 11:50:08 +08:00
{
return nullptr;
2016-09-19 11:50:08 +08:00
}
ret = buffer;
free(buffer);
return std::make_unique<std::wstring>(ret);
2016-09-19 11:50:08 +08:00
}
void set_environmental_variable(const wchar_t* varname, const wchar_t* varvalue) noexcept
{
_wputenv_s(varname, varvalue);
}
void Stopwatch2::start()
2016-09-19 11:50:08 +08:00
{
static_assert(sizeof(start_time) == sizeof(LARGE_INTEGER), "");
QueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(&start_time));
}
void Stopwatch2::stop()
2016-09-19 11:50:08 +08:00
{
QueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(&end_time));
QueryPerformanceFrequency(reinterpret_cast<LARGE_INTEGER*>(&freq));
}
double Stopwatch2::microseconds() const
2016-09-19 11:50:08 +08:00
{
return (reinterpret_cast<const LARGE_INTEGER*>(&end_time)->QuadPart -
2017-01-06 04:47:08 +08:00
reinterpret_cast<const LARGE_INTEGER*>(&start_time)->QuadPart) * 1000000.0 / reinterpret_cast<const LARGE_INTEGER*>(&freq)->QuadPart;
2016-09-19 11:50:08 +08:00
}
2017-01-06 04:47:08 +08:00
}