2004-11-14 08:29:32 +00:00
|
|
|
// $Id$
|
|
|
|
//
|
2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-04-30 22:22:54 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-07-01 20:37:09 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2003-07-02 20:57:59 +00:00
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2003-07-02 20:57:59 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-01 20:37:09 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-07-02 20:57:59 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-07-02 02:02:18 +00:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
2003-06-09 23:50:49 +00:00
|
|
|
#include <cstdlib>
|
2003-08-21 23:27:57 +00:00
|
|
|
#include <ctime>
|
|
|
|
#include <cmath>
|
2003-08-22 18:51:53 +00:00
|
|
|
#include <cctype>
|
2003-08-21 23:27:57 +00:00
|
|
|
#include <cstring>
|
2003-08-27 23:35:44 +00:00
|
|
|
#include <algorithm>
|
2003-09-02 23:26:38 +00:00
|
|
|
#include <string>
|
2003-06-10 18:50:43 +00:00
|
|
|
|
2004-06-09 20:04:09 +00:00
|
|
|
#if !defined(HAVE_STRLCPY)
|
|
|
|
extern size_t strlcpy(char*, const char*, size_t);
|
2004-06-09 02:34:13 +00:00
|
|
|
#endif
|
|
|
|
|
2004-06-12 18:44:53 +00:00
|
|
|
#if !defined(HAVE_STRLCAT)
|
|
|
|
extern size_t strlcat(char *dst, const char *src, size_t size);
|
|
|
|
#endif
|
|
|
|
|
2003-10-08 18:15:14 +00:00
|
|
|
extern int ndays_to_string(double x, int smallest_timescale, char *buf);
|
|
|
|
extern void nbytes_to_string(double nbytes, double total_bytes, char* str, int len);
|
2002-04-30 22:22:54 +00:00
|
|
|
extern double dtime();
|
2004-12-01 20:56:20 +00:00
|
|
|
extern void validate_time(double&);
|
2003-03-11 22:18:01 +00:00
|
|
|
extern void boinc_sleep(double);
|
2002-10-22 22:44:52 +00:00
|
|
|
extern int parse_command_line( char *, char ** );
|
2003-03-08 23:49:35 +00:00
|
|
|
extern void c2x(char *what);
|
2003-05-13 23:10:06 +00:00
|
|
|
extern void strip_whitespace(char *str);
|
2004-06-30 18:17:21 +00:00
|
|
|
extern void strip_whitespace(std::string&);
|
2003-01-30 23:03:52 +00:00
|
|
|
extern void unescape_url(char *url);
|
|
|
|
extern void escape_url(char *in, char*out);
|
2003-05-20 00:03:39 +00:00
|
|
|
extern void escape_url_readable(char* in, char* out);
|
2004-07-11 21:54:00 +00:00
|
|
|
extern bool invalid_url(char*);
|
2003-06-24 00:17:36 +00:00
|
|
|
extern void canonicalize_master_url(char *url);
|
2003-08-21 00:07:03 +00:00
|
|
|
extern void safe_strncpy(char*, const char*, int);
|
2003-04-03 18:35:40 +00:00
|
|
|
#define safe_strcpy(x, y) safe_strncpy(x, y, sizeof(x))
|
|
|
|
#define safe_strcat(x, y) if (strlen(x)+strlen(y)<sizeof(x)) strcat(x, y)
|
2004-10-25 20:16:30 +00:00
|
|
|
extern char* time_to_string(double);
|
2004-12-10 19:17:32 +00:00
|
|
|
extern std::string timediff_format(double);
|
|
|
|
extern int read_file_string(const char* pathname, std::string& result);
|
2002-08-07 22:52:10 +00:00
|
|
|
|
2004-06-30 18:17:21 +00:00
|
|
|
inline bool ends_with(std::string const& s, std::string const& suffix) {
|
2003-08-21 00:07:03 +00:00
|
|
|
return
|
|
|
|
s.size()>=suffix.size() &&
|
|
|
|
s.substr(s.size()-suffix.size()) == suffix;
|
|
|
|
}
|
|
|
|
|
2004-06-30 18:17:21 +00:00
|
|
|
inline bool starts_with(std::string const& s, std::string const& prefix) {
|
2003-08-21 00:07:03 +00:00
|
|
|
return s.substr(0, prefix.size()) == prefix;
|
|
|
|
}
|
|
|
|
|
2003-08-21 23:27:57 +00:00
|
|
|
// http://lists.debian.org/debian-gcc/2002/debian-gcc-200204/msg00092.html
|
2004-01-21 07:07:16 +00:00
|
|
|
inline void downcase_string(
|
2004-06-30 18:17:21 +00:00
|
|
|
std::string::iterator begin, std::string::iterator end, std::string::iterator src
|
2004-01-21 07:07:16 +00:00
|
|
|
) {
|
2003-08-27 23:35:44 +00:00
|
|
|
std::transform(begin, end, src, (int(*)(int))tolower);
|
2003-08-21 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
2004-06-30 18:17:21 +00:00
|
|
|
inline void downcase_string(std::string& w) {
|
2003-08-21 23:27:57 +00:00
|
|
|
downcase_string(w.begin(), w.end(), w.begin());
|
|
|
|
}
|
|
|
|
|
2003-07-03 00:48:43 +00:00
|
|
|
// NOTE: use #include <functional> to get max,min
|
2002-08-09 21:43:19 +00:00
|
|
|
|
2002-09-16 20:11:52 +00:00
|
|
|
#define SECONDS_PER_DAY 86400
|
2003-06-09 23:50:49 +00:00
|
|
|
|
|
|
|
static inline double drand() {
|
|
|
|
return (double)rand()/(double)RAND_MAX;
|
|
|
|
}
|
|
|
|
|
2004-12-28 03:39:52 +00:00
|
|
|
// return a random double in the range [rmin,rmax)
|
2004-12-10 19:17:32 +00:00
|
|
|
static inline double rand_range(double rmin, double rmax) {
|
|
|
|
if (rmin < rmax) {
|
2003-06-09 23:50:49 +00:00
|
|
|
return drand() * (rmax-rmin) + rmin;
|
2004-12-10 19:17:32 +00:00
|
|
|
} else {
|
2003-06-09 23:50:49 +00:00
|
|
|
return rmin;
|
2004-12-10 19:17:32 +00:00
|
|
|
}
|
2003-06-09 23:50:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// return a random integer in the range [MIN,min(e^n,MAX))
|
2004-12-10 19:17:32 +00:00
|
|
|
//
|
|
|
|
extern double calculate_exponential_backoff(
|
2003-08-31 00:13:09 +00:00
|
|
|
const char* debug_descr, int n, double MIN, double MAX,
|
|
|
|
double factor=1.0
|
|
|
|
);
|
2003-06-28 00:15:42 +00:00
|
|
|
extern bool debug_fake_exponential_backoff;
|
2003-06-10 18:50:43 +00:00
|
|
|
|
2004-02-04 19:14:39 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2004-12-10 19:17:32 +00:00
|
|
|
|
2004-07-09 10:34:26 +00:00
|
|
|
#include <windows.h>
|
2004-12-10 19:17:32 +00:00
|
|
|
extern char* windows_error_string(char* pszBuf, int iSize);
|
|
|
|
extern char* windows_format_error_string(
|
2004-05-24 17:51:08 +00:00
|
|
|
unsigned long dwError, char* pszBuf, int iSize
|
|
|
|
);
|
2004-12-10 19:17:32 +00:00
|
|
|
extern int boinc_thread_cpu_time(HANDLE thread_handle, double& cpu);
|
|
|
|
|
2004-02-04 19:14:39 +00:00
|
|
|
#endif
|
|
|
|
|
2004-04-07 06:51:42 +00:00
|
|
|
extern void update_average(double, double, double, double&, double&);
|
|
|
|
|
2004-08-06 11:42:41 +00:00
|
|
|
// convert filename to path in a hierarchical directory system
|
|
|
|
//
|
2004-08-05 11:35:09 +00:00
|
|
|
extern int dir_hier_path(
|
2005-01-02 07:44:40 +00:00
|
|
|
const char* filename, const char* root, int fanout, bool new_hash,
|
|
|
|
char* result, bool create=false
|
2004-08-05 11:35:09 +00:00
|
|
|
);
|
2004-08-06 11:42:41 +00:00
|
|
|
|
|
|
|
// convert filename to URL in a hierarchical directory system
|
|
|
|
//
|
|
|
|
extern int dir_hier_url(
|
2005-01-02 07:44:40 +00:00
|
|
|
const char* filename, const char* root, int fanout, bool new_hash,
|
|
|
|
char* result
|
2004-08-06 11:42:41 +00:00
|
|
|
);
|
|
|
|
|
2004-12-05 23:52:17 +00:00
|
|
|
extern int boinc_calling_thread_cpu_time(double&);
|
2004-11-05 19:52:19 +00:00
|
|
|
|
2004-12-27 21:14:18 +00:00
|
|
|
// convert UNIX time to MySQL timestamp (yyyymmddhhmmss)
|
|
|
|
//
|
|
|
|
extern void mysql_timestamp(double, char*);
|
|
|
|
|
2003-06-10 18:50:43 +00:00
|
|
|
#endif
|