- Timestamp:
- 04/09/11 12:31:22 (14 years ago)
- Location:
- trunk/python/pyregfi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/pyregfi/__init__.py
r226 r227 133 133 134 134 135 ## An enumeration of log message types 136 # 137 # @note This is a static class, there is no need to instantiate it. 138 # Just access its attributes directly as LOG_TYPES.INFO, etc 139 class LOG_TYPES(object): 140 ## Informational messages, useful in debugging 141 INFO = 0x01 142 ## Non-critical problems in structure parsing or intepretation 143 WARN = 0x04 144 ## Major failures 145 ERROR = 0x10 146 147 135 148 def _buffer2bytearray(char_pointer, length): 136 149 if length == 0 or char_pointer == None: … … 180 193 return '' 181 194 return msgs.decode('utf-8') 195 196 197 ## Sets the types of log messages to record 198 # 199 # @param log_types A sequence of message types that regfi should generate. 200 # Message types can be found in the LOG_TYPES enumeration. 201 # 202 # @return True on success, False on failure. Failures are rare, but could 203 # indicate that global logging is not operating as expected. 204 # 205 # Example: 206 # @code 207 # SetLogMask((LOG_TYPES.ERROR, LOG_TYPES.WARN, LOG_TYPES.INFO)) 208 # @endcode 209 # 210 # The message mask is a global (all hives, iterators), thread-specific value. 211 # For more information, see @ref regfi_log_set_mask. 212 # 213 def SetLogMask(log_types): 214 mask = 0 215 for m in log_types: 216 mask |= m 217 return regfi.regfi_log_set_mask(mask) 218 182 219 183 220 -
trunk/python/pyregfi/structures.py
r226 r227 17 17 # XXX: can we always be sure enums are this size? 18 18 REGFI_ENCODING = c_uint32 19 REGFI_ENCODING_UTF8 = 119 REGFI_ENCODING_UTF8 = REGFI_ENCODING(1) 20 20 21 21 REGFI_DATA_TYPE = c_uint32 22 REGFI_REGF_SIZE = 0x100023 22 24 23
Note: See TracChangeset
for help on using the changeset viewer.