blob: 787d763fedc707dc0b1169006a2a353cd38e8ff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2011 New Dream Network
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#include "systest_settings.h"
#include <pthread.h>
#include <sstream>
#include <stdlib.h>
pthread_mutex_t g_system_test_settings_lock = PTHREAD_MUTEX_INITIALIZER;
SysTestSettings& SysTestSettings::
inst()
{
pthread_mutex_lock(&g_system_test_settings_lock);
if (!m_inst)
m_inst = new SysTestSettings();
pthread_mutex_unlock(&g_system_test_settings_lock);
return *m_inst;
}
bool SysTestSettings::
use_threads() const
{
#ifdef _WIN32
// We can't use multiple processes on Windows for the time being.
// We'd need a mechanism for spawning those procecesses and also handle
// the inter-process communication.
return true;
#else
return m_use_threads;
#endif
}
std::string SysTestSettings::
get_log_name(const std::string &suffix) const
{
if (m_log_file_base.empty())
return "";
std::ostringstream oss;
oss << m_log_file_base << "." << suffix;
return oss.str();
}
SysTestSettings* SysTestSettings::
m_inst = NULL;
SysTestSettings::
SysTestSettings()
{
m_use_threads = !!getenv("USE_THREADS");
const char *lfb = getenv("LOG_FILE_BASE");
if (lfb)
m_log_file_base.assign(lfb);
}
SysTestSettings::
~SysTestSettings()
{
}
|