source: MondoRescue/branches/3.0/mondo/src/lib/mr_str.c@ 3171

Last change on this file since 3171 was 3171, checked in by Bruno Cornec, 11 years ago
  • Fix #673 by improving single quote management in mr_stresc, and using single call for getfacl/getfattr and adding tests to test suite.
  • Property svn:eol-style set to native
File size: 3.7 KB
Line 
1/*
2 * $Id$
3 *
4 * New generation of string handling functions safe from a memory management point of view
5 * Developped by Andree Leidenfrost
6 */
7
8#include <stdlib.h>
9#include <stdio.h>
10#include <string.h>
11#include <time.h>
12
13#include "mr_mem.h"
14
15// to get bool type
16#define _MY_STUFF_H_
17#include "my-stuff.h"
18
19/**
20 * Safe alternative to standard function strtok()
21 * @param instr
22 * @param delims
23 * @param lastpos
24 * @return @p
25 * @note this function allocates memory that needs to be freed by caller
26 **/
27char *mr_strtok(char *instr, const char *delims, int *lastpos)
28{
29
30 char *token = NULL;
31 char *strptr = NULL;
32 size_t pos1 = 0;
33 size_t pos2 = 0;
34
35 if (instr == NULL) {
36 *lastpos = 0;
37 return token;
38 }
39
40 if (delims == NULL) {
41 *lastpos = 0;
42 return token;
43 }
44
45 if (strlen(instr) <= *lastpos) {
46 *lastpos = 0;
47 return token;
48 }
49
50 strptr = instr + *lastpos;
51 pos2 = strspn(strptr, delims);
52 strptr += pos2;
53 pos1 = strcspn(strptr, delims);
54 token = (char *)mr_malloc(sizeof(*token) * (pos1 + 1));
55 strncpy(token, strptr, pos1);
56 token[pos1] = '\0';
57 *lastpos = *lastpos + pos1 + pos2 + 1;
58
59 return token;
60}
61
62
63/**
64 * Returns the string fed to it 'inptr' with all characters to escape given
65 * in 'toesc' prepended by escaping character 'escchr'.
66 * (Prepare strings for use in system() or popen() with this function.)
67 * @param instr
68 * @param toesc
69 * @param escchr
70 * @note this function allocates memory that needs to be freed by caller
71 **/
72char *mr_stresc(char *instr, char *toesc, const char escchr, const char specialchr) {
73 char *inptr = NULL;
74 char *retstr = NULL;
75 char *retptr = NULL;
76 char *escptr = NULL;
77 int cnt = 0;
78 bool found = FALSE;
79
80 inptr = instr;
81 // Count how many characters need escaping.
82 while (*inptr != '\0') {
83 escptr = toesc;
84 while (*escptr != '\0') {
85 if (*inptr == *escptr) {
86 // Found it, skip the rest.
87 cnt++;
88 // if specialchar (' or ") then replace it with '\'' or "\"" so adds 2 chars
89 if (*inptr == specialchr) {
90 cnt += 2;
91 }
92 break;
93 }
94 escptr++;
95 }
96 inptr++;
97 }
98
99 inptr = instr;
100 retstr = (char *) mr_malloc(strlen(inptr) + cnt + 1);
101 retptr = retstr;
102
103 // Prepend specified characters with escape character.
104 while (*inptr != '\0') {
105 escptr = toesc;
106 while (*escptr != '\0') {
107 if (*inptr == *escptr) {
108 // Found it, skip the rest.
109 // if specialchar (' or ") then replace it with '\'' or "\"" so adds 2 chars
110 if (*inptr == specialchr) {
111 *retptr = specialchr;
112 retptr++;
113 *retptr = escchr;
114 retptr++;
115 found = TRUE;
116 } else {
117 *retptr = escchr;
118 retptr++;
119 }
120 break;
121 }
122 escptr++;
123 }
124 *retptr = *inptr;
125 retptr++;
126 inptr++;
127 if (found) {
128 // finish to put the remaining specialchr
129 *retptr = specialchr;
130 retptr++;
131 found = FALSE;
132 }
133 }
134 *retptr = '\0';
135
136 return retstr;
137}
138
139/* Return a string containing the date */
140char *mr_date(void) {
141
142 time_t tcurr;
143
144 tcurr = time(NULL);
145 return(ctime(&tcurr));
146}
147
148
149/**
150 * Remove all characters whose ASCII value is less than or equal to 32
151 * (spaces and control characters) from both sides of @p in_out.
152 * @param in_out The string to strip spaces/control characters from (modified).
153 */
154void mr_strip_spaces(char *in_out) {
155 int i = 0;
156 int j = 0;
157 size_t length;
158
159 if (in_out == NULL) {
160 return;
161 }
162 length = strlen(in_out);
163
164 /* Skip initial spaces and special chars */
165 for (i = 0; in_out[i] <= ' ' && i < (int)length ; i++);
166 /* Shift the string to the begining if needed */
167 if (i != 0) {
168 for (j = 0; i < (int)length ; i++, j++) {
169 in_out[j] = in_out[i];
170 }
171 /* Erase the end of the string if needed */
172 j++;
173 in_out[j] = '\0';
174 }
175
176 /* Skip final spaces and special chars */
177 for (i = (int)strlen(in_out) - 1; i >= 0 && in_out[i] <= ' '; i--);
178
179 /* The string now ends after that char */
180 i++;
181 in_out[i] = '\0';
182}
Note: See TracBrowser for help on using the repository browser.