2002-04-30 22:22:54 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// 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-06-09 23:50:49 +00:00
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
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-06-09 23:50:49 +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-06-09 23:50:49 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002, 2003
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-06-09 23:50:49 +00:00
|
|
|
#include <ctime>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cmath>
|
2002-09-16 20:31:54 +00:00
|
|
|
|
2003-06-10 18:50:43 +00:00
|
|
|
#ifndef _UTIL_H_
|
|
|
|
#define _UTIL_H_
|
|
|
|
|
2002-09-16 20:11:52 +00:00
|
|
|
extern int double_to_ydhms (double x, int smallest_timescale, char *buf);
|
2003-06-06 21:23:14 +00:00
|
|
|
extern void get_byte_string(double nbytes, double total_bytes, char* str, int len);
|
2002-04-30 22:22:54 +00:00
|
|
|
extern double dtime();
|
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 ** );
|
2002-12-16 23:51:33 +00:00
|
|
|
extern int lock_file(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);
|
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);
|
2003-06-06 17:43:45 +00:00
|
|
|
extern void case_format_url(char *url);
|
2003-04-03 18:35:40 +00:00
|
|
|
extern void safe_strncpy(char*, char*, int);
|
|
|
|
#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)
|
2003-03-06 17:42:49 +00:00
|
|
|
extern char* timestamp();
|
2002-08-07 22:52:10 +00:00
|
|
|
|
2002-08-09 21:43:19 +00:00
|
|
|
#ifndef max
|
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef min
|
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a random integer in the range [rmin,rmax)
|
|
|
|
static inline double rand_range(double rmin, double rmax)
|
|
|
|
{
|
|
|
|
if (rmin < rmax)
|
|
|
|
return drand() * (rmax-rmin) + rmin;
|
|
|
|
else
|
|
|
|
return rmin;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a random integer in the range [MIN,min(e^n,MAX))
|
|
|
|
static inline int calculate_exponential_backoff(int n, double MIN, double MAX, double factor=1.0)
|
|
|
|
{
|
|
|
|
return (int) rand_range(MIN, min(MAX, factor*exp((double)n)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a random integer in the range [MIN,e^n)
|
|
|
|
static inline int calculate_exponential_backoff(int n, double MIN)
|
|
|
|
{
|
|
|
|
return (int) rand_range(MIN, exp((double)n));
|
|
|
|
}
|
2003-06-10 18:50:43 +00:00
|
|
|
|
|
|
|
#endif
|