mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
#include "win_ver.h"
|
|
#include <stdio.h>
|
|
#include <map>
|
|
#include "../stringtools.h"
|
|
|
|
namespace
|
|
{
|
|
std::map<std::string, std::string> read_kv(const std::string& cmd)
|
|
{
|
|
FILE* f=_popen(cmd.c_str(), "rt");
|
|
std::map<std::string, std::string> ret;
|
|
if(f!=NULL)
|
|
{
|
|
std::string data;
|
|
char buf[1024];
|
|
while(!feof(f))
|
|
{
|
|
if(fgets(buf, 1024, f))
|
|
{
|
|
data+=buf;
|
|
}
|
|
}
|
|
_pclose(f);
|
|
|
|
int lc = linecount(data);
|
|
for(int i = 0; i < lc; ++i)
|
|
{
|
|
std::string line = getline(i+1, data);
|
|
|
|
std::string key = strlower(trim(getuntil("=", line)));
|
|
std::string value = trim(getafter("=", line));
|
|
|
|
ret[key]=value;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
std::string get_windows_version( void )
|
|
{
|
|
std::map<std::string, std::string> m = read_kv("wmic os get buildnumber,caption,CSDVersion /value");
|
|
std::string buildnumber = m["buildnumber"];
|
|
std::string caption = m["caption"];
|
|
std::string CSDVersion = m["csdversion"];
|
|
m = read_kv("wmic os get osarchitecture /value");
|
|
std::string osarchitecture = m["osarchitecture"];
|
|
|
|
return caption + " "+ CSDVersion +" (build " + buildnumber+")"+ (osarchitecture.empty()?"":(", "+osarchitecture) );
|
|
}
|