2013-06-02 21:20:15 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @file lnav_util.cc
|
|
|
|
*
|
|
|
|
* Dumping ground for useful functions with no other home.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2013-06-03 04:11:17 +00:00
|
|
|
#include <stdio.h>
|
2013-06-06 14:01:32 +00:00
|
|
|
#include <fcntl.h>
|
2013-07-02 13:41:28 +00:00
|
|
|
#include <ctype.h>
|
2015-12-19 06:39:27 +00:00
|
|
|
#include <wordexp.h>
|
2013-07-02 13:44:07 +00:00
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
#include <sqlite3.h>
|
2013-06-03 04:11:17 +00:00
|
|
|
|
2015-11-27 06:19:53 +00:00
|
|
|
#include <fstream>
|
|
|
|
|
2013-06-20 13:08:53 +00:00
|
|
|
#include "auto_fd.hh"
|
2013-06-02 21:20:15 +00:00
|
|
|
#include "lnav_util.hh"
|
2015-08-02 13:43:57 +00:00
|
|
|
#include "pcrepp.hh"
|
2015-08-10 04:03:23 +00:00
|
|
|
#include "lnav_config.hh"
|
2013-06-02 21:20:15 +00:00
|
|
|
|
2015-03-16 16:16:49 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2015-08-02 13:43:57 +00:00
|
|
|
bool is_url(const char *fn)
|
|
|
|
{
|
|
|
|
static pcrepp url_re("^(file|https?|ftps?||scp|sftp):");
|
|
|
|
|
|
|
|
pcre_context_static<30> pc;
|
|
|
|
pcre_input pi(fn);
|
|
|
|
|
|
|
|
return url_re.match(pc, pi);
|
|
|
|
}
|
|
|
|
|
2013-06-03 14:45:19 +00:00
|
|
|
std::string hash_string(const std::string &str)
|
|
|
|
{
|
2014-02-04 17:26:25 +00:00
|
|
|
byte_array<2, uint64> hash;
|
2014-02-04 06:29:59 +00:00
|
|
|
SpookyHash context;
|
2013-06-03 14:45:19 +00:00
|
|
|
|
2014-02-04 06:29:59 +00:00
|
|
|
context.Init(0, 0);
|
|
|
|
context.Update(str.c_str(), str.length());
|
2014-02-04 17:26:25 +00:00
|
|
|
context.Final(hash.out(0), hash.out(1));
|
2013-06-03 14:45:19 +00:00
|
|
|
|
|
|
|
return hash.to_string();
|
|
|
|
}
|
|
|
|
|
2014-06-18 04:29:42 +00:00
|
|
|
size_t unquote(char *dst, const char *str, size_t len)
|
|
|
|
{
|
2015-08-27 04:28:30 +00:00
|
|
|
if (str[0] == 'r' || str[0] == 'u') {
|
|
|
|
str += 1;
|
|
|
|
len -= 1;
|
|
|
|
}
|
2014-06-18 04:29:42 +00:00
|
|
|
char quote_char = str[0];
|
|
|
|
size_t index = 0;
|
|
|
|
|
|
|
|
require(str[0] == '\'' || str[0] == '"');
|
|
|
|
|
2015-04-04 23:13:03 +00:00
|
|
|
for (size_t lpc = 1; lpc < (len - 1); lpc++, index++) {
|
2014-06-18 04:29:42 +00:00
|
|
|
dst[index] = str[lpc];
|
|
|
|
if (str[lpc] == quote_char) {
|
|
|
|
lpc += 1;
|
|
|
|
}
|
2015-08-27 04:28:30 +00:00
|
|
|
else if (str[lpc] == '\\' && (lpc + 1) < len) {
|
|
|
|
switch (str[lpc] + 1) {
|
|
|
|
case 'n':
|
|
|
|
dst[index] = '\n';
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
dst[index] = '\r';
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
dst[index] = '\t';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dst[index] = str[lpc + 1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
lpc += 1;
|
|
|
|
}
|
2014-06-18 04:29:42 +00:00
|
|
|
}
|
|
|
|
dst[index] = '\0';
|
|
|
|
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
2013-06-02 21:20:15 +00:00
|
|
|
std::string time_ago(time_t last_time)
|
|
|
|
{
|
2013-06-16 01:07:50 +00:00
|
|
|
time_t delta, current_time = time(NULL);
|
2013-06-02 21:20:15 +00:00
|
|
|
const char *fmt;
|
2013-06-16 01:07:50 +00:00
|
|
|
char buffer[64];
|
|
|
|
int amount;
|
2013-06-02 21:20:15 +00:00
|
|
|
|
|
|
|
delta = current_time - last_time;
|
|
|
|
if (delta < 0) {
|
|
|
|
return "in the future";
|
|
|
|
}
|
|
|
|
else if (delta < 60) {
|
|
|
|
return "just now";
|
|
|
|
}
|
|
|
|
else if (delta < (60 * 2)) {
|
|
|
|
return "one minute ago";
|
|
|
|
}
|
|
|
|
else if (delta < (60 * 60)) {
|
2013-06-16 01:07:50 +00:00
|
|
|
fmt = "%d minutes ago";
|
2013-06-02 21:20:15 +00:00
|
|
|
amount = delta / 60;
|
|
|
|
}
|
|
|
|
else if (delta < (2 * 60 * 60)) {
|
|
|
|
return "one hour ago";
|
|
|
|
}
|
|
|
|
else if (delta < (24 * 60 * 60)) {
|
2013-06-16 01:07:50 +00:00
|
|
|
fmt = "%d hours ago";
|
2013-06-02 21:20:15 +00:00
|
|
|
amount = delta / (60 * 60);
|
|
|
|
}
|
|
|
|
else if (delta < (2 * 24 * 60 * 60)) {
|
|
|
|
return "one day ago";
|
|
|
|
}
|
|
|
|
else if (delta < (365 * 24 * 60 * 60)) {
|
2013-06-16 01:07:50 +00:00
|
|
|
fmt = "%d days ago";
|
2013-06-02 21:20:15 +00:00
|
|
|
amount = delta / (24 * 60 * 60);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return "over a year ago";
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), fmt, amount);
|
|
|
|
|
|
|
|
return std::string(buffer);
|
|
|
|
}
|
2013-06-06 14:01:32 +00:00
|
|
|
|
|
|
|
/* XXX figure out how to do this with the template */
|
|
|
|
void sqlite_close_wrapper(void *mem)
|
|
|
|
{
|
|
|
|
sqlite3_close((sqlite3 *)mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string get_current_dir(void)
|
|
|
|
{
|
2013-06-16 01:07:50 +00:00
|
|
|
char cwd[FILENAME_MAX];
|
2013-06-06 14:01:32 +00:00
|
|
|
std::string retval = ".";
|
|
|
|
|
|
|
|
if (getcwd(cwd, sizeof(cwd)) == NULL) {
|
|
|
|
perror("getcwd");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval = std::string(cwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retval != "/") {
|
|
|
|
retval += "/";
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool change_to_parent_dir(void)
|
|
|
|
{
|
|
|
|
bool retval = false;
|
|
|
|
char cwd[3] = "";
|
|
|
|
|
|
|
|
if (getcwd(cwd, sizeof(cwd)) == NULL) {
|
|
|
|
/* perror("getcwd"); */
|
|
|
|
}
|
|
|
|
if (strcmp(cwd, "/") != 0) {
|
|
|
|
if (chdir("..") == -1) {
|
|
|
|
perror("chdir('..')");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-12-19 06:39:27 +00:00
|
|
|
std::pair<std::string, std::string> split_path(const char *path, ssize_t len)
|
|
|
|
{
|
|
|
|
ssize_t dir_len = len;
|
|
|
|
|
|
|
|
while (dir_len >= 0 && (path[dir_len] == '/' || path[dir_len] == '\\')) {
|
|
|
|
dir_len -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (dir_len >= 0) {
|
|
|
|
if (path[dir_len] == '/' || path[dir_len] == '\\') {
|
|
|
|
return make_pair(string(path, dir_len),
|
|
|
|
string(&path[dir_len + 1], len - dir_len));
|
|
|
|
}
|
|
|
|
|
|
|
|
dir_len -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return make_pair(path[0] == '/' ? "/" : ".",
|
|
|
|
path[0] == '/' ? string(&path[1], len - 1) : string(path, len));
|
|
|
|
}
|
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
file_format_t detect_file_format(const std::string &filename)
|
|
|
|
{
|
|
|
|
file_format_t retval = FF_UNKNOWN;
|
2013-06-20 13:08:53 +00:00
|
|
|
auto_fd fd;
|
2013-06-06 14:01:32 +00:00
|
|
|
|
|
|
|
if ((fd = open(filename.c_str(), O_RDONLY)) != -1) {
|
|
|
|
char buffer[32];
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ((rc = read(fd, buffer, sizeof(buffer))) > 0) {
|
|
|
|
if (rc > 16 &&
|
|
|
|
strncmp(buffer, "SQLite format 3", 16) == 0) {
|
|
|
|
retval = FF_SQLITE_DB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2013-06-30 23:43:08 +00:00
|
|
|
|
|
|
|
static time_t BAD_DATE = -1;
|
|
|
|
|
|
|
|
time_t tm2sec(const struct tm *t)
|
|
|
|
{
|
|
|
|
int year;
|
|
|
|
time_t days;
|
|
|
|
const int dayoffset[12] =
|
|
|
|
{ 306, 337, 0, 31, 61, 92, 122, 153, 184, 214, 245, 275 };
|
|
|
|
|
|
|
|
year = t->tm_year;
|
|
|
|
|
|
|
|
if (year < 70 || ((sizeof(time_t) <= 4) && (year >= 138))) {
|
|
|
|
return BAD_DATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* shift new year to 1st March in order to make leap year calc easy */
|
|
|
|
|
|
|
|
if (t->tm_mon < 2) {
|
|
|
|
year--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find number of days since 1st March 1900 (in the Gregorian calendar). */
|
|
|
|
|
|
|
|
days = year * 365 + year / 4 - year / 100 + (year / 100 + 3) / 4;
|
|
|
|
days += dayoffset[t->tm_mon] + t->tm_mday - 1;
|
|
|
|
days -= 25508; /* 1 jan 1970 is 25508 days since 1 mar 1900 */
|
|
|
|
|
|
|
|
days = ((days * 24 + t->tm_hour) * 60 + t->tm_min) * 60 + t->tm_sec;
|
|
|
|
|
|
|
|
if (days < 0) {
|
|
|
|
return BAD_DATE;
|
|
|
|
} /* must have overflowed */
|
|
|
|
else {
|
2014-01-07 15:35:52 +00:00
|
|
|
#ifdef HAVE_STRUCT_TM_TM_ZONE
|
2013-06-30 23:43:08 +00:00
|
|
|
if (t->tm_zone) {
|
|
|
|
days -= t->tm_gmtoff;
|
|
|
|
}
|
2014-01-07 15:35:52 +00:00
|
|
|
#endif
|
2013-06-30 23:43:08 +00:00
|
|
|
return days;
|
|
|
|
} /* must be a valid time */
|
|
|
|
}
|
|
|
|
|
2014-11-03 03:35:15 +00:00
|
|
|
static const int MONSPERYEAR = 12;
|
|
|
|
static const int SECSPERMIN = 60;
|
|
|
|
static const int SECSPERHOUR = 60 * SECSPERMIN;
|
|
|
|
static const int SECSPERDAY = 24 * SECSPERHOUR;
|
|
|
|
static const int YEAR_BASE = 1900;
|
|
|
|
static const int EPOCH_WDAY = 4;
|
|
|
|
static const int DAYSPERWEEK = 7;
|
|
|
|
static const int EPOCH_YEAR = 1970;
|
|
|
|
|
|
|
|
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
|
|
|
|
|
|
|
|
static const int mon_lengths[2][MONSPERYEAR] = {
|
|
|
|
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
|
|
|
|
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
static const int year_lengths[2] = {
|
|
|
|
365,
|
|
|
|
366
|
|
|
|
} ;
|
|
|
|
|
|
|
|
struct tm *secs2tm(time_t *tim_p, struct tm *res)
|
|
|
|
{
|
|
|
|
long days, rem;
|
|
|
|
time_t lcltime;
|
|
|
|
int y;
|
|
|
|
int yleap;
|
|
|
|
const int *ip;
|
|
|
|
|
|
|
|
/* base decision about std/dst time on current time */
|
|
|
|
lcltime = *tim_p;
|
|
|
|
|
|
|
|
days = ((long)lcltime) / SECSPERDAY;
|
|
|
|
rem = ((long)lcltime) % SECSPERDAY;
|
|
|
|
while (rem < 0)
|
|
|
|
{
|
|
|
|
rem += SECSPERDAY;
|
|
|
|
--days;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compute hour, min, and sec */
|
|
|
|
res->tm_hour = (int) (rem / SECSPERHOUR);
|
|
|
|
rem %= SECSPERHOUR;
|
|
|
|
res->tm_min = (int) (rem / SECSPERMIN);
|
|
|
|
res->tm_sec = (int) (rem % SECSPERMIN);
|
|
|
|
|
|
|
|
/* compute day of week */
|
|
|
|
if ((res->tm_wday = ((EPOCH_WDAY + days) % DAYSPERWEEK)) < 0)
|
|
|
|
res->tm_wday += DAYSPERWEEK;
|
|
|
|
|
|
|
|
/* compute year & day of year */
|
|
|
|
y = EPOCH_YEAR;
|
|
|
|
if (days >= 0)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
yleap = isleap(y);
|
|
|
|
if (days < year_lengths[yleap])
|
|
|
|
break;
|
|
|
|
y++;
|
|
|
|
days -= year_lengths[yleap];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
--y;
|
|
|
|
yleap = isleap(y);
|
|
|
|
days += year_lengths[yleap];
|
|
|
|
} while (days < 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
res->tm_year = y - YEAR_BASE;
|
|
|
|
res->tm_yday = days;
|
|
|
|
ip = mon_lengths[yleap];
|
|
|
|
for (res->tm_mon = 0; days >= ip[res->tm_mon]; ++res->tm_mon)
|
|
|
|
days -= ip[res->tm_mon];
|
|
|
|
res->tm_mday = days + 1;
|
|
|
|
|
|
|
|
res->tm_isdst = 0;
|
|
|
|
|
|
|
|
return (res);
|
|
|
|
}
|
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
bool next_format(const char * const fmt[], int &index, int &locked_index)
|
2013-06-30 23:43:08 +00:00
|
|
|
{
|
|
|
|
bool retval = true;
|
|
|
|
|
|
|
|
if (locked_index == -1) {
|
|
|
|
index += 1;
|
|
|
|
if (fmt[index] == NULL) {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (index == locked_index) {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
index = locked_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2013-07-02 13:34:48 +00:00
|
|
|
static const char *time_fmt_with_zone = "%a %b %d %H:%M:%S ";
|
|
|
|
|
2013-06-30 23:43:08 +00:00
|
|
|
const char *std_time_fmt[] = {
|
|
|
|
"%Y-%m-%d %H:%M:%S",
|
|
|
|
"%Y-%m-%d %H:%M",
|
|
|
|
"%Y-%m-%dT%H:%M:%S",
|
|
|
|
"%Y-%m-%dT%H:%M:%SZ",
|
|
|
|
"%Y/%m/%d %H:%M:%S",
|
|
|
|
"%Y/%m/%d %H:%M",
|
|
|
|
|
|
|
|
"%a %b %d %H:%M:%S %Y",
|
|
|
|
"%a %b %d %H:%M:%S %Z %Y",
|
2013-07-02 13:34:48 +00:00
|
|
|
time_fmt_with_zone,
|
2013-06-30 23:43:08 +00:00
|
|
|
|
2014-01-21 14:45:27 +00:00
|
|
|
"%d/%b/%Y:%H:%M:%S +0000",
|
2013-06-30 23:43:08 +00:00
|
|
|
"%d/%b/%Y:%H:%M:%S %z",
|
|
|
|
|
|
|
|
"%b %d %H:%M:%S",
|
|
|
|
|
2013-07-09 13:51:18 +00:00
|
|
|
"%m/%d/%y %H:%M:%S",
|
|
|
|
|
2013-10-11 13:22:29 +00:00
|
|
|
"%m%d %H:%M:%S",
|
|
|
|
|
2013-07-28 18:03:31 +00:00
|
|
|
"+%s",
|
|
|
|
|
2013-06-30 23:43:08 +00:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *date_time_scanner::scan(const char *time_dest,
|
2014-10-20 05:16:40 +00:00
|
|
|
size_t time_len,
|
2015-04-11 05:55:57 +00:00
|
|
|
const char * const time_fmt[],
|
2014-06-18 04:29:42 +00:00
|
|
|
struct exttm *tm_out,
|
2013-06-30 23:43:08 +00:00
|
|
|
struct timeval &tv_out)
|
|
|
|
{
|
|
|
|
int curr_time_fmt = -1;
|
|
|
|
bool found = false;
|
|
|
|
const char *retval = NULL;
|
|
|
|
|
|
|
|
if (!time_fmt) {
|
2014-03-22 15:02:48 +00:00
|
|
|
time_fmt = PTIMEC_FORMAT_STR;
|
2013-06-30 23:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (next_format(time_fmt,
|
|
|
|
curr_time_fmt,
|
|
|
|
this->dts_fmt_lock)) {
|
|
|
|
*tm_out = this->dts_base_tm;
|
2014-11-03 14:07:36 +00:00
|
|
|
tm_out->et_flags = 0;
|
2014-03-22 15:02:48 +00:00
|
|
|
if (time_dest[0] == '+') {
|
2014-10-31 11:49:16 +00:00
|
|
|
char time_cp[time_len + 1];
|
2013-07-28 18:03:31 +00:00
|
|
|
int gmt_int, off;
|
|
|
|
|
|
|
|
retval = NULL;
|
2014-10-31 11:49:16 +00:00
|
|
|
memcpy(time_cp, time_dest, time_len);
|
|
|
|
time_cp[time_len] = '\0';
|
|
|
|
if (sscanf(time_cp, "+%d%n", &gmt_int, &off) == 1) {
|
2013-07-28 18:03:31 +00:00
|
|
|
time_t gmt = gmt_int;
|
|
|
|
|
|
|
|
if (this->dts_local_time) {
|
2014-06-18 04:29:42 +00:00
|
|
|
localtime_r(&gmt, &tm_out->et_tm);
|
2014-01-07 15:35:52 +00:00
|
|
|
#ifdef HAVE_STRUCT_TM_TM_ZONE
|
2014-06-18 04:29:42 +00:00
|
|
|
tm_out->et_tm.tm_zone = NULL;
|
2014-01-07 15:35:52 +00:00
|
|
|
#endif
|
2014-06-18 04:29:42 +00:00
|
|
|
tm_out->et_tm.tm_isdst = 0;
|
|
|
|
gmt = tm2sec(&tm_out->et_tm);
|
2013-07-28 18:03:31 +00:00
|
|
|
}
|
|
|
|
tv_out.tv_sec = gmt;
|
2014-03-15 11:40:58 +00:00
|
|
|
tv_out.tv_usec = 0;
|
2015-09-14 15:56:42 +00:00
|
|
|
tm_out->et_flags = ETF_DAY_SET|ETF_MONTH_SET|ETF_YEAR_SET;
|
2013-07-28 18:03:31 +00:00
|
|
|
|
|
|
|
this->dts_fmt_lock = curr_time_fmt;
|
|
|
|
this->dts_fmt_len = off;
|
|
|
|
retval = time_dest + off;
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 15:02:48 +00:00
|
|
|
else if (time_fmt == PTIMEC_FORMAT_STR) {
|
|
|
|
ptime_func func = PTIMEC_FORMATS[curr_time_fmt].pf_func;
|
|
|
|
off_t off = 0;
|
|
|
|
|
|
|
|
#ifdef HAVE_STRUCT_TM_TM_ZONE
|
2015-08-04 15:39:32 +00:00
|
|
|
if (!this->dts_keep_base_tz) {
|
|
|
|
tm_out->et_tm.tm_zone = NULL;
|
|
|
|
}
|
2014-03-22 15:02:48 +00:00
|
|
|
#endif
|
2014-10-20 05:16:40 +00:00
|
|
|
if (func(tm_out, time_dest, off, time_len)) {
|
2014-03-22 15:02:48 +00:00
|
|
|
retval = &time_dest[off];
|
|
|
|
|
2014-06-18 04:29:42 +00:00
|
|
|
if (tm_out->et_tm.tm_year < 70) {
|
|
|
|
tm_out->et_tm.tm_year = 80;
|
2014-03-22 15:02:48 +00:00
|
|
|
}
|
|
|
|
if (this->dts_local_time) {
|
2014-06-18 04:29:42 +00:00
|
|
|
time_t gmt = tm2sec(&tm_out->et_tm);
|
2014-03-22 15:02:48 +00:00
|
|
|
|
2014-10-28 14:02:27 +00:00
|
|
|
this->to_localtime(gmt, *tm_out);
|
2014-03-22 15:02:48 +00:00
|
|
|
}
|
2014-06-18 04:29:42 +00:00
|
|
|
tv_out.tv_sec = tm2sec(&tm_out->et_tm);
|
|
|
|
tv_out.tv_usec = tm_out->et_nsec / 1000;
|
2014-03-22 15:02:48 +00:00
|
|
|
|
|
|
|
this->dts_fmt_lock = curr_time_fmt;
|
|
|
|
this->dts_fmt_len = retval - time_dest;
|
|
|
|
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-04-11 05:55:57 +00:00
|
|
|
else {
|
|
|
|
off_t off = 0;
|
2013-07-02 13:34:48 +00:00
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
if (ptime_fmt(time_fmt[curr_time_fmt], tm_out, time_dest, off, time_len)) {
|
|
|
|
retval = &time_dest[off];
|
|
|
|
if (tm_out->et_tm.tm_year < 70) {
|
|
|
|
tm_out->et_tm.tm_year = 80;
|
2013-07-02 13:34:48 +00:00
|
|
|
}
|
2015-04-11 05:55:57 +00:00
|
|
|
if (this->dts_local_time) {
|
|
|
|
time_t gmt = tm2sec(&tm_out->et_tm);
|
2013-07-28 18:03:31 +00:00
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
this->to_localtime(gmt, *tm_out);
|
2014-01-07 15:35:52 +00:00
|
|
|
#ifdef HAVE_STRUCT_TM_TM_ZONE
|
2015-04-11 05:55:57 +00:00
|
|
|
tm_out->et_tm.tm_zone = NULL;
|
2014-01-07 15:35:52 +00:00
|
|
|
#endif
|
2015-04-11 05:55:57 +00:00
|
|
|
tm_out->et_tm.tm_isdst = 0;
|
|
|
|
}
|
2014-03-22 15:02:48 +00:00
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
tv_out.tv_sec = tm2sec(&tm_out->et_tm);
|
|
|
|
tv_out.tv_usec = tm_out->et_nsec / 1000;
|
2013-06-30 23:43:08 +00:00
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
this->dts_fmt_lock = curr_time_fmt;
|
|
|
|
this->dts_fmt_len = retval - time_dest;
|
2013-06-30 23:43:08 +00:00
|
|
|
|
2015-04-11 05:55:57 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-06-30 23:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
retval = NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-28 18:03:31 +00:00
|
|
|
if (retval != NULL) {
|
|
|
|
/* Try to pull out the milli/micro-second value. */
|
|
|
|
if (retval[0] == '.' || retval[0] == ',') {
|
2014-10-20 05:16:40 +00:00
|
|
|
off_t off = (retval - time_dest) + 1;
|
|
|
|
|
2015-05-17 12:15:41 +00:00
|
|
|
if (ptime_f(tm_out, time_dest, off, time_len)) {
|
|
|
|
tv_out.tv_usec = tm_out->et_nsec / 1000;
|
2014-10-20 05:16:40 +00:00
|
|
|
this->dts_fmt_len += 7;
|
2015-12-11 04:36:25 +00:00
|
|
|
retval += 7;
|
2014-10-20 05:16:40 +00:00
|
|
|
}
|
2015-05-17 12:15:41 +00:00
|
|
|
else if (ptime_F(tm_out, time_dest, off, time_len)) {
|
|
|
|
tv_out.tv_usec = tm_out->et_nsec / 1000;
|
2014-10-20 05:16:40 +00:00
|
|
|
this->dts_fmt_len += 4;
|
2015-12-11 04:36:25 +00:00
|
|
|
retval += 4;
|
2013-07-28 18:03:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-30 23:43:08 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2014-02-01 14:41:11 +00:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
size_t strtonum(T &num_out, const char *string, size_t len)
|
|
|
|
{
|
|
|
|
size_t retval = 0;
|
|
|
|
T sign = 1;
|
|
|
|
|
|
|
|
num_out = 0;
|
|
|
|
|
|
|
|
for (; retval < len && isspace(string[retval]); retval++);
|
|
|
|
for (; retval < len && string[retval] == '-'; retval++) {
|
|
|
|
sign *= -1;
|
|
|
|
}
|
|
|
|
for (; retval < len && string[retval] == '+'; retval++);
|
|
|
|
for (; retval < len && isdigit(string[retval]); retval++) {
|
|
|
|
num_out *= 10;
|
|
|
|
num_out += string[retval] - '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2014-02-01 17:53:29 +00:00
|
|
|
template
|
2014-02-01 14:41:11 +00:00
|
|
|
size_t strtonum<long long>(long long &num_out, const char *string, size_t len);
|
2014-02-01 17:53:29 +00:00
|
|
|
|
|
|
|
template
|
|
|
|
size_t strtonum<long>(long &num_out, const char *string, size_t len);
|
|
|
|
|
|
|
|
template
|
|
|
|
size_t strtonum<int>(int &num_out, const char *string, size_t len);
|
2015-03-16 16:16:49 +00:00
|
|
|
|
|
|
|
string build_path(const vector<string> &paths)
|
|
|
|
{
|
|
|
|
string retval;
|
|
|
|
|
|
|
|
for (vector<string>::const_iterator path_iter = paths.begin();
|
|
|
|
path_iter != paths.end();
|
|
|
|
++path_iter) {
|
|
|
|
if (path_iter->empty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!retval.empty()) {
|
|
|
|
retval += ":";
|
|
|
|
}
|
|
|
|
retval += *path_iter;
|
|
|
|
}
|
|
|
|
retval += ":" + string(getenv("PATH"));
|
|
|
|
return retval;
|
2015-03-28 20:46:42 +00:00
|
|
|
}
|
2015-11-27 06:19:53 +00:00
|
|
|
|
|
|
|
bool read_file(const char *filename, string &out)
|
|
|
|
{
|
|
|
|
std::ifstream sql_file(filename);
|
|
|
|
|
|
|
|
if (sql_file) {
|
|
|
|
out.assign((std::istreambuf_iterator<char>(sql_file)),
|
|
|
|
std::istreambuf_iterator<char>());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-19 06:39:27 +00:00
|
|
|
|
|
|
|
bool wordexperr(int rc, string &msg)
|
|
|
|
{
|
|
|
|
switch (rc) {
|
|
|
|
case WRDE_BADCHAR:
|
|
|
|
msg = "error: invalid filename character";
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case WRDE_CMDSUB:
|
|
|
|
msg = "error: command substitution is not allowed";
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case WRDE_BADVAL:
|
|
|
|
msg = "error: unknown environment variable in file name";
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case WRDE_NOSPACE:
|
|
|
|
msg = "error: out of memory";
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case WRDE_SYNTAX:
|
|
|
|
msg = "error: invalid syntax";
|
|
|
|
return false;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|