aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2000-02-01 16:34:33 +0000
committerNalin Dahyabhai <nalin@redhat.com>2000-02-01 16:34:33 +0000
commitb64c0e6d4fcf2be6adb5bda356af5a630c40aaf6 (patch)
tree71aeaf35d0e376f64848c45016cb013c07102ce7
parent9b778aa3a21fe4c8021aefe8aa775e06114d8e5e (diff)
downloadinitscripts-b64c0e6d4fcf2be6adb5bda356af5a630c40aaf6.tar
initscripts-b64c0e6d4fcf2be6adb5bda356af5a630c40aaf6.tar.gz
initscripts-b64c0e6d4fcf2be6adb5bda356af5a630c40aaf6.tar.bz2
initscripts-b64c0e6d4fcf2be6adb5bda356af5a630c40aaf6.tar.xz
initscripts-b64c0e6d4fcf2be6adb5bda356af5a630c40aaf6.zip
non-critical changes to shvar to sync with rp3's copy
-rw-r--r--src/shvar.c47
-rw-r--r--src/shvar.h4
2 files changed, 51 insertions, 0 deletions
diff --git a/src/shvar.c b/src/shvar.c
index c329d2e8..562aa4cb 100644
--- a/src/shvar.c
+++ b/src/shvar.c
@@ -84,6 +84,53 @@ bail:
return NULL;
}
+/* Create a new file structure, returning actual data if the file exists,
+ * and a suitable starting point if it doesn't. */
+shvarFile *
+svCreateFile(char *name)
+{
+ shvarFile *s = NULL;
+ int closefd = 0;
+
+ s = g_malloc0(sizeof(shvarFile));
+
+ s->fd = open(name, O_RDWR); /* NOT O_CREAT */
+ if (s->fd == -1) {
+ /* try read-only */
+ s->fd = open(name, O_RDONLY); /* NOT O_CREAT */
+ if (s->fd != -1) closefd = 1;
+ }
+ s->fileName = g_strdup(name);
+
+ if (s->fd != -1) {
+ struct stat buf;
+ char *p, *q;
+
+ if (fstat(s->fd, &buf) < 0) goto bail;
+ s->arena = g_malloc0(buf.st_size + 1);
+
+ if (read(s->fd, s->arena, buf.st_size) < 0) goto bail;
+
+ for(p = s->arena; (q = strchr(p, '\n')) != NULL; p = q + 1) {
+ s->lineList = g_list_append(s->lineList, g_strndup(p, q - p));
+ }
+
+ if (closefd) {
+ close(s->fd);
+ s->fd = -1;
+ }
+
+ }
+ return s;
+
+bail:
+ if (s->fd != -1) close(s->fd);
+ if (s->arena) g_free (s->arena);
+ if (s->fileName) g_free (s->fileName);
+ g_free (s);
+ return NULL;
+}
+
/* remove escaped characters in place */
static void
unescape(char *s) {
diff --git a/src/shvar.h b/src/shvar.h
index 482922f2..6a20e418 100644
--- a/src/shvar.h
+++ b/src/shvar.h
@@ -50,6 +50,10 @@ struct _shvarFile {
};
+/* Create the file <name>, return shvarFile on success, NULL on failure */
+shvarFile *
+svCreateFile(char *name);
+
/* Open the file <name>, return shvarFile on success, NULL on failure */
shvarFile *
svNewFile(char *name);