mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-02-08 21:48:26 +00:00
Add polyfills for MSYS2 environment
This commit is contained in:
parent
46014397d8
commit
6aaf9433a5
@ -53,7 +53,9 @@ s3fs_SOURCES = \
|
|||||||
addhead.cpp \
|
addhead.cpp \
|
||||||
sighandlers.cpp \
|
sighandlers.cpp \
|
||||||
autolock.cpp \
|
autolock.cpp \
|
||||||
common_auth.cpp
|
common_auth.cpp \
|
||||||
|
strptime.cpp \
|
||||||
|
strcasestr.cpp
|
||||||
if USE_SSL_OPENSSL
|
if USE_SSL_OPENSSL
|
||||||
s3fs_SOURCES += openssl_auth.cpp
|
s3fs_SOURCES += openssl_auth.cpp
|
||||||
endif
|
endif
|
||||||
@ -71,7 +73,7 @@ noinst_PROGRAMS = \
|
|||||||
test_page_list \
|
test_page_list \
|
||||||
test_string_util
|
test_string_util
|
||||||
|
|
||||||
test_curl_util_SOURCES = common_auth.cpp curl_util.cpp string_util.cpp test_curl_util.cpp s3fs_global.cpp s3fs_logger.cpp
|
test_curl_util_SOURCES = common_auth.cpp curl_util.cpp string_util.cpp test_curl_util.cpp s3fs_global.cpp s3fs_logger.cpp strptime.cpp strcasestr.cpp
|
||||||
if USE_SSL_OPENSSL
|
if USE_SSL_OPENSSL
|
||||||
test_curl_util_SOURCES += openssl_auth.cpp
|
test_curl_util_SOURCES += openssl_auth.cpp
|
||||||
endif
|
endif
|
||||||
@ -89,9 +91,10 @@ test_page_list_SOURCES = \
|
|||||||
s3fs_global.cpp \
|
s3fs_global.cpp \
|
||||||
s3fs_logger.cpp \
|
s3fs_logger.cpp \
|
||||||
string_util.cpp \
|
string_util.cpp \
|
||||||
test_page_list.cpp
|
test_page_list.cpp \
|
||||||
|
strptime.cpp
|
||||||
|
|
||||||
test_string_util_SOURCES = string_util.cpp test_string_util.cpp s3fs_logger.cpp
|
test_string_util_SOURCES = string_util.cpp test_string_util.cpp s3fs_logger.cpp strptime.cpp
|
||||||
|
|
||||||
TESTS = \
|
TESTS = \
|
||||||
test_curl_util \
|
test_curl_util \
|
||||||
|
61
src/strcasestr.cpp
Normal file
61
src/strcasestr.cpp
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
* Polyfill for strcasestr function
|
||||||
|
*
|
||||||
|
* This source code is from OpenBSD, located at https://github.com/openbsd/src/blob/master/lib/libc/string/strcasestr.c .
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 1990, 1993
|
||||||
|
* The Regents of the University of California. All rights reserved.
|
||||||
|
*
|
||||||
|
* This code is derived from software contributed to Berkeley by
|
||||||
|
* Chris Torek.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. 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.
|
||||||
|
* 3. Neither the name of the University 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <cctype>
|
||||||
|
|
||||||
|
#include "strcasestr.h"
|
||||||
|
|
||||||
|
char* strcasestr(const char *s, const char* find)
|
||||||
|
{
|
||||||
|
char c, sc;
|
||||||
|
size_t len;
|
||||||
|
if ((c = *find++) != 0) {
|
||||||
|
c = (char)tolower((unsigned char)c);
|
||||||
|
len = strlen(find);
|
||||||
|
do {
|
||||||
|
do {
|
||||||
|
if ((sc = *s++) == 0)
|
||||||
|
return (NULL);
|
||||||
|
} while ((char)tolower((unsigned char)sc) != c);
|
||||||
|
} while (strncasecmp(s, find, len) != 0);
|
||||||
|
s--;
|
||||||
|
}
|
||||||
|
return ((char *)s);
|
||||||
|
}
|
45
src/strcasestr.h
Normal file
45
src/strcasestr.h
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
* Polyfill for strcasestr function
|
||||||
|
*
|
||||||
|
* This source code is from OpenBSD, located at https://github.com/openbsd/src/blob/master/lib/libc/string/strcasestr.c .
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 1990, 1993
|
||||||
|
* The Regents of the University of California. All rights reserved.
|
||||||
|
*
|
||||||
|
* This code is derived from software contributed to Berkeley by
|
||||||
|
* Chris Torek.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. 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.
|
||||||
|
* 3. Neither the name of the University 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef S3FS_STRCASESTR_H_
|
||||||
|
#define S3FS_STRCASESTR_H_
|
||||||
|
|
||||||
|
char* strcasestr(const char *s, const char* find);
|
||||||
|
|
||||||
|
#endif
|
233
src/strptime.cpp
Normal file
233
src/strptime.cpp
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
/*
|
||||||
|
* Polyfill for strptime function
|
||||||
|
*
|
||||||
|
* This source code is from musl library, located at https://git.musl-libc.org/cgit/musl/tree/src/time/strptime.c .
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* musl as a whole is licensed under the following standard MIT license:
|
||||||
|
*
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
* Copyright © 2005-2020 Rich Felker, et al.
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "strptime.h"
|
||||||
|
|
||||||
|
char* strptime(const char* s, const char* f, struct tm* tm)
|
||||||
|
{
|
||||||
|
int i, w, neg, adj, min, range, *dest, dummy;
|
||||||
|
const char *ex;
|
||||||
|
size_t len;
|
||||||
|
int want_century = 0, century = 0, relyear = 0;
|
||||||
|
while (*f) {
|
||||||
|
if (*f != '%') {
|
||||||
|
if (isspace(*f)) for (; *s && isspace(*s); s++);
|
||||||
|
else if (*s != *f) return 0;
|
||||||
|
else s++;
|
||||||
|
f++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
f++;
|
||||||
|
if (*f == '+') f++;
|
||||||
|
if (isdigit(*f)) {
|
||||||
|
char *new_f;
|
||||||
|
w=strtoul(f, &new_f, 10);
|
||||||
|
f = new_f;
|
||||||
|
} else {
|
||||||
|
w=-1;
|
||||||
|
}
|
||||||
|
adj=0;
|
||||||
|
switch (*f++) {
|
||||||
|
case 'a': case 'A':
|
||||||
|
dest = &tm->tm_wday;
|
||||||
|
min = ABDAY_1;
|
||||||
|
range = 7;
|
||||||
|
goto symbolic_range;
|
||||||
|
case 'b': case 'B': case 'h':
|
||||||
|
dest = &tm->tm_mon;
|
||||||
|
min = ABMON_1;
|
||||||
|
range = 12;
|
||||||
|
goto symbolic_range;
|
||||||
|
case 'c':
|
||||||
|
s = strptime(s, nl_langinfo(D_T_FMT), tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'C':
|
||||||
|
dest = ¢ury;
|
||||||
|
if (w<0) w=2;
|
||||||
|
want_century |= 2;
|
||||||
|
goto numeric_digits;
|
||||||
|
case 'd': case 'e':
|
||||||
|
dest = &tm->tm_mday;
|
||||||
|
min = 1;
|
||||||
|
range = 31;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'D':
|
||||||
|
s = strptime(s, "%m/%d/%y", tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'H':
|
||||||
|
dest = &tm->tm_hour;
|
||||||
|
min = 0;
|
||||||
|
range = 24;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'I':
|
||||||
|
dest = &tm->tm_hour;
|
||||||
|
min = 1;
|
||||||
|
range = 12;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'j':
|
||||||
|
dest = &tm->tm_yday;
|
||||||
|
min = 1;
|
||||||
|
range = 366;
|
||||||
|
adj = 1;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'm':
|
||||||
|
dest = &tm->tm_mon;
|
||||||
|
min = 1;
|
||||||
|
range = 12;
|
||||||
|
adj = 1;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'M':
|
||||||
|
dest = &tm->tm_min;
|
||||||
|
min = 0;
|
||||||
|
range = 60;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'n': case 't':
|
||||||
|
for (; *s && isspace(*s); s++);
|
||||||
|
break;
|
||||||
|
case 'p':
|
||||||
|
ex = nl_langinfo(AM_STR);
|
||||||
|
len = strlen(ex);
|
||||||
|
if (!strncasecmp(s, ex, len)) {
|
||||||
|
tm->tm_hour %= 12;
|
||||||
|
s += len;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
ex = nl_langinfo(PM_STR);
|
||||||
|
len = strlen(ex);
|
||||||
|
if (!strncasecmp(s, ex, len)) {
|
||||||
|
tm->tm_hour %= 12;
|
||||||
|
tm->tm_hour += 12;
|
||||||
|
s += len;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
case 'r':
|
||||||
|
s = strptime(s, nl_langinfo(T_FMT_AMPM), tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'R':
|
||||||
|
s = strptime(s, "%H:%M", tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'S':
|
||||||
|
dest = &tm->tm_sec;
|
||||||
|
min = 0;
|
||||||
|
range = 61;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'T':
|
||||||
|
s = strptime(s, "%H:%M:%S", tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'U':
|
||||||
|
case 'W':
|
||||||
|
/* Throw away result, for now. (FIXME?) */
|
||||||
|
dest = &dummy;
|
||||||
|
min = 0;
|
||||||
|
range = 54;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'w':
|
||||||
|
dest = &tm->tm_wday;
|
||||||
|
min = 0;
|
||||||
|
range = 7;
|
||||||
|
goto numeric_range;
|
||||||
|
case 'x':
|
||||||
|
s = strptime(s, nl_langinfo(D_FMT), tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'X':
|
||||||
|
s = strptime(s, nl_langinfo(T_FMT), tm);
|
||||||
|
if (!s) return 0;
|
||||||
|
break;
|
||||||
|
case 'y':
|
||||||
|
dest = &relyear;
|
||||||
|
w = 2;
|
||||||
|
want_century |= 1;
|
||||||
|
goto numeric_digits;
|
||||||
|
case 'Y':
|
||||||
|
dest = &tm->tm_year;
|
||||||
|
if (w<0) w=4;
|
||||||
|
adj = 1900;
|
||||||
|
want_century = 0;
|
||||||
|
goto numeric_digits;
|
||||||
|
case '%':
|
||||||
|
if (*s++ != '%') return 0;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return 0;
|
||||||
|
numeric_range:
|
||||||
|
if (!isdigit(*s)) return 0;
|
||||||
|
*dest = 0;
|
||||||
|
for (i=1; i<=min+range && isdigit(*s); i*=10)
|
||||||
|
*dest = *dest * 10 + *s++ - '0';
|
||||||
|
if ((unsigned)(*dest - min) >= (unsigned)range) return 0;
|
||||||
|
*dest -= adj;
|
||||||
|
switch((char *)dest - (char *)tm) {
|
||||||
|
case offsetof(struct tm, tm_yday):
|
||||||
|
;
|
||||||
|
}
|
||||||
|
goto update;
|
||||||
|
numeric_digits:
|
||||||
|
neg = 0;
|
||||||
|
if (*s == '+') s++;
|
||||||
|
else if (*s == '-') neg=1, s++;
|
||||||
|
if (!isdigit(*s)) return 0;
|
||||||
|
for (*dest=i=0; i<w && isdigit(*s); i++)
|
||||||
|
*dest = *dest * 10 + *s++ - '0';
|
||||||
|
if (neg) *dest = -*dest;
|
||||||
|
*dest -= adj;
|
||||||
|
goto update;
|
||||||
|
symbolic_range:
|
||||||
|
for (i=0; i < range; i++) {
|
||||||
|
ex = nl_langinfo(min+i);
|
||||||
|
len = strlen(ex);
|
||||||
|
if (strncasecmp(s, ex, len)) continue;
|
||||||
|
s += len;
|
||||||
|
*dest = i % range;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (i<0) return 0;
|
||||||
|
goto update;
|
||||||
|
update:
|
||||||
|
//FIXME
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (want_century) {
|
||||||
|
tm->tm_year = relyear;
|
||||||
|
if (want_century & 2) tm->tm_year += century * 100 - 1900;
|
||||||
|
else if (tm->tm_year <= 68) tm->tm_year += 100;
|
||||||
|
}
|
||||||
|
return (char *)s;
|
||||||
|
}
|
50
src/strptime.h
Normal file
50
src/strptime.h
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
* Polyfill for strptime function
|
||||||
|
*
|
||||||
|
* This source code is from musl library, located at https://git.musl-libc.org/cgit/musl/tree/src/time/strptime.c .
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* musl as a whole is licensed under the following standard MIT license:
|
||||||
|
*
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
* Copyright © 2005-2020 Rich Felker, et al.
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef S3FS_STRPTIME_H_
|
||||||
|
#define S3FS_STRPTIME_H_
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <langinfo.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <strings.h>
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
char* strptime(const char* s, const char* f, struct tm* tm);
|
||||||
|
|
||||||
|
#endif
|
Loading…
x
Reference in New Issue
Block a user