2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2013-10-16 21:59:46 +00:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2015-07-01 23:13:49 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-04-10 04:17:14 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2013-10-04 04:49:15 +00:00
|
|
|
namespace rocksdb {
|
2013-05-21 18:37:06 +00:00
|
|
|
|
2014-11-21 16:05:28 +00:00
|
|
|
extern std::vector<std::string> StringSplit(const std::string& arg, char delim);
|
2013-05-21 18:37:06 +00:00
|
|
|
|
2014-11-25 04:44:49 +00:00
|
|
|
template <typename T>
|
|
|
|
inline std::string ToString(T value) {
|
2015-04-24 02:17:57 +00:00
|
|
|
#if !(defined OS_ANDROID) && !(defined CYGWIN)
|
2014-11-25 04:44:49 +00:00
|
|
|
return std::to_string(value);
|
|
|
|
#else
|
2015-04-24 02:17:57 +00:00
|
|
|
// Andorid or cygwin doesn't support all of C++11, std::to_string() being
|
2014-11-25 04:44:49 +00:00
|
|
|
// one of the not supported features.
|
|
|
|
std::ostringstream os;
|
|
|
|
os << value;
|
|
|
|
return os.str();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-04-10 04:17:14 +00:00
|
|
|
} // namespace rocksdb
|