Browse Source

Replace CL_REQUIRE/CL_PROVIDE(cl_prin_globals) with portable code.

The order of initialization of non-local objects in different compilation units
is not specified in C++. Hence special care should be taken to avoid static
initialization order fiasco. CLN solved the problem with some evil (GCC
specific, and even GCC-version-specific) hack. Replace it with a technique
similar to one used in STL to initialize std::cout and friends.
master
Alexei Sheplyakov 16 years ago
parent
commit
040ed6f6ed
  1. 9
      include/cln/io.h
  2. 20
      src/base/output/cl_prin_globals.cc

9
include/cln/io.h

@ -88,8 +88,15 @@ class cl_print_number_flags;
class cl_print_real_flags;
class cl_print_rational_flags;
class cl_print_float_flags;
CL_REQUIRE(cl_prin_globals)
class cl_prin_globals_init_helper
{
static int count;
public:
cl_prin_globals_init_helper();
~cl_prin_globals_init_helper();
};
static cl_prin_globals_init_helper cl_prin_globals_init_helper_instance;
// Define the customary << and >> operators.

20
src/base/output/cl_prin_globals.cc

@ -3,8 +3,6 @@
// General includes.
#include "cl_sysdep.h"
CL_PROVIDE(cl_prin_globals)
// Specification.
#include "cln/output.h"
@ -14,6 +12,23 @@ CL_PROVIDE(cl_prin_globals)
namespace cln {
cl_print_flags default_print_flags;
int cl_prin_globals_init_helper::count = 0;
cl_prin_globals_init_helper::cl_prin_globals_init_helper()
{
if (count++ == 0)
new ((void *)&default_print_flags) cl_print_flags();
}
cl_prin_globals_init_helper::~cl_prin_globals_init_helper()
{
if (--count == 0) {
// Nothing to clean up.
}
}
#if 0 // The default constructors already do this.
AT_INITIALIZATION(default_print_flags)
{
@ -29,4 +44,3 @@ AT_INITIALIZATION(default_print_flags)
} // namespace cln
CL_PROVIDE_END(cl_prin_globals)
Loading…
Cancel
Save