-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMIString.c
126 lines (101 loc) · 2.67 KB
/
MIString.c
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
/******************************************************************************
* Copyright (c) 2005 The Regents of the University of California.
* This material was produced under U.S. Government contract W-7405-ENG-36
* for Los Alamos National Laboratory, which is operated by the University
* of California for the U.S. Department of Energy. The U.S. Government has
* rights to use, reproduce, and distribute this software. NEITHER THE
* GOVERNMENT NOR THE UNIVERSITY MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
* ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified
* to produce derivative works, such modified software should be clearly
* marked, so as not to confuse it with the version available from LANL.
*
* Additionally, this program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* LA-CC 04-115
*
* Copyright 2012-2014 Cray Inc. All Rights Reserved.
*
******************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "MIString.h"
/*
* Number of strings to keep before recycling. This allows
* MIIntToCString to be called multiple times in an argument
* list.
*/
#define NUM_STRINGS 5
static int str_ptr = -1;
static char * strings[NUM_STRINGS];
MIString *
MIStringNew(char *fmt, ...)
{
va_list ap;
MIString *s;
s = (MIString *)malloc(sizeof(MIString));
va_start(ap, fmt);
vasprintf(&s->buf, fmt, ap);
va_end(ap);
s->slen = strlen(s->buf);
return s;
}
void
MIStringFree(MIString *str)
{
free(str->buf);
free(str);
}
void
MIStringAppend(MIString *str, MIString *str2)
{
int len = str->slen + str2->slen;
char *buf = (char *)malloc(len + 1);
memcpy(buf, str->buf, str->slen);
memcpy(&buf[str->slen], str2->buf, str2->slen);
buf[len] = '\0';
free(str->buf);
str->buf = buf;
str->slen = len;
MIStringFree(str2);
}
char *
MIStringToCString(MIString *str)
{
return str->buf;
}
char *
MIIntToCString(int val)
{
int numdigits = 0;
int tmp = val;
char ** s;
do {
++numdigits;
} while (tmp /= 10);
++numdigits; // for the null terminator
if (str_ptr < 0) {
memset(strings, 0, NUM_STRINGS);
str_ptr = 0;
}
if (++str_ptr == NUM_STRINGS) {
str_ptr = 0;
}
s = &strings[str_ptr];
if (*s != NULL) {
free(*s);
}
if ((*s = (char *)malloc(numdigits * sizeof(char))) == (char *)NULL) {
perror("malloc() error");
return (char *)NULL;
}
//asprintf(s, "%d", val);
snprintf(*s, numdigits, "%d", val);
return *s;
}