gcontini
2019-12-07 74001fb4ce5041c3deb42a0ca252ae338aa571db
src/library/base/StringUtils.cpp
@@ -2,17 +2,18 @@
 * StringUtils.cpp
 *
 *  Created on: Apr 8, 2014
 *
 *
 */
#include <cctype> //toupper
#include "StringUtils.h"
#include <iostream>
#include <string>
#include <sstream>
#include <cstring>
#include <algorithm>
#include <stdexcept>
#include <regex>
#include "StringUtils.h"
#ifdef _WIN32
#include <time.h> //mktime under windows
@@ -21,25 +22,25 @@
namespace license {
using namespace std;
string trim_copy(const string& string_to_trim) {
string trim_copy(const string &string_to_trim) {
   std::string::const_iterator it = string_to_trim.begin();
   while (it != string_to_trim.end() && isspace(*it))
      it++;
   while (it != string_to_trim.end() && isspace(*it)) {
      ++it;
   }
   std::string::const_reverse_iterator rit = string_to_trim.rbegin();
   while (rit.base() != it && isspace(*rit))
      rit++;
   while (rit.base() != it && isspace(*rit)) {
      ++rit;
   }
   return std::string(it, rit.base());
}
string toupper_copy(const string& lowercase) {
string toupper_copy(const string &lowercase) {
   string cp(lowercase);
   std::transform(cp.begin(), cp.end(), cp.begin(), (int (*)(int))toupper);
   std::transform(cp.begin(), cp.end(), cp.begin(), (int (*)(int)) toupper);
   return cp;
}
time_t seconds_from_epoch(const char* timeString) {
time_t seconds_from_epoch(const char *timeString) {
   int year, month, day;
   tm tm;
   if (strlen(timeString) == 8) {
@@ -48,14 +49,16 @@
         throw invalid_argument("Date not recognized");
      }
   } else if (strlen(timeString) == 10) {
      const int nfield = sscanf(timeString, "%4d-%2d-%2d", &year, &month, &day);
      const int nfield = sscanf(timeString, "%4d-%2d-%2d", &year, &month,
            &day);
      if (nfield != 3) {
         const int nfield = sscanf(timeString, "%4d/%2d/%2d", &year, &month, &day);
         const int nfield = sscanf(timeString, "%4d/%2d/%2d", &year, &month,
               &day);
         if (nfield != 3) {
            throw invalid_argument("Date not recognized");
         }
      }
   } else{
   } else {
      throw invalid_argument("Date not recognized");
   }
   tm.tm_isdst = -1;
@@ -70,8 +73,8 @@
   return mktime(&tm);
}
const vector<string> split_string(const string& licensePositions,char splitchar) {
const vector<string> split_string(const string &licensePositions,
      char splitchar) {
   std::stringstream streamToSplit(licensePositions);
   std::string segment;
   std::vector<string> seglist;
@@ -82,4 +85,18 @@
   return seglist;
}
const static regex iniSection("\\[.*?\\]");
const static regex b64(
      "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$");
FILE_FORMAT identify_format(const string &license) {
   FILE_FORMAT result = UNKNOWN;
   if (regex_match(license, b64)) {
      result = BASE64;
   } else if (regex_search(license, iniSection)) {
      result = INI;
   }
   return result;
}
} /* namespace license */