1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-31 22:18:03 +02:00
gnupg/util/miscutil.c

154 lines
3.3 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* miscutil.c - miscellaneous utilities
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +01:00
*
* GnuPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GnuPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
1997-12-20 18:23:29 +01:00
#include <string.h>
1997-11-18 15:06:00 +01:00
#include <time.h>
1997-12-01 11:33:23 +01:00
#include <ctype.h>
1997-11-18 15:06:00 +01:00
#include "types.h"
#include "util.h"
1998-08-11 19:29:34 +02:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
u32
make_timestamp()
{
return time(NULL);
}
1998-04-02 12:30:03 +02:00
u32
add_days_to_timestamp( u32 stamp, u16 days )
{
return stamp + days*86400L;
}
1998-11-20 18:42:18 +01:00
/****************
* Return a string with a time value in the form: x Y, n D, n H
*/
const char *
strtimevalue( u32 value )
{
static char buffer[30];
unsigned int years, days, hours, minutes;
value /= 60;
minutes = value % 60;
value /= 60;
hours = value % 24;
value /= 24;
days = value % 365;
value /= 365;
years = value;
sprintf(buffer,"%uy%ud%uh%um", years, days, hours, minutes );
if( years )
return buffer;
if( days )
return strchr( buffer, 'y' ) + 1;
return strchr( buffer, 'd' ) + 1;
}
1998-09-15 21:56:30 +02:00
/****************
* Note: this function returns GMT
*/
1998-04-02 12:30:03 +02:00
const char *
strtimestamp( u32 stamp )
{
static char buffer[11+5];
struct tm *tp;
time_t atime = stamp;
tp = gmtime( &atime );
sprintf(buffer,"%04d-%02d-%02d",
1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday );
return buffer;
}
1997-11-18 15:06:00 +01:00
1998-09-15 21:56:30 +02:00
/****************
* Note: this function returns local time
*/
const char *
asctimestamp( u32 stamp )
{
1998-09-18 17:24:53 +02:00
static char buffer[50];
1998-09-15 21:56:30 +02:00
struct tm *tp;
time_t atime = stamp;
tp = localtime( &atime );
#ifdef HAVE_STRFTIME
/* fixme: we should check whether the locale apppends a " %Z"
* These locales from glibc don't put the " %Z":
* fi_FI hr_HR ja_JP lt_LT lv_LV POSIX ru_RU ru_SU sv_FI sv_SE zh_CN
*/
1998-09-18 17:24:53 +02:00
strftime( buffer, DIM(buffer)-1, "%c %Z", tp );
1998-09-15 21:56:30 +02:00
buffer[DIM(buffer)-1] = 0;
1998-09-18 17:24:53 +02:00
#else
mem2str( buffer, asctime(tp), DIM(buffer) );
1998-09-15 21:56:30 +02:00
#endif
return buffer;
}
1997-12-01 11:33:23 +01:00
/****************
* Print a string to FP, but filter all control characters out.
*/
void
1998-03-09 22:44:06 +01:00
print_string( FILE *fp, byte *p, size_t n, int delim )
1997-12-01 11:33:23 +01:00
{
for( ; n; n--, p++ )
1998-03-09 22:44:06 +01:00
if( iscntrl( *p ) || *p == delim ) {
1997-12-01 11:33:23 +01:00
putc('\\', fp);
if( *p == '\n' )
putc('n', fp);
1998-03-09 22:44:06 +01:00
else if( *p == '\r' )
putc('r', fp);
else if( *p == '\f' )
putc('f', fp);
else if( *p == '\v' )
putc('v', fp);
else if( *p == '\b' )
putc('b', fp);
1997-12-01 11:33:23 +01:00
else if( !*p )
putc('0', fp);
else
1997-12-16 20:15:09 +01:00
fprintf(fp, "x%02x", *p );
1997-12-01 11:33:23 +01:00
}
else
putc(*p, fp);
}
1998-08-11 19:29:34 +02:00
1997-12-20 18:23:29 +01:00
int
answer_is_yes( const char *s )
{
1998-08-11 19:29:34 +02:00
char *long_yes = _("yes");
char *short_yes = _("yY");
if( !stricmp(s, long_yes ) )
1997-12-20 18:23:29 +01:00
return 1;
1998-08-11 19:29:34 +02:00
if( strchr( short_yes, *s ) && !s[1] )
1997-12-20 18:23:29 +01:00
return 1;
return 0;
}
1998-07-29 21:35:05 +02:00