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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
//
// Copyright (C) 2020 Gareth Jones, Glysade LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
#ifndef UTIL_H_
#define UTIL_H_
#include <cmath>
#include <limits>
#include <cstdio>
#include <ctime>
#include <string>
#include <iostream>
#include <iterator>
#include <fstream>
#include <sstream>
#include <vector>
#include <memory>
#include <map>
#include <algorithm>
#include <boost/optional.hpp>
#include "export.h"
/*
* Utility methods
*/
namespace GarethUtil {
using namespace std;
/*
* Return current time as string
*/
string currentTime();
/**
*
* @param str
* @param prefix
* @return true id str starts with prefix
*/
GA_EXPORT bool startsWith(string str, string prefix);
/**
*
* @return current user name
*/
GA_EXPORT string getUserName();
/**
* Template function to convert a string to a type. Can optionally process a
* substring
*
* @param str
* @param ok optional boolean reference to indicate success or failure
* @param start optional start position
* @param end optional end position
* @return
*/
template <typename T>
T convertString(const string &str, bool *const ok = nullptr, size_t start = 0,
size_t noChars = 0) {
if (ok != nullptr) {
*ok = false;
}
T rtn;
if (str.empty()) {
return rtn;
}
if (start >= str.length()) {
return rtn;
}
if (noChars == 0) {
noChars = str.length() - start;
}
string field = str.substr(start, noChars);
stringstream ss(field);
ss >> rtn;
if (!ss.fail()) {
if (ok != nullptr) {
*ok = true;
}
}
return rtn;
}
/**
* Template function to write all elements of a vector to a string
*
* @param vec
* @param seperator
* @return
*/
template <typename T>
string collectionToString(const T &vec, const string &seperator = ", ") {
stringstream ss;
std::copy(vec.begin(), vec.end(),
ostream_iterator<typename T::value_type>(ss, seperator.c_str()));
// erase trailing separator
string rtn = ss.str();
if (!rtn.empty()) {
rtn.erase(rtn.length() - seperator.length(), seperator.length());
}
return rtn;
}
/**
* Removes any trailing linefeed (\r) from a string
* @param line
* @return
*/
GA_EXPORT string &removeTrailingLF(string &line);
/**
* Determines if a key is present in a map
*
* @param key
* @param map
* @param value optionally set the value for the key
* @return
*/
template <typename K, typename V>
bool isKeyPresent(const K key, const map<K, V> &map, V *const value = nullptr) {
auto iter = map.find(key);
if (iter != map.end()) {
if (value != nullptr) {
*value = iter->second;
}
return true;
}
return false;
}
/**
* Bs whitespace from beginning and end of string. Original argument is
* modified and returned.
* @param str
* @return
*/
GA_EXPORT string &trim(string &str);
/**
* Converts string to upper case. Original argument is modified and returned.
* @param str
* @return
*/
GA_EXPORT string &toUpperCase(string &str);
/**
* Converts string to lower case. Original argument is modified and returned.
* @param str
* @return
*/
GA_EXPORT string &toLowerCase(string &str);
/**
* @param str1
* @param str2
* @return true if the two strings are equal
*/
GA_EXPORT bool equals(const string &str1, const string &str2);
/**
* @param str1
* @param str2
* @return true if the two strings are equal (case insensitive)
*/
GA_EXPORT bool equalsIgnoreCase(const string &str1, const string &str2);
/**
*
* @param str
* @param suffix
* @return true if str ends with suffix
*/
GA_EXPORT bool endsWith(const string &str, const string &suffix);
/**
*
* @param vector
* @param value
* @return true if vector contains value
*/
template <typename T>
bool contains(std::vector<T> vector, T value) {
return std::find(vector.begin(), vector.end(), value) != vector.end();
}
/**
* Determines if two double numbers are equal within multiples of machine
* precision
*
* @param d1
* @param d2
* @param ulp machine precision (units in the last place)
* @return
*/
GA_EXPORT bool equals(const double d1, const double d2, const int ulp);
/**
* Returns true if the two numbers are within epsilon of each other
*
* @param d1
* @param d2
* @param epsilon
* @return
*/
GA_EXPORT bool equals(const double d1, const double d2, const double epsilon);
/**
* Determines if two double numbers are within one unit of the last place.
*
* @param d1
* @param d2
* @return
*/
GA_EXPORT bool equals(const double d1, const double d2);
/**
* Finds the first occurrence of an matching item in a list
*
* @param values
* @param matcher
* @return
*/
template <typename T>
boost::optional<T> findFirstInList(const std::vector<T> &values,
const function<bool(T)> &matcher) {
auto iter = std::find_if(values.cbegin(), values.cend(), matcher);
if (iter != values.cend()) {
return *iter;
}
return boost::none;
}
/**
* Finds the first occurrence of an matching item in a list of unique pointers
*
* @param values
* @param matcher
* @return
*/
template <typename T>
boost::optional<T *> findFirstInUniquePtrList(
const std::vector<unique_ptr<T>> &values,
const function<bool(const unique_ptr<T> &)> &matcher) {
auto iter = std::find_if(values.cbegin(), values.cend(), matcher);
if (iter != values.cend()) {
return iter->get();
}
return boost::none;
}
/**
* Removes all items from a list that DON'T match the filter. Alters and
* returns the original list.
*
* @param values
* @param filter
* @return
*/
template <typename T>
std::vector<T> &filterList(std::vector<T> &values,
const function<bool(T &)> &filter) {
auto iter = remove_if(values.begin(), values.end(), not1(filter));
values.erase(iter, values.end());
return values;
}
/**
* Creates a new vector of items in the input vector that match the filter
* @param values
* @param filter
* @return
*/
template <typename T>
std::vector<T> filterListToNewList(const std::vector<T> &values,
const function<bool(const T &)> &filter) {
std::vector<T> newValues;
newValues.reserve(values.size());
copy_if(values.begin(), values.end(), back_inserter(newValues), filter);
return newValues;
}
/**
* Creates a new vector of items in the input vector that match the filter.
* This method is specialized for an input list of unique pointers.
* A list of raw pointers is returned. It is assumed that the input list will
* outlast the filtered list.
*
* @param values
* @param filter
* @return
*/
template <typename T>
std::vector<T *> filterUniquePtrListToRawPtrList(
const std::vector<unique_ptr<T>> &values,
const function<bool(T &)> &filter) {
std::vector<T *> newValues;
newValues.reserve(values.size());
for (const auto &value : values) {
if (filter(*value)) {
newValues.push_back(value.get());
}
}
return newValues;
}
/**
* Specialization of the above for filtering non-const unique_ptrs to const raw
* pointer filtered list
* @param values
* @param filter
* @return
*/
template <typename T>
std::vector<const T *> filterUniquePtrListToConstRawPtrList(
const std::vector<unique_ptr<T>> &values,
const function<bool(T &)> &filter) {
std::vector<const T *> newValues;
newValues.reserve(values.size());
for (const auto &value : values) {
if (filter(*value)) {
newValues.push_back(value.get());
}
}
return newValues;
}
/**
* Creates a new list from an existing list by applying the mapping function.
*
* @param values
* @param map
* @return
*/
template <typename T, typename V>
std::vector<V> mapToNewList(const std::vector<T> &values,
const function<V(const T &)> &map) {
std::vector<V> mappedValues;
mappedValues.reserve(values.size());
std::transform(values.cbegin(), values.cend(), back_inserter(mappedValues),
map);
return mappedValues;
}
/**
* Creates a new list from an existing list by applying the mapping function.
*
* @param values
* @param map
* @return
*/
template <typename T>
std::vector<T> mapToNewList(const std::vector<T> &values,
const function<T(const T &)> &map) {
return mapToNewList<T, T>(values, map);
}
/**
* Applies a function to every value in a list.
*
* @param values
* @param func
*/
template <typename T>
void forEach(const std::vector<T> &values, const function<void(T &)> &func) {
for (const auto &v : values) {
func(v);
}
}
/**
* Reduces a vector to a single value of a different type using the accumulator
* function.
*
* @param startingValue
* @param accumulator function takes accumulating value as first argument and
* current list value as second.
* @return
*/
template <typename T, typename R>
R reduce(const std::vector<T> &values, const R &startingValue,
const function<R(R &, const T &)> accumulator) {
R currentValue = startingValue;
for (auto iter = values.cbegin(); iter != values.cend(); ++iter) {
currentValue = accumulator(currentValue, *iter);
}
return currentValue;
}
/**
* Writes an object to a string using the stream << operator.
*
* @param obj
* @return
*/
template <typename T>
string printToString(T obj) {
stringstream ss;
ss << obj;
return ss.str();
}
/**
* Retrieve an environment variable value, or none if it is not set.
*
* @param name
* @return
*/
GA_EXPORT boost::optional<string> getEnv(const string &name);
} // namespace GarethUtil
#endif /* UTIL_H_ */
|