1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*
* util.c --
*
* Misc utility functions.
*
* Copyright (c) 1999 Frank Strauss, Technical University of Braunschweig.
*
* See the file "COPYING" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* @(#) $Id: util.c 1470 2002-11-13 13:15:03Z strauss $
*/
#include <config.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "util.h"
#include "snprintf.h"
#ifdef HAVE_DMALLOC_H
#include <dmalloc.h>
#endif
#ifdef HAVE_DMALLOC_H
void *_smiMalloc(char *file, int line, size_t size)
{
char *m = _calloc_leap(file, line, 1, size);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
}
void *_smiRealloc(char *file, int line, void *ptr, size_t size)
{
char *m = _realloc_leap(file, line, ptr, size);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
}
char *_smiStrdup(char *file, int line, const char *s1)
{
if (s1) {
char *m = _strdup_leap(file, line, s1);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
} else {
return NULL;
}
}
char *_smiStrndup(char *file, int line, const char *s1, size_t n)
{
char *m;
m = _smiMalloc(file, line, n+1);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
strncpy(m, s1, n);
m[n] = 0;
return m;
}
void _smiFree(char *file, int line, void *ptr)
{
if (ptr) {
_free_leap(file, line, ptr);
}
}
#else
void *smiMalloc(size_t size)
{
char *m = calloc(1, size);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
}
void *smiRealloc(void *ptr, size_t size)
{
char *m = realloc(ptr, size);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
}
char *smiStrdup(const char *s1)
{
if (s1) {
char *m = strdup(s1);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
return m;
} else {
return NULL;
}
}
char *smiStrndup(const char *s1, size_t n)
{
char *m;
m = smiMalloc(n+1);
if (! m) {
smiPrintError(NULL, ERR_OUT_OF_MEMORY);
}
strncpy(m, s1, n);
m[n] = 0;
return m;
}
void smiFree(void *ptr)
{
if (ptr) {
free(ptr);
}
}
#endif
int smiIsPath(const char *s)
{
return (strchr(s, '.') || strchr(s, DIR_SEPARATOR));
}
#ifndef HAVE_TIMEGM
time_t timegm(struct tm *tm)
{
char *tz;
static char *s = NULL;
char *tofree = NULL;
time_t t;
/* ensure to call mktime() for UTC */
tz = getenv("TZ");
if (tz) {
tofree = s;
smiAsprintf(&s, "TZ=%s", tz);
}
putenv("TZ=NULL");
t = mktime(tm);
if (tz) {
putenv(s);
} else {
putenv("TZ=");
}
if (tofree) smiFree(tofree);
return t;
}
#endif
int smiTypeDerivedFrom(Type *typePtr, Type *parentTypePtr)
{
Type *t;
if ((!typePtr) || (!parentTypePtr)) {
return 0;
}
for (t = typePtr; t != NULL; t = t->parentPtr) {
if (parentTypePtr == t) {
return 1;
}
}
return 0;
}
|