X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fhas.cc;h=a7a09cb4da909cb10e3f4eb80eb18a5ecbec4c82;hb=9d762a9c58fd0cfdd529002bf2b0ab6b2aaea2c3;hp=1e020a20047da1301c492dcb923ec95e302975c1;hpb=ad5cb8f903869065c72bb18bf98af6909189a5a9;p=awesomized%2Flibmemcached diff --git a/libtest/has.cc b/libtest/has.cc index 1e020a20..a7a09cb4 100644 --- a/libtest/has.cc +++ b/libtest/has.cc @@ -2,7 +2,7 @@ * * Data Differential YATL (i.e. libtest) library * - * Copyright (C) 2012 Data Differential, http://datadifferential.com/ + * Copyright (C) 2012-2013 Data Differential, http://datadifferential.com/ * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -34,9 +34,10 @@ * */ -#include "mem_config.h" +#include "libtest/yatlcon.h" #include +#include #include #include @@ -138,14 +139,17 @@ bool has_mysqld() return false; } -bool has_memcached() +static char memcached_binary_path[FILENAME_MAX]; + +static void initialize_curl_startup() { + memcached_binary_path[0]= NULL; + #if defined(HAVE_MEMCACHED_BINARY) && HAVE_MEMCACHED_BINARY if (HAVE_MEMCACHED_BINARY) { std::stringstream arg_buffer; - char *getenv_ptr; if (bool((getenv_ptr= getenv("PWD"))) and strcmp(MEMCACHED_BINARY, "memcached/memcached") == 0) { @@ -156,14 +160,46 @@ bool has_memcached() if (access(arg_buffer.str().c_str(), X_OK) == 0) { - return true; + strncpy(memcached_binary_path, arg_buffer.str().c_str(), FILENAME_MAX); } } #endif +} + +static pthread_once_t memcached_binary_once= PTHREAD_ONCE_INIT; +static void initialize_memcached_binary(void) +{ + int ret; + if ((ret= pthread_once(&memcached_binary_once, initialize_curl_startup)) != 0) + { + FATAL(strerror(ret)); + } +} + +bool has_memcached() +{ + initialize_memcached_binary(); + + if (memcached_binary_path[0]) + { + return true; + } return false; } +const char* memcached_binary() +{ + initialize_memcached_binary(); + + if (memcached_binary_path[0]) + { + return memcached_binary_path; + } + + return NULL; +} + bool has_memcached_sasl() { #if defined(HAVE_MEMCACHED_SASL_BINARY) && HAVE_MEMCACHED_SASL_BINARY @@ -179,4 +215,14 @@ bool has_memcached_sasl() return false; } +const char *gearmand_binary() +{ + return GEARMAND_BINARY; +} + +const char *drizzled_binary() +{ + return DRIZZLED_BINARY; +} + } // namespace libtest