/*
|
* os-dependent.hpp
|
*
|
* Created on: Mar 29, 2014
|
*
|
*/
|
|
#ifndef OS_DEPENDENT_HPP_
|
#define OS_DEPENDENT_HPP_
|
|
#include <stddef.h>
|
#include <string.h>
|
#include <ctype.h>
|
#include <sys/types.h>
|
// definition of size_t
|
#include <stdlib.h>
|
#include <vector>
|
#ifdef __unix__
|
#include <unistd.h>
|
#include <stdbool.h>
|
#endif
|
|
#include <licensecc/datatypes.h>
|
#include "../base/base.h"
|
|
typedef struct {
|
int id;
|
char device[MAX_PATH];
|
unsigned char disk_sn[8];
|
bool sn_initialized;
|
char label[255];
|
bool label_initialized;
|
bool preferred;
|
} DiskInfo;
|
|
FUNCTION_RETURN getDiskInfos(std::vector<DiskInfo>& diskInfos);
|
FUNCTION_RETURN getUserHomePath(char[MAX_PATH]);
|
FUNCTION_RETURN getModuleName(char buffer[MAX_PATH]);
|
FUNCTION_RETURN getMachineName(unsigned char identifier[6]);
|
/**
|
* Get an identifier of the machine in an os specific way.
|
* In Linux it uses:
|
* http://stackoverflow.com/questions/328936/getting-a-unique-id-from-a-unix-like-system
|
*
|
* <ul>
|
* <li>Dbus if available</li>
|
* </ul>
|
* Can be used as a fallback in case no other methods are available.
|
* Windows:
|
* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\ CurrentVersion\ProductId
|
* http://sowkot.blogspot.it/2008/08/generating-unique-keyfinger-print-for.html
|
* http://stackoverflow.com/questions/2842116/reliable-way-of-generating-unique-hardware-id
|
*
|
*
|
* @param identifier
|
* @return
|
*/
|
FUNCTION_RETURN getOsSpecificIdentifier(unsigned char identifier[6]);
|
|
|
#ifdef _WIN32
|
#define SETENV(VAR, VAL) _putenv_s(VAR, VAL);
|
#define UNSETENV(P) _putenv_s(P, "");
|
#else
|
#define SETENV(VAR, VAL) setenv(VAR, VAL, 1);
|
#define UNSETENV(P) unsetenv(P);
|
#endif
|
|
#endif /* OS_DEPENDENT_HPP_ */
|