PStack  2.0
Stack trace printer for MSVC and GCC binaries
platform.hpp File Reference

Master header file for Platform-wide declarations. More...

#include <Windows.h>
#include <cstddef>
#include <cstdint>
#include <string>
Include dependency graph for platform.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 psystem
 Contains the process examination "system" and basic frameworks.
 

Macros

#define PSYSTEM_FRAMEWORK_PLATFORM_HPP
 
#define _ALLOW_KEYWORD_MACROS
 Tell MSVC to allow certain keywords.
 
#define constexpr   const
 Replace keyword with something useful.
 
#define noexcept   throw()
 Replace keyword with something useful.
 

Typedefs

typedef DWORD psystem::error_t
 Container type for system error codes. More...
 
typedef std::uintptr_t psystem::address_t
 Container type for a memory address.
 
typedef std::ptrdiff_t psystem::integral_address_t
 A memory address as an integer type (platform specific).
 
typedef DWORD psystem::process_id_t
 Data-type that stores a process ID (PID).
 
typedef DWORD psystem::thread_id_t
 Data-type that stores a thread ID (TID).
 
typedef std::string psystem::tstring
 A std::string implementation based on the UNICODE macro. More...
 

Macros to Aid Code Flow

#define LIKELY(cond)    (cond)
 Alters branch prediction in generated code to favor a "true" result. More...
 
#define UNLIKELY(cond)   (cond)
 Alters branch prediction in generated code to favor a false result. More...
 
#define ASSERT(cond)
 Abort the process if the condition is not satisfied. More...
 
#define ASSERT_USING_VAR(var, cond)   ((void)(var))
 Abort the process if the condition is not satisfied, declaring the a variable is used by the assertion. More...
 

Resource-file Macros

#define PRERELEASE_FLAGS   0
 Resource flags to indicate a "private" build of the application.
 
#define FILE_FLAGS   PRERELEASE_FLAGS
 Resource flags to indicate that the application is a debug version.
 
#define STRINGIZE_SINGLE_VERSION_ID(id)   #id
 Make a C-string from a token. More...
 
#define MAKE_PRODUCT_VERSION_ID(maj, min, patch)
 Builds a string to represent the product version. More...
 
#define MAKE_FILE_VERSION_ID(maj, min, patch, bld)
 Builds a string to represent the version of a specific file. More...
 

Detailed Description

Master header file for Platform-wide declarations.

Author
Matt Bisson
Date
5 August, 2014
Since
PSystem 2.0
Version
PSystem 2.0
Todo:

Decide on a consistent approach between TCHAR and char...

Remove "_t" from non-system types.

Note
MSVC does not support the noexcept keyword in 2013. Consequently, we cannot provide defaulted CTORs and DTORs that have an exception specification either as required by the C++ language (see C++ specification 8.4.2). There is a run-time benefit associated with noexcept (and to a lesser extent, throw()), so we'll still try to use it.

Macro Definition Documentation

#define ASSERT (   cond)

Abort the process if the condition is not satisfied.

This macro evaluates to nothing unless _DEBUG is defined as a preprocessor token. If the condition evaluates to false, the macro prints the condition as well as the source code location to stderr.

Parameters
condThe (boolean) condition that we assert is always true.
#define ASSERT_USING_VAR (   var,
  cond 
)    ((void)(var))

Abort the process if the condition is not satisfied, declaring the a variable is used by the assertion.

This macro behaves identically to the ASSERT() macro, however it marks a variable as "used" to prevent compilation warnings in non-debug code.

Parameters
varThe name of the variable that the assertion examines.
condThe (boolean) condition that we assert is always true.
#define LIKELY (   cond)    (cond)

Alters branch prediction in generated code to favor a "true" result.

Parameters
condA conditional expression that will be evaluated.
#define MAKE_FILE_VERSION_ID (   maj,
  min,
  patch,
  bld 
)
Value:
STRINGIZE_SINGLE_VERSION_ID(min) "." \
STRINGIZE_SINGLE_VERSION_ID(patch) " (build " \
STRINGIZE_SINGLE_VERSION_ID(bld) ")"
#define STRINGIZE_SINGLE_VERSION_ID(id)
Make a C-string from a token.
Definition: platform.hpp:179

Builds a string to represent the version of a specific file.

Parameters
[in]majMajor version number (expects an integer).
[in]minMinor version number (expects an integer).
[in]patchPatch level (expects an integer).
[in]bldBuild ID / number (expects an integer).
#define MAKE_PRODUCT_VERSION_ID (   maj,
  min,
  patch 
)
Value:
STRINGIZE_SINGLE_VERSION_ID(min) "." \
STRINGIZE_SINGLE_VERSION_ID(patch)
#define STRINGIZE_SINGLE_VERSION_ID(id)
Make a C-string from a token.
Definition: platform.hpp:179

Builds a string to represent the product version.

Parameters
[in]majMajor version number (expects an integer).
[in]minMinor version number (expects an integer).
[in]patchPatch level (expects an integer).
#define STRINGIZE_SINGLE_VERSION_ID (   id)    #id

Make a C-string from a token.

This is required for the resource file. It seems that some (not all) fields require an extra indirection to construct the desired string. When passing a pre-processor constant to one of the MAKE_xxx_VERSION_ID macros, the result becomes the names of the macros passed in instead of the version numbers that those macros define.

Parameters
[in]idThe token to form into a string.
#define UNLIKELY (   cond)    (cond)

Alters branch prediction in generated code to favor a false result.

Parameters
condA conditional expression that will be evaluated.