source: MondoRescue/branches/3.2/mondo/src/lib/mr_mem.c@ 3294

Last change on this file since 3294 was 3294, checked in by Bruno Cornec, 10 years ago
  • Fix a compilation issue in libmondo-archive.c on mindi call with lack of parameter
  • Fix compilation warnings in mr_mem.c
  • Adds function mr_str_substitute in mr_str (not yet used) and test code
  • Property svn:eol-style set to native
File size: 4.1 KB
RevLine 
[1054]1/*
2 * $Id$
3 *
4 * Code (c)2006 Bruno Cornec <bruno@mondorescue.org>
5 *
6 * Main file of mr_mem : a very small and simple
7 * library for memory management
8 *
9 * Provided under the GPLv2
10 */
11
[1064]12#ifndef _GNU_SOURCE
13#define _GNU_SOURCE
14#endif
15
[1054]16#include <stdio.h>
17#include <stdlib.h>
18
19#include "mr_err.h"
20#include "mr_msg.h"
21
22/*
23 * Function that frees memory if necessary
[1104]24 * A pointer to the memory pointed is passed to it.
25 * *allocated variable points then to the original content
26 * pointed to by the caller
[2241]27 * In case of NULL pointer it just logs it
[1054]28 */
[1104]29void mr_free_int(void **allocated, int line, const char *file) {
[1054]30
31 /* free man pages says that if allocated is NULL
32 * nothing happens
33 */
[1104]34 if (*allocated != NULL) {
35 free(*allocated);
36 *allocated = NULL;
37 } else {
[2241]38 mr_msg_int(8,line,file,"Attempt to free NULL pointer");
[1104]39 }
[1054]40}
41
42/* encapsulation function for malloc */
[1104]43void *mr_malloc_int(size_t size, int line, const char *file) {
[1054]44
45 void *ret;
46
47 ret = malloc(size);
48 if (ret == NULL) {
[1133]49 mr_msg_int(1,line,file,"Unable to alloc memory in mr_malloc\nExiting...");
[1104]50 mr_exit(-1,"Unable to alloc memory in mr_malloc");
[1054]51 }
52 return(ret);
53}
54
55/* encapsulation function for asprintf */
[1104]56void mr_asprintf_int(char **strp, int line, const char *file, const char *fmt, ...) {
[1054]57
58 int res = 0;
[1064]59 va_list args;
[1054]60
[1064]61 va_start(args,fmt);
[1054]62 res = vasprintf(strp, fmt, args);
63 if (res == -1) {
[1133]64 mr_msg_int(1,line,file,"Unable to alloc memory in mr_asprintf\nExiting...");
[1104]65 mr_exit(-1,"Unable to alloc memory in mr_asprintf");
[1054]66 }
[1064]67 va_end(args);
[1054]68}
69
[3127]70/* encapsulation function for getline */
71void mr_getline_int(char **lineptr, FILE *fd, int line, const char *file) {
72
73 ssize_t ret;
74 size_t n = 0;
75
[3292]76 if (*lineptr != NULL) {
77 /* free a variable which should be already free */
78 mr_msg_int(1,line,file,"mr_getline_ found a non freed variable here");
[3294]79 mr_free_int((void **)lineptr,line,file);
[3292]80 }
[3127]81 ret = getline(lineptr,&n,fd);
[3208]82 if ((ret == -1) && (! feof(fd))) {
[3127]83 mr_msg_int(1,line,file,"Unable to alloc memory in mr_getline\nExiting...");
84 mr_exit(-1,"Unable to alloc memory in mr_getline");
85 }
[3208]86 /* We reached end of file, allocating empty string */
87 if (ret == -1) {
[3294]88 mr_free_int((void **)lineptr,line,file);
[3292]89 mr_asprintf_int(lineptr,line,file,"");
[3208]90 }
[3127]91}
92
[1054]93/*
94 * Function that properly allocates a string from another one
95 * freeing it before in any case
96 */
[1104]97void mr_allocstr_int(char *alloc, const char *orig, int line, const char *file) {
[1054]98
[1174]99 if (alloc != NULL) {
100 mr_free_int((void **)&alloc, line, file);
101 }
[1104]102 mr_asprintf_int(&alloc, line, file, orig);
[1054]103}
[1152]104
105/*
106 * Function that properly put a variable in the environment
107 */
108void mr_setenv_int(const char *name, const char *value, int line, char *file) {
109
110 if (name == NULL) {
111 mr_msg_int(1,line,file,"Unable to setenv a NULL variable\nExiting...");
112 mr_exit(-1, "Unable to setenv a NULL variable");
113 }
114 if (value == NULL) {
115 mr_msg_int(1,line,file,"Unable to affect NULL to %s\nExiting...", name);
116 mr_exit(-1, "Unable to affect a NULL variable");
117 }
[1156]118 if (setenv(name, value, 1) != 0) {
[1152]119 mr_msg_int(1,line,file,"Unable to put %s in environment", name);
120 mr_exit(-1,"Unable to put in environment");
121 }
122}
[1178]123
124/*
125 * Equivalent function of strcat but safe
126 * from memory allocation point of view
[1196]127 * and richer from an interface point of view
[1178]128 */
[1196]129void mr_strcat_int(char **in, int line, const char *file, const char *fmt, ...) {
130 char *fmt2 = NULL;
131 va_list args;
132 int res = 0;
[1178]133
[1196]134 if (fmt == NULL) {
[1178]135 return;
136 }
137 if (in == NULL) {
[1196]138 mr_msg_int(1,line,file,"Unable to add to NULL pointer\nExiting...");
[1178]139 mr_exit(-1, "Unable to add to a NULL pointer");
140 }
[1196]141 va_start(args,fmt);
[1178]142 if (*in == NULL) {
[1196]143 res = vasprintf(in, fmt, args);
144 if (res == -1) {
145 mr_msg_int(1,line,file,"Unable to alloc memory in mr_strcat\nExiting...");
146 mr_exit(-1,"Unable to alloc memory in mr_strcat");
147 }
[1178]148 } else {
[1196]149 mr_asprintf_int(&fmt2, line, file, "%s%s", *in, fmt);
[2308]150 mr_free_int((void **)in,line,file);
151 res = vasprintf(in, fmt2, args);
152 if (res == -1) {
153 mr_msg_int(1,line,file,"Unable to alloc memory in mr_strcat\nExiting...");
154 mr_exit(-1,"Unable to alloc memory in mr_strcat");
155 }
[1196]156 mr_free_int((void **)&fmt2,line,file);
[1178]157 }
[1196]158 va_end(args);
[1178]159}
[1196]160
161
Note: See TracBrowser for help on using the repository browser.