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/component/test.component.inserters.threadId/test.component.inserters.threadId.cpp * * Purpose: Implementation file for the test.component.inserters.threadId project. * * Created: 17th October 2006 * Updated: 6th August 2012 * * Status: Wizard-generated * * License: (Licensed under the Synesis Software Open License) * * Copyright (c) 2006-2012, Synesis Software Pty Ltd. * All rights reserved. * * www: http://www.synesis.com.au/software
* * ////////////////////////////////////////////////////////////////////// */
#include <pantheios/util/test/compiler_warnings_suppression.first_include.h>
/* xTests Header Files */ #include <xtests/xtests.h>
/* Pantheios Header Files */ #include <pantheios/pantheios.hpp> // Pantheios C++ main header
#include <pantheios/inserters/threadid.hpp> // for pantheios::threadId
#include <pantheios/backends/bec.test.h>
#include <pantheios/internal/threading.h>
/* STLSoft Header Files */ #include <stlsoft/conversion/integer_to_string.hpp>
#include <platformstl/platformstl.h>
/* Standard C Header Files */ #include <stdlib.h> // for exit codes
#if defined(PLATFORMSTL_OS_IS_UNIX)
# include <unistd.h>
#endif /* OS */
#ifdef PANTHEIOS_MT
# if defined(PLATFORMSTL_OS_IS_UNIX)
# include <pthread.h>
# elif defined(PLATFORMSTL_OS_IS_WINDOWS)
# include <windows.h>
# else /* ? OS */
# error Not discriminated for platforms other than UNIX and Windows
# endif /* OS */
#endif /* PANTHEIOS_MT */
#include <pantheios/util/test/compiler_warnings_suppression.last_include.h>
/* /////////////////////////////////////////////////////////////////////////
* Forward declarations */
static void test_1_01();
static pantheios::sint64_t pan_get_tid_();
/* ////////////////////////////////////////////////////////////////////// */
/* Define the stock front-end process identity, so that it links when using
* fe.N, fe.simple, etc. */ PANTHEIOS_EXTERN_C PAN_CHAR_T const PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("test.component.inserters.threadId");
/* ////////////////////////////////////////////////////////////////////// */
#define PSTR(x) PANTHEIOS_LITERAL_STRING(x)
/* /////////////////////////////////////////////////////////////////////////
* Character encoding */
#ifdef PANTHEIOS_USE_WIDE_STRINGS
# define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_WIDE_STRING_EQUAL
#else /* ? PANTHEIOS_USE_WIDE_STRINGS */
# define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_MULTIBYTE_STRING_EQUAL
#endif /* PANTHEIOS_USE_WIDE_STRINGS */
/* ////////////////////////////////////////////////////////////////////// */
int main(int argc, char** argv) { int retCode = EXIT_SUCCESS; int verbosity = 2;
XTESTS_COMMANDLINE_PARSEVERBOSITY(argc, argv, &verbosity);
if(XTESTS_START_RUNNER("test.component.inserters.threadId", verbosity)) { XTESTS_RUN_CASE(test_1_01);
XTESTS_PRINT_RESULTS();
XTESTS_END_RUNNER_UPDATE_EXITCODE(&retCode); }
return retCode; }
/* ////////////////////////////////////////////////////////////////////// */
static void test_1_01() { // 1. Setup
const PAN_CHAR_T prefix[] = PSTR("thread: "); PAN_CHAR_T tid_[21 + STLSOFT_NUM_ELEMENTS(prefix)]; PAN_CHAR_T const* tid = stlsoft::integer_to_string(&tid_[0], STLSOFT_NUM_ELEMENTS(tid_), pan_get_tid_()); PAN_CHAR_T const* stmt = tid - (STLSOFT_NUM_ELEMENTS(prefix) - 1);
#ifdef PANTHEIOS_USE_WIDE_STRINGS
::wcsncpy(const_cast<PAN_CHAR_T*>(stmt), prefix, (STLSOFT_NUM_ELEMENTS(prefix) - 1)); #else /* ? PANTHEIOS_USE_WIDE_STRINGS */
::strncpy(const_cast<PAN_CHAR_T*>(stmt), prefix, (STLSOFT_NUM_ELEMENTS(prefix) - 1)); #endif /* PANTHEIOS_USE_WIDE_STRINGS */
pantheios::be::test::reset();
// 2. Create test data
pantheios::log_NOTICE(pantheios::threadId); pantheios::log_NOTICE(prefix, pantheios::threadId);
// 3. Verification
pantheios::be::test::Results results = pantheios::be::test::results();
XTESTS_TEST(!results.empty()); XTESTS_TEST(2 == results.size()); XTESTS_TEST_STRING_EQUAL(tid, results[0].statement); XTESTS_TEST_STRING_EQUAL(stmt, results[1].statement); }
static pantheios::sint64_t pan_get_tid_() { #if defined(PLATFORMSTL_OS_IS_UNIX)
# ifdef PANTHEIOS_MT
union { pantheios::sint64_t u64; pthread_t self;
} u;
STLSOFT_STATIC_ASSERT(sizeof(::pthread_self()) <= sizeof(pantheios::sint64_t));
u.u64 = 0; u.self = ::pthread_self();
return u.u64; # else /* ? PANTHEIOS_MT */
return 1; # endif /* PANTHEIOS_MT */
#elif defined(PLATFORMSTL_OS_IS_WINDOWS)
return static_cast<pantheios::sint64_t>(::GetCurrentThreadId()); #else /* ? OS */
# error Not discriminated for platforms other than UNIX and Windows
#endif /* OS */
}
/* ///////////////////////////// end of file //////////////////////////// */
|