You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/* /////////////////////////////////////////////////////////////////////////
* File: test/scratch/test.scratch.trace/test.scratch.trace.cpp * * Purpose: Implementation file for the trace_test project. * * Created: 5th August 2007 * Updated: 6th August 2012 * * Status: Wizard-generated * * License: (Licensed under the Synesis Software Open License) * * Copyright (c) 2007-2012, Synesis Software Pty Ltd. * All rights reserved. * * www: http://www.synesis.com.au/software
* * ////////////////////////////////////////////////////////////////////// */
#define PANTHEIOS_NO_INCLUDE_OS_AND_3PTYLIB_STRING_ACCESS
/* Pantheios Header Files */ #include <pantheios/pantheios.hpp>
#include <pantheios/trace.h>
#include <pantheios/backend.h>
#include <pantheios/backends/bec.WindowsConsole.h>
#include <pantheios/backends/bec.WindowsDebugger.h>
/* STLSoft Header Files */ #include <stlsoft/stlsoft.h>
/* Standard C++ Header Files */ #include <exception>
/* Standard C Header Files */ #include <stdio.h>
#include <stdlib.h>
#if defined(_MSC_VER) && \
defined(_DEBUG) # include <crtdbg.h>
#endif /* _MSC_VER) && _DEBUG */
/* /////////////////////////////////////////////////////////////////////////
* Globals */
PANTHEIOS_EXTERN_C PAN_CHAR_T const PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("test.scratch.trace");
PANTHEIOS_CALL(void) pantheios_be_WindowsConsole_getAppInit(int /* backEndId */, pan_be_WindowsConsole_init_t *init) /* throw() */ { init->flags |= PANTHEIOS_BE_INIT_F_NO_PROCESS_ID; init->flags |= PANTHEIOS_BE_INIT_F_NO_THREAD_ID; init->flags |= PANTHEIOS_BE_INIT_F_NO_DATETIME; init->flags |= PANTHEIOS_BE_INIT_F_NO_SEVERITY; init->flags |= PANTHEIOS_BE_INIT_F_DETAILS_AT_START; }
PANTHEIOS_CALL(void) pantheios_be_WindowsDebugger_getAppInit(int /* backEndId */, pan_be_WindowsDebugger_init_t *init) /* throw() */ { init->flags |= PANTHEIOS_BE_INIT_F_NO_PROCESS_ID; init->flags |= PANTHEIOS_BE_INIT_F_NO_THREAD_ID; init->flags |= PANTHEIOS_BE_INIT_F_NO_DATETIME; init->flags |= PANTHEIOS_BE_INIT_F_NO_SEVERITY; init->flags |= PANTHEIOS_BE_INIT_F_DETAILS_AT_START; }
/* ////////////////////////////////////////////////////////////////////// */
static int main_(int /* argc */, char** /*argv*/) { #ifndef __FUNCTION__
# define __FUNCTION__ "main"
#endif
PANTHEIOS_TRACE_DEBUG("debug"); PANTHEIOS_TRACE_INFORMATIONAL("informational"); PANTHEIOS_TRACE_NOTICE("notice"); PANTHEIOS_TRACE_WARNING("warning"); PANTHEIOS_TRACE_ERROR("error"); PANTHEIOS_TRACE_CRITICAL("critical"); PANTHEIOS_TRACE_ALERT("alert"); PANTHEIOS_TRACE_EMERGENCY("emergency");
return EXIT_SUCCESS; }
int main(int argc, char** argv) { int res;
#if defined(_MSC_VER) && \
defined(_DEBUG) _CrtMemState memState; #endif /* _MSC_VER && _MSC_VER */
#if defined(_MSC_VER) && \
defined(_DEBUG) _CrtMemCheckpoint(&memState); #endif /* _MSC_VER && _MSC_VER */
#if 0
{ for(size_t i = 0; i < 0xffffffff; ++i){} } #endif /* 0 */
try { res = main_(argc, argv); } catch(std::exception &x) { pantheios::log_ALERT("Unexpected general error: ", x, ". Application terminating");
res = EXIT_FAILURE; } catch(...) { pantheios::logputs(pantheios::emergency, "Unhandled unknown error");
res = EXIT_FAILURE; }
#if defined(_MSC_VER) && \
defined(_DEBUG) _CrtMemDumpAllObjectsSince(&memState); #endif /* _MSC_VER) && _DEBUG */
return res; }
/* ////////////////////////////////////////////////////////////////////// */
|