1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
|
include "types.pxi"
import sys
cdef extern from "Python.h":
object PyString_FromStringAndSize ( char *, int )
ctypedef struct PyThreadState
PyThreadState *PyEval_SaveThread()
void PyEval_RestoreThread(PyThreadState *_save)
cdef extern from "stdlib.h":
void *malloc(size_t size)
void *realloc(void *ptr, size_t size)
void free(void *ptr)
cdef extern from "synce.h":
char *wstr_to_utf8(LPCWSTR unicode)
LPWSTR wstr_from_utf8(char *utf8)
void wstr_free_string(void *str)
cdef extern from "synce_log.h":
void synce_log_set_level(int level)
cdef extern from "rapi.h":
void *rapi_connection_from_name(char *device_name)
void rapi_connection_select(void *connection)
HRESULT CeRapiInit()
HRESULT CeProcessConfig(LPCWSTR config, DWORD flags, LPWSTR* reply)
LONG CeRegCreateKeyEx(HKEY hKey, LPCWSTR lpszSubKey, DWORD Reserved, LPWSTR lpszClass, DWORD ulOptions, REGSAM samDesired, LPSECURITY_ATTRIBUTES lpSecurityAttributes, PHKEY phkResult, LPDWORD lpdwDisposition)
LONG CeRegOpenKeyEx(HKEY hKey, LPCWSTR lpszSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
LONG CeRegCloseKey(HKEY hKey)
LONG CeRegDeleteKey(HKEY hKey, LPCWSTR lpszSubKey)
LONG CeRegDeleteValue(HKEY hKey, LPCWSTR lpszValueName)
LONG CeRegQueryValueEx(HKEY hKey, LPCWSTR lpValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
LONG CeRegSetValueEx(HKEY hKey, LPCWSTR lpValueName, DWORD Reserved, DWORD dwType, BYTE *lpData, DWORD cbData)
BOOL CeStartReplication()
HRESULT CeSyncStart(LPCWSTR params)
HRESULT CeSyncResume()
HRESULT CeSyncPause()
HRESULT CeSyncTimeToPc()
BOOL CeGetSystemPowerStatusEx(PSYSTEM_POWER_STATUS_EX pSystemPowerStatus, BOOL refresh)
DWORD CeGetDiskFreeSpaceEx( LPCTSTR _lpDirectoryName, PULARGE_INTEGER lpFreeBytesAvailable, PULARGE_INTEGER lpTotalNumberOfBytes, PULARGE_INTEGER lpTotalNumberOfFreeBytes)
BOOL CeFindAllFiles( LPCWSTR szPath, DWORD dwFlags, LPDWORD lpdwFoundCount, LPLPCE_FIND_DATA ppFindDataArray)
BOOL CeCloseHandle(HANDLE hObject)
HANDLE CeCreateFile( LPCWSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile)
BOOL CeWriteFile( HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, LPOVERLAPPED lpOverlapped)
BOOL CeReadFile( HANDLE hFile, LPVOID lpBuffer, DWORD nNumberOfBytesToRead, LPDWORD lpNumberOfBytesRead, LPOVERLAPPED lpOverlapped)
BOOL CeCreateProcess( LPCWSTR lpApplicationName, LPCWSTR lpCommandLine, void* lpProcessAttributes, void* lpThreadAttributes, BOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPWSTR lpCurrentDirectory, void* lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation)
VOID CeGetSystemInfo( LPSYSTEM_INFO lpSystemInfo)
BOOL CeGetVersionEx( LPCEOSVERSIONINFO lpVersionInformation)
#
# Wrapper functions for the C RAPI calls that will release the GIL lock
#
cdef HRESULT _CeProcessConfig(LPCWSTR config, DWORD flags, LPWSTR* reply):
cdef HRESULT retval
cdef PyThreadState *_save
_save = PyEval_SaveThread()
retval = CeProcessConfig(config, flags, reply)
PyEval_RestoreThread(_save)
return retval
cdef BOOL _CeGetSystemPowerStatusEx(PSYSTEM_POWER_STATUS_EX pSystemPowerStatus, BOOL refresh):
cdef BOOL retval
cdef PyThreadState *_save
_save = PyEval_SaveThread()
retval = CeGetSystemPowerStatusEx(pSystemPowerStatus, refresh)
PyEval_RestoreThread(_save)
return retval
cdef BOOL _CeWriteFile( HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, LPOVERLAPPED lpOverlapped):
cdef BOOL retval
cdef PyThreadState *_save
_save = PyEval_SaveThread()
retval = CeWriteFile(hFile, lpBuffer, nNumberOfBytesToWrite, lpNumberOfBytesWritten, lpOverlapped)
PyEval_RestoreThread(_save)
return retval
#
# Public constants
#
SYNCE_LOG_LEVEL_LOWEST = 0
SYNCE_LOG_LEVEL_ERROR = 1
SYNCE_LOG_LEVEL_WARNING = 2
SYNCE_LOG_LEVEL_INFO = 3
SYNCE_LOG_LEVEL_DEBUG = 4
SYNCE_LOG_LEVEL_TRACE = SYNCE_LOG_LEVEL_DEBUG
SYNCE_LOG_LEVEL_HIGHEST = 5
SYNCE_LOG_LEVEL_DEFAULT = 2
ERROR_SUCCESS = 0
FALSE = 0
TRUE = 1
REG_NONE = 0
REG_SZ = 1
REG_EXPAND_SZ = 2
REG_BINARY = 3
REG_DWORD = 4
REG_DWORD_LITTLE_ENDIAN = 4
REG_DWORD_BIG_ENDIAN = 5
REG_LINK = 6
REG_MULTI_SZ = 7
REG_CREATED_NEW_KEY = 1
REG_OPENED_EXISTING_KEY = 2
BATTERY_FLAG_HIGH = 0x01
BATTERY_FLAG_LOW = 0x02
BATTERY_FLAG_CRITICAL = 0x04
BATTERY_FLAG_CHARGING = 0x08
BATTERY_FLAG_NO_BATTERY = 0x80
BATTERY_FLAG_UNKNOWN = 0xFF
FAF_ATTRIBUTES = 0x00001
FAF_CREATION_TIME = 0x00002
FAF_LASTACCESS_TIME = 0x00004
FAF_LASTWRITE_TIME = 0x00008
FAF_SIZE_HIGH = 0x00010
FAF_SIZE_LOW = 0x00020
FAF_OID = 0x00040
FAF_NAME = 0x00080
FAF_ATTRIB_CHILDREN = 0x01000
FAF_ATTRIB_NO_HIDDEN = 0x02000
FAF_FOLDERS_ONLY = 0x04000
FAF_NO_HIDDEN_SYS_ROMMODULES = 0x08000
CSIDL_PROGRAMS = 0x0002
CSIDL_PERSONAL = 0x0005
CSIDL_FAVORITES_GRYPHON = 0x0006
CSIDL_STARTUP = 0x0007
CSIDL_RECENT = 0x0008
CSIDL_STARTMENU = 0x000b
CSIDL_DESKTOPDIRECTORY = 0x0010
CSIDL_FONTS = 0x0014
CSIDL_FAVORITES = 0x0016
#dwShareMode
GENERIC_WRITE = 0x40000000
GENERIC_READ = 0x80000000
FILE_SHARE_READ = 0x00000001
#dwCreationDisposition
CREATE_NEW = 1
CREATE_ALWAYS = 2
OPEN_EXISTING = 3
OPEN_ALWAYS = 4
TRUNCATE_EXISTING = 5
OPEN_FOR_LOADER = 6
#dwFlagsAndAttributes
FILE_ATTRIBUTE_READONLY = 0x00000001
FILE_ATTRIBUTE_HIDDEN = 0x00000002
FILE_ATTRIBUTE_SYSTEM = 0x00000004
FILE_ATTRIBUTE_1 = 0x00000008
FILE_ATTRIBUTE_DIRECTORY = 0x00000010
FILE_ATTRIBUTE_ARCHIVE = 0x00000020
FILE_ATTRIBUTE_INROM = 0x00000040
FILE_ATTRIBUTE_NORMAL = 0x00000080
FILE_ATTRIBUTE_TEMPORARY = 0x00000100
FILE_ATTRIBUTE_2 = 0x00000200
FILE_ATTRIBUTE_3 = 0x00000400
FILE_ATTRIBUTE_COMPRESSED = 0x00000800
FILE_ATTRIBUTE_ROMSTATICREF = 0x00001000
FILE_ATTRIBUTE_ROMMODULE = 0x00002000
FILE_ATTRIBUTE_4 = 0x00004000
FILE_ATTRIBUTE_5 = 0x00008000
FILE_ATTRIBUTE_HAS_CHILDREN = 0x00010000
FILE_ATTRIBUTE_SHORTCUT = 0x00020000
FILE_ATTRIBUTE_6 = 0x00040000
FILE_ATTRIBUTE_7 = 0x00080000
#
# RAPIError is a subclass of Exception
class RAPIError(Exception):
def __init__(self, retval):
self.retval = retval
def __str__(self):
return str(self.retval)
class RegKey:
def __init__(self, handle, disposition=REG_OPENED_EXISTING_KEY):
self.handle = handle
self.disposition = disposition
self._host_le = (sys.byteorder == "little")
def open_sub_key(self, sub_key):
cdef LPWSTR sub_key_w
cdef HKEY opened_key
if sub_key != None:
sub_key_w = wstr_from_utf8(sub_key)
else:
sub_key_w = NULL
retval = CeRegOpenKeyEx(self.handle, sub_key_w, 0, 0, &opened_key)
if sub_key != None:
wstr_free_string(sub_key_w)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
return RegKey(opened_key)
def create_sub_key(self, sub_key, key_class=""):
cdef HKEY result
cdef DWORD disposition
cdef LPWSTR sub_key_w
cdef LPWSTR key_class_w
if sub_key != None:
sub_key_w = wstr_from_utf8(sub_key)
else:
sub_key_w = NULL
key_class_w = wstr_from_utf8(key_class)
retval = CeRegCreateKeyEx(self.handle, sub_key_w, 0, key_class_w,
0, 0, NULL, &result, &disposition)
if sub_key != None:
wstr_free_string(sub_key_w)
wstr_free_string(key_class_w)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
return RegKey(result, disposition)
def _dword_swap(self, dw):
return (dw & 0x000000FF) << 24 | \
(dw & 0x0000FF00) << 8 | \
(dw & 0x00FF0000) >> 8 | \
(dw & 0xFF000000) >> 24
def _dword_le_to_host(self, dw):
if self._host_le:
return dw
else:
return self._dword_swap(dw)
def _dword_le_from_host(self, dw):
if self._host_le:
return dw
else:
return self._dword_swap(dw)
def query_value(self, value_name):
cdef LPWSTR name_w
cdef DWORD type
cdef LPBYTE data
cdef DWORD data_size
cdef LPDWORD dw_ptr
name_w = NULL
data = NULL
try:
if value_name != None:
name_w = wstr_from_utf8(value_name)
else:
name_w = NULL
data = <LPBYTE> malloc(4096)
data_size = 4096
retval = CeRegQueryValueEx(self.handle, name_w, NULL,
&type, data, &data_size)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
if type == REG_DWORD:
dw_ptr = <LPDWORD> data
value = self._dword_le_to_host(dw_ptr[0])
elif type == REG_SZ:
value = wstr_to_utf8(<LPCWSTR> data)
else:
# FIXME
return <char *> data
return value
finally:
if name_w != NULL:
wstr_free_string(name_w)
if data != NULL:
free(data)
def set_value(self, value_name, value_data, value_type=None):
cdef LPWSTR name_w
cdef LPBYTE data
cdef DWORD data_size
name_w = NULL
data = NULL
try:
if value_type == None:
if isinstance(value_data, basestring):
value_type = REG_SZ
else:
value_type = REG_DWORD
if value_name != None:
name_w = wstr_from_utf8(value_name)
else:
name_w = NULL
if value_type == REG_SZ:
data = <LPBYTE> wstr_from_utf8(value_data)
data_size = (len(value_data) + 1) * 2
elif value_type == REG_DWORD:
data = <LPBYTE> malloc(4)
(<LPDWORD> data)[0] = self._dword_le_from_host(value_data)
data_size = 4
else:
raise RAPIError("support for type %d not yet implemented" % value_type)
retval = CeRegSetValueEx(self.handle, name_w, 0, value_type, data, data_size)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
return retval
finally:
if name_w != NULL:
wstr_free_string(name_w)
if data != NULL:
if type == REG_SZ:
wstr_free_string(data)
else:
free(data)
def delete_sub_key(self, sub_key):
cdef LPWSTR key_w
key_w = wstr_from_utf8(sub_key)
retval = CeRegDeleteKey(self.handle, key_w)
wstr_free_string(key_w)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
return retval
def delete_value(self, value_name=None):
cdef LPWSTR name_w
if value_name != None:
name_w = wstr_from_utf8(value_name)
else:
name_w = NULL
retval = CeRegDeleteValue(self.handle, name_w)
if name_w != NULL:
wstr_free_string(name_w)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
return retval
def close(self):
retval = CeRegCloseKey(self.handle)
if retval != ERROR_SUCCESS:
raise RAPIError(retval)
class RAPISession:
HKEY_CLASSES_ROOT = RegKey(0x80000000)
HKEY_CURRENT_USER = RegKey(0x80000001)
HKEY_LOCAL_MACHINE = RegKey(0x80000002)
HKEY_USERS = RegKey(0x80000003)
def __init__(self, log_level=0):
cdef void *conn
synce_log_set_level(log_level)
conn = rapi_connection_from_name(NULL)
rapi_connection_select(conn)
retval = CeRapiInit()
if retval != 0:
raise RAPIError(retval)
def process_config(self, config, flags):
cdef LPWSTR config_w
cdef LPWSTR reply_w
cdef char *reply
config_w = wstr_from_utf8(config)
#retval = _CeProcessConfig(config_w, flags, &reply_w)
retval = CeProcessConfig(config_w, flags, &reply_w)
wstr_free_string(config_w)
reply = wstr_to_utf8(reply_w)
wstr_free_string(reply_w)
if retval != 0:
raise RAPIError(retval)
return reply
def start_replication(self):
retval = CeStartReplication()
if retval != TRUE:
raise RAPIError(retval)
def sync_start(self, params):
cdef LPWSTR params_w
params_w = wstr_from_utf8(params)
retval = CeSyncStart(params_w)
wstr_free_string(params_w)
if retval != 0:
raise RAPIError(retval)
def sync_resume(self):
retval = CeSyncResume()
if retval != 0:
raise RAPIError(retval)
def sync_pause(self):
retval = CeSyncPause()
if retval != 0:
raise RAPIError(retval)
def SyncTimeToPc(self):
return CeSyncTimeToPc()
def getDiskFreeSpaceEx(self, path):
cdef ULARGE_INTEGER freeBytesAvailable
cdef ULARGE_INTEGER totalNumberOfBytes
cdef ULARGE_INTEGER totalNumberOfFreeBytes
retval = CeGetDiskFreeSpaceEx( path, &freeBytesAvailable, &totalNumberOfBytes, &totalNumberOfFreeBytes)
#This functions returns 0 if something went wrong....
if retval == 0:
raise RAPIError(retval)
#return a tuple at the moment, maybe later make this a list
return (freeBytesAvailable, totalNumberOfBytes, totalNumberOfFreeBytes)
def getSystemPowerStatus(self, refresh):
cdef SYSTEM_POWER_STATUS_EX powerStatus
retval = CeGetSystemPowerStatusEx( &powerStatus, 0 )
#In contrast to other functions, this returns a boolean,
#denoting whether the call was succesfull
if retval == 0:
raise RAPIError(retval)
#Now construct the dictionary:
result = dict()
result["ACLineStatus"] = powerStatus.ACLineStatus
result["BatteryFlag"] = powerStatus.BatteryFlag
result["BatteryLifePercent"] = powerStatus.BatteryLifePercent
result["Reserved1"] = powerStatus.Reserved1
result["BatteryLifeTime"] = powerStatus.BatteryLifeTime
result["BatteryFullLifeTime"] = powerStatus.BatteryFullLifeTime
result["Reserved2"] = powerStatus.Reserved2
result["BackupBatteryFlag"] = powerStatus.BackupBatteryFlag
result["BackupBatteryLifePercent"] = powerStatus.BackupBatteryLifePercent
result["Reserved3"] = powerStatus.Reserved3
result["BackupBatteryLifeTime"] = powerStatus.BackupBatteryLifeTime
result["BackupBatteryFullLifeTime"] = powerStatus.BackupBatteryFullLifeTime
return result
def findAllFiles( self, query, flags ):
cdef LPWSTR query_w
query_w = wstr_from_utf8(query)
cdef LPCE_FIND_DATA find_data
cdef DWORD numberOfFiles
cdef CE_FIND_DATA found_file
retval = CeFindAllFiles( query_w, flags , &numberOfFiles, &find_data )
#Now create a list of dictionaries
result = []
i=0
while i < numberOfFiles:
found_file = find_data[ i ]
this_file = dict()
if flags & FAF_ATTRIBUTES:
this_file["Attributes"] = found_file.dwFileAttributes
if flags & FAF_CREATION_TIME:
this_file["CreationLowDateTime"] = found_file.ftCreationTime.dwLowDateTime
this_file["CreationHighDateTime"] = found_file.ftCreationTime.dwHighDateTime
if flags & FAF_LASTACCESS_TIME:
this_file["LastAccessLowDateTime"] = found_file.ftLastAccessTime.dwLowDateTime
this_file["LastAccessHighDateTime"] = found_file.ftLastAccessTime.dwHighDateTime
if flags & FAF_LASTWRITE_TIME:
this_file["LastWriteLowDateTime"] = found_file.ftCreationTime.dwLowDateTime
this_file["LastWriteHighDateTime"] = found_file.ftCreationTime.dwHighDateTime
if flags & FAF_SIZE_HIGH:
this_file["SizeHigh"] = found_file.nFileSizeHigh
if flags & FAF_SIZE_LOW:
this_file["SizeLow"] = found_file.nFileSizeLow
if flags & FAF_OID:
this_file["OID"] = found_file.dwOID
if flags & FAF_NAME:
this_file["Name"] = wstr_to_utf8(found_file.cFileName)
result.append( this_file )
i = i + 1
return result
#TODO: ERROR HANDLING!
def closeHandle(self, hObject):
retval = CeCloseHandle( hObject )
#Non-zero indicates success, zero indicates failure
if retval == 0:
raise RAPIError(retval)
#TODO: ERROR HANDLING!
def createFile(self, filename, desiredAccess, shareMode, createDisposition, flagsAndAttributes):
cdef LPWSTR filename_w
cdef HANDLE fileHandle
filename_w = wstr_from_utf8(filename)
fileHandle = CeCreateFile( filename_w, desiredAccess, shareMode, NULL, createDisposition, flagsAndAttributes, 0 )
return fileHandle
#TODO: ERROR HANDLING!
def readFile( self, fileHandle, numberOfBytesToRead ):
cdef DWORD numberOfBytesRead
cdef DWORD dwNumberOfBytesToRead
dwNumberOfBytesToRead = numberOfBytesToRead
cdef LPBYTE c_buffer
c_buffer = <LPBYTE> malloc (numberOfBytesToRead)
CeReadFile( fileHandle, c_buffer , numberOfBytesToRead, &numberOfBytesRead, NULL )
if numberOfBytesRead < numberOfBytesToRead:
c_buffer = <LPBYTE> realloc( c_buffer, numberOfBytesRead)
cdef object returnstring
returnstring = PyString_FromStringAndSize(<char *>c_buffer, numberOfBytesRead)
free(c_buffer)
return returnstring, numberOfBytesRead
#TODO: ERROR HANDLING!
#TODO: Provide the user with the processInformation
def writeFile( self, fileHandle, buffer, numberOfBytesToWrite ):
cdef DWORD numberOfBytesWritten
cdef DWORD dwNumberOfBytesToWrite
cdef char* c_buffer
c_buffer = buffer
_CeWriteFile( fileHandle, c_buffer , numberOfBytesToWrite, &numberOfBytesWritten, NULL)
def createProcess(self, applicationName, applicationParams):
cdef PROCESS_INFORMATION processInformation
return CeCreateProcess( wstr_from_utf8(applicationName), wstr_from_utf8(applicationParams), NULL, NULL, False, 0, NULL, NULL, NULL, &processInformation)
def getVersion(self):
cdef CEOSVERSIONINFO osVersionInfo
#cdef SYSTEM_POWER_STATUS_EX powerStatus
retval = CeGetVersionEx( &osVersionInfo)
if retval == 0:
raise RAPIError(retval)
#Now construct the dictionary:
result = dict()
result["OSVersionInfoSize"] = osVersionInfo.dwOSVersionInfoSize
result["MajorVersion"] = osVersionInfo.dwMajorVersion
result["MinorVersion"] = osVersionInfo.dwMinorVersion
result["BuildNumber"] = osVersionInfo.dwBuildNumber
result["PlatformId"] = osVersionInfo.dwPlatformId
return result
def getSystemInfo(self):
cdef SYSTEM_INFO systemInfo
CeGetSystemInfo( &systemInfo )
result = dict()
result["ProcessorArchitecture"] = systemInfo.wProcessorArchitecture
result["Reserved"] = systemInfo.wReserved
result["PageSize"] = systemInfo.dwPageSize
result["MinimumApplicationAddress"] = systemInfo.lpMinimumApplicationAddress
result["MaximumApplicationAddress"] = systemInfo.lpMaximumApplicationAddress
result["ActiveProcessorMask"] = systemInfo.dwActiveProcessorMask
result["NumberOfProcessors"] = systemInfo.dwNumberOfProcessors
result["ProcessorType"] = systemInfo.dwProcessorType
result["AllocationGranularity"] = systemInfo.dwAllocationGranularity
result["ProcessorLevel"] = systemInfo.wProcessorLevel
result["ProcessorRevision"] = systemInfo.wProcessorRevision
return result
|