vcpkg/toolsrc/src/vcpkgmetricsuploader.cpp

21 lines
613 B
C++
Raw Normal View History

#include <vcpkg/metrics.h>
#include <vcpkg/base/checks.h>
#include <vcpkg/base/files.h>
2016-09-19 11:50:08 +08:00
#include <Windows.h>
using namespace vcpkg;
2017-02-16 10:45:26 +08:00
int WINAPI WinMain(_In_ HINSTANCE, _In_opt_ HINSTANCE, _In_ LPSTR, _In_ int)
2016-09-19 11:50:08 +08:00
{
int argCount;
LPWSTR* szArgList = CommandLineToArgvW(GetCommandLineW(), &argCount);
2016-09-19 11:50:08 +08:00
Checks::check_exit(VCPKG_LINE_INFO, argCount == 2, "Requires exactly one argument, the path to the payload file");
auto v = Files::get_real_filesystem().read_contents(szArgList[1]).value_or_exit(VCPKG_LINE_INFO);
Metrics::g_metrics.lock()->upload(v);
2017-08-27 03:17:39 +08:00
LocalFree(szArgList);
return 0;
2016-09-19 11:50:08 +08:00
}