2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-03-02 21:02:41 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-06-30 16:44:03 +04:00
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-07-06 00:19:52 +04:00
|
|
|
* Copyright 2004 John Tytgat <John.Tytgat@aaug.net>
|
2002-04-22 13:24:35 +04:00
|
|
|
*/
|
|
|
|
|
2004-07-06 00:19:52 +04:00
|
|
|
#include <assert.h>
|
2002-04-22 13:24:35 +04:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2003-11-08 02:47:55 +03:00
|
|
|
#include <sys/stat.h>
|
2003-12-27 23:15:23 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <regex.h>
|
2003-12-28 05:35:46 +03:00
|
|
|
#include <time.h>
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#define NDEBUG
|
2003-04-06 01:38:06 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
2003-12-19 03:59:36 +03:00
|
|
|
#include "netsurf/utils/messages.h"
|
2005-04-16 09:09:33 +04:00
|
|
|
#include "netsurf/utils/utf8.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
2002-04-22 13:24:35 +04:00
|
|
|
|
|
|
|
|
|
|
|
char * strip(char * const s)
|
|
|
|
{
|
|
|
|
size_t i;
|
2004-03-15 18:03:34 +03:00
|
|
|
for (i = strlen(s);
|
|
|
|
i != 0 && (s[i - 1] == ' ' || s[i - 1] == '\n' ||
|
|
|
|
s[i - 1] == '\r' || s[i - 1] == '\t');
|
|
|
|
i--)
|
2002-04-22 13:24:35 +04:00
|
|
|
;
|
|
|
|
s[i] = 0;
|
|
|
|
return s + strspn(s, " \t\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int whitespace(const char * str)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < strlen(str); i++)
|
|
|
|
if (!isspace(str[i]))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-12-10 01:23:32 +03:00
|
|
|
/**
|
|
|
|
* Replace consecutive whitespace with a single space.
|
|
|
|
*
|
|
|
|
* \param s source string
|
|
|
|
* \return heap allocated result, or 0 on memory exhaustion
|
|
|
|
*/
|
|
|
|
|
|
|
|
char * squash_whitespace(const char *s)
|
2002-05-22 01:27:29 +04:00
|
|
|
{
|
2004-12-10 01:23:32 +03:00
|
|
|
char *c = malloc(strlen(s) + 1);
|
2002-05-22 01:27:29 +04:00
|
|
|
int i = 0, j = 0;
|
2004-12-10 01:23:32 +03:00
|
|
|
if (!c)
|
|
|
|
return 0;
|
2002-05-22 01:27:29 +04:00
|
|
|
do {
|
2004-03-15 18:03:34 +03:00
|
|
|
if (s[i] == ' ' || s[i] == '\n' || s[i] == '\r' ||
|
|
|
|
s[i] == '\t') {
|
2002-05-22 01:27:29 +04:00
|
|
|
c[j++] = ' ';
|
2004-03-15 18:03:34 +03:00
|
|
|
while (s[i] == ' ' || s[i] == '\n' || s[i] == '\r' ||
|
|
|
|
s[i] == '\t')
|
2002-05-22 01:27:29 +04:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
c[j++] = s[i++];
|
|
|
|
} while (s[i - 1] != 0);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2003-04-12 01:06:51 +04:00
|
|
|
|
2004-07-06 00:19:52 +04:00
|
|
|
/**
|
|
|
|
* Converts NUL terminated UTF-8 encoded string s containing zero or more
|
|
|
|
* spaces (char 32) or TABs (char 9) to non-breaking spaces
|
|
|
|
* (0xC2 + 0xA0 in UTF-8 encoding).
|
|
|
|
*
|
|
|
|
* Caller needs to free() result. Returns NULL in case of error. No
|
|
|
|
* checking is done on validness of the UTF-8 input string.
|
|
|
|
*/
|
|
|
|
char *cnv_space2nbsp(const char *s)
|
|
|
|
{
|
|
|
|
const char *srcP;
|
|
|
|
char *d, *d0;
|
|
|
|
unsigned int numNBS;
|
|
|
|
/* Convert space & TAB into non breaking space character (0xA0) */
|
|
|
|
for (numNBS = 0, srcP = (const char *)s; *srcP != '\0'; ++srcP)
|
|
|
|
if (*srcP == ' ' || *srcP == '\t')
|
|
|
|
++numNBS;
|
|
|
|
if ((d = (char *)malloc((srcP - s) + numNBS + 1)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
for (d0 = d, srcP = (const char *)s; *srcP != '\0'; ++srcP) {
|
|
|
|
if (*srcP == ' ' || *srcP == '\t') {
|
|
|
|
*d0++ = 0xC2;
|
|
|
|
*d0++ = 0xA0;
|
|
|
|
} else
|
|
|
|
*d0++ = *srcP;
|
2003-04-12 01:06:51 +04:00
|
|
|
}
|
2004-07-06 00:19:52 +04:00
|
|
|
*d0 = '\0';
|
|
|
|
return d;
|
|
|
|
}
|
2003-04-12 01:06:51 +04:00
|
|
|
|
2003-11-08 02:47:55 +03:00
|
|
|
/**
|
|
|
|
* Check if a directory exists.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool is_dir(const char *path)
|
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
|
|
|
|
if (stat(path, &s))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return S_ISDIR(s.st_mode) ? true : false;
|
|
|
|
}
|
2003-12-27 23:15:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compile a regular expression, handling errors.
|
|
|
|
*
|
|
|
|
* Parameters as for regcomp(), see man regex.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void regcomp_wrapper(regex_t *preg, const char *regex, int cflags)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
r = regcomp(preg, regex, cflags);
|
|
|
|
if (r) {
|
2004-07-20 00:29:47 +04:00
|
|
|
char errbuf[200];
|
2003-12-27 23:15:23 +03:00
|
|
|
regerror(r, preg, errbuf, sizeof errbuf);
|
|
|
|
fprintf(stderr, "Failed to compile regexp '%s'\n", regex);
|
|
|
|
die(errbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-25 15:40:05 +04:00
|
|
|
/** We can have a fairly good estimate of how long the buffer needs to
|
|
|
|
* be. The unsigned long can store a value representing a maximum size
|
|
|
|
* of around 4 GB. Therefore the greatest space required is to
|
|
|
|
* represent 1023MB. Currently that would be represented as "1023MB" so 12
|
|
|
|
* including a null terminator.
|
|
|
|
* Ideally we would be able to know this value for sure, in the mean
|
|
|
|
* time the following should suffice.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#define BYTESIZE_BUFFER_SIZE 20
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Does a simple conversion which assumes the user speaks English. The buffer
|
2004-06-28 03:24:11 +04:00
|
|
|
* returned is one of three static ones so may change each time this call is
|
2004-04-25 15:40:05 +04:00
|
|
|
* made. Don't store the buffer for later use. It's done this way for
|
2004-05-02 21:06:59 +04:00
|
|
|
* convenience and to fight possible memory leaks, it is not necessarily pretty.
|
2004-04-25 15:40:05 +04:00
|
|
|
**/
|
|
|
|
|
2004-05-02 21:06:59 +04:00
|
|
|
char *human_friendly_bytesize(unsigned long bsize) {
|
2004-04-25 15:40:05 +04:00
|
|
|
static char buffer1[BYTESIZE_BUFFER_SIZE];
|
|
|
|
static char buffer2[BYTESIZE_BUFFER_SIZE];
|
2004-06-28 03:24:11 +04:00
|
|
|
static char buffer3[BYTESIZE_BUFFER_SIZE];
|
|
|
|
static char *curbuffer = buffer3;
|
2004-04-25 15:40:05 +04:00
|
|
|
|
2004-05-02 21:06:59 +04:00
|
|
|
float bytesize = (float)bsize;
|
|
|
|
|
2004-04-25 15:40:05 +04:00
|
|
|
if (curbuffer == buffer1)
|
|
|
|
curbuffer = buffer2;
|
2004-06-28 03:24:11 +04:00
|
|
|
else if (curbuffer == buffer2)
|
|
|
|
curbuffer = buffer3;
|
2004-04-25 15:40:05 +04:00
|
|
|
else
|
|
|
|
curbuffer = buffer1;
|
|
|
|
|
|
|
|
enum {bytes, kilobytes, megabytes, gigabytes} unit = bytes;
|
|
|
|
static char units[][7] = {"Bytes", "kBytes", "MBytes", "GBytes"};
|
|
|
|
|
|
|
|
if (bytesize > 1024) {
|
|
|
|
bytesize /= 1024;
|
|
|
|
unit = kilobytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytesize > 1024) {
|
|
|
|
bytesize /= 1024;
|
|
|
|
unit = megabytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytesize > 1024) {
|
|
|
|
bytesize /= 1024;
|
|
|
|
unit = gigabytes;
|
|
|
|
}
|
|
|
|
|
2004-05-02 21:06:59 +04:00
|
|
|
sprintf(curbuffer, "%3.2f%s", bytesize, messages_get(units[unit]));
|
2004-04-25 15:40:05 +04:00
|
|
|
|
|
|
|
return curbuffer;
|
|
|
|
}
|
2006-02-06 03:10:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an RFC 1123 compliant date string from a Unix timestamp
|
|
|
|
*
|
|
|
|
* \param t The timestamp to consider
|
|
|
|
* \return Pointer to buffer containing string - invalidated by next call.
|
|
|
|
*/
|
|
|
|
const char *rfc1123_date(time_t t)
|
|
|
|
{
|
|
|
|
static char ret[30];
|
|
|
|
|
|
|
|
struct tm *tm = gmtime(&t);
|
|
|
|
const char *days[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" },
|
|
|
|
*months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
|
|
|
|
|
|
|
|
snprintf(ret, sizeof ret, "%s, %02d %s %d %02d:%02d:%02d GMT",
|
|
|
|
days[tm->tm_wday], tm->tm_mday, months[tm->tm_mon],
|
|
|
|
tm->tm_year + 1900, tm->tm_hour, tm->tm_min,
|
|
|
|
tm->tm_sec);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2006-07-02 14:26:51 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Case insensitive strstr implementation
|
|
|
|
*
|
|
|
|
* \param haystack String to search in
|
|
|
|
* \param needle String to look for
|
|
|
|
* \return Pointer to start of found substring, or NULL if not found
|
|
|
|
*/
|
|
|
|
char *strcasestr(const char *haystack, const char *needle)
|
|
|
|
{
|
|
|
|
size_t needle_len = strlen(needle);
|
|
|
|
const char * last_start = haystack + (strlen(haystack) - needle_len);
|
|
|
|
|
|
|
|
while (haystack <= last_start) {
|
|
|
|
if (strncasecmp(haystack, needle, needle_len) == 0)
|
|
|
|
return (char *)haystack;
|
|
|
|
haystack++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|