11 #include <boost/cstdint.hpp>
12 #include <boost/thread/recursive_mutex.hpp>
302 #ifndef SAWYER_VERSION_MAJOR
303 #define SAWYER_VERSION_MAJOR 0
304 #define SAWYER_VERSION_MINOR 1
305 #define SAWYER_VERSION_PATCH 0
313 #define SAWYER_MULTI_THREADED 1
314 #define SAWYER_THREAD_TAG Sawyer::MultiThreadedTag
316 #define SAWYER_MULTI_THREADED 0
317 #define SAWYER_THREAD_TAG Sawyer::SingleThreadedTag
319 #define SAWYER_THREAD_TRAITS Sawyer::SynchronizationTraits<SAWYER_THREAD_TAG>
322 #if __cplusplus >= 201103L
323 #define SAWYER_THREAD_LOCAL thread_local
324 #elif defined(_MSC_VER)
326 #define SAWYER_THREAD_LOCAL __declspec(thread)
329 #define SAWYER_THREAD_LOCAL __thread
332 #define SAWYER_THREAD_LOCAL
338 #if defined(SAWYER_DO_EXPORTS) || defined(ROSE_UTIL_EXPORTS) // defined in CMake when compiling libsawyer
339 #define SAWYER_EXPORT __declspec(dllexport)
341 #define SAWYER_EXPORT __declspec(dllimport)
344 #define SAWYER_EXPORT
348 #define SAWYER_LINKAGE_INFO SAWYER_VERSION_MAJOR, SAWYER_VERSION_MINOR, SAWYER_VERSION_PATCH, SAWYER_MULTI_THREADED
349 #define SAWYER_CHECK_LINKAGE Sawyer::initializeLibrary(SAWYER_LINKAGE_INFO)
362 size_t vminor=SAWYER_VERSION_MINOR,
363 size_t vpatch=SAWYER_VERSION_PATCH,
364 bool withThreads=SAWYER_MULTI_THREADED);
369 SAWYER_EXPORT boost::int64_t
strtoll(
const char*,
char**,
int);
374 SAWYER_EXPORT boost::uint64_t
strtoull(
const char*,
char**,
int);
382 SAWYER_EXPORT FILE *
popen(
const std::string&,
const char *how);
385 SAWYER_EXPORT
int pclose(FILE*);
420 # define SAWYER_ARGUSED(X) (void)(X)
427 # define SAWYER_ATTR_UNUSED
428 # define SAWYER_PRETTY_FUNCTION __FUNCSIG__
429 # define SAWYER_MAY_ALIAS
430 # define SAWYER_STATIC_INIT
431 # define SAWYER_DEPRECATED(WHY)
435 # define SAWYER_VARIABLE_LENGTH_ARRAY(TYPE, NAME, SIZE) \
436 std::vector<TYPE> NAME##Vec_(SIZE); \
437 TYPE *NAME = &(NAME##Vec_[0]);
444 # define SAWYER_ATTR_UNUSED
445 # define SAWYER_PRETTY_FUNCTION __PRETTY_FUNCTION__
446 # define SAWYER_MAY_ALIAS
447 # define SAWYER_STATIC_INIT
448 # define SAWYER_DEPRECATED(WHY)
450 # define SAWYER_VARIABLE_LENGTH_ARRAY(TYPE, NAME, SIZE) \
451 TYPE NAME[SIZE]; memset(NAME, 0, (SIZE)*sizeof(TYPE))
453 #elif defined(__APPLE__) && defined(__MACH__)
458 # define SAWYER_ATTR_UNUSED
459 # define SAWYER_PRETTY_FUNCTION __PRETTY_FUNCTION__
460 # define SAWYER_MAY_ALIAS
461 # define SAWYER_STATIC_INIT
462 # define SAWYER_DEPRECATED(WHY)
466 # define SAWYER_VARIABLE_LENGTH_ARRAY(TYPE, NAME, SIZE) \
467 std::vector<TYPE> NAME##Vec_(SIZE); \
468 TYPE *NAME = &(NAME##Vec_[0]);
476 # define SAWYER_ATTR_UNUSED __attribute__((unused))
477 # define SAWYER_PRETTY_FUNCTION __PRETTY_FUNCTION__
478 # define SAWYER_MAY_ALIAS __attribute__((may_alias))
479 # define SAWYER_DEPRECATED(WHY) __attribute__((deprecated))
483 # define SAWYER_STATIC_INIT __attribute__((init_priority(101)))
485 # define SAWYER_VARIABLE_LENGTH_ARRAY(TYPE, NAME, SIZE) \
486 TYPE NAME[SIZE]; memset(NAME, 0, (SIZE)*sizeof(TYPE))
490 #define SAWYER_CONFIGURED
int pclose(FILE *)
Semi-portable replacement for pclose.
std::string readOneLine(FILE *)
Reads one line of input from a file.
std::string thisExecutableName()
Return the name of this program obtained from the operating system.
void checkBoost()
Check for valid boost version or abort.
FILE * popen(const std::string &, const char *how)
Semi-portable replacement for popen.
std::string generateSequentialName(size_t length=3)
Generate a sequential name.
Name space for the entire library.
bool initializeLibrary(size_t vmajor=0, size_t vminor=1, size_t vpatch=0, bool withThreads=0)
Explicitly initialize the library.
boost::uint64_t strtoull(const char *, char **, int)
Portable replacement for strtoull.
boost::int64_t strtoll(const char *, char **, int)
Portable replacement for strtoll.