]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/parse.c
Merge pull request #1718 from agaida/patch-1
[mirror_lxc.git] / src / lxc / parse.c
CommitLineData
cb698658 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
cb698658 8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cb698658 22 */
5fa5aa7c 23#define _GNU_SOURCE
cb698658 24#include <stdio.h>
5fa5aa7c
CC
25#undef _GNU_SOURCE
26#include <string.h>
cb698658 27#include <stdlib.h>
28#include <errno.h>
29#include <dirent.h>
30
31#include "parse.h"
1ba0013f 32#include "config.h"
6a44839f 33#include "utils.h"
f2363e38 34#include "log.h"
36eb9bde
CLG
35
36lxc_log_define(lxc_parse, lxc);
cb698658 37
2382ecff 38int lxc_file_for_each_line(const char *file, lxc_file_cb callback, void *data)
cb698658 39{
40 FILE *f;
4fcc0112 41 int err = 0;
2382ecff
CC
42 char *line = NULL;
43 size_t len = 0;
cb698658 44
45 f = fopen(file, "r");
46 if (!f) {
36eb9bde 47 SYSERROR("failed to open %s", file);
cb698658 48 return -1;
49 }
50
2382ecff
CC
51 while (getline(&line, &len, f) != -1) {
52 err = callback(line, data);
48e2f384 53 if (err) {
1a0e70ac
CB
54 /* Callback rv > 0 means stop here callback rv < 0 means
55 * error.
56 */
8daccdb4
SH
57 if (err < 0)
58 ERROR("Failed to parse config: %s", line);
2382ecff 59 break;
48e2f384 60 }
cb698658 61 }
2382ecff 62
f10fad2f 63 free(line);
cb698658 64 fclose(f);
65 return err;
66}
67
74a3920a 68int lxc_char_left_gc(const char *buffer, size_t len)
cb698658 69{
84760c11 70 size_t i;
cb698658 71 for (i = 0; i < len; i++) {
72 if (buffer[i] == ' ' ||
73 buffer[i] == '\t')
74 continue;
75 return i;
76 }
77 return 0;
78}
79
74a3920a 80int lxc_char_right_gc(const char *buffer, size_t len)
cb698658 81{
82 int i;
83 for (i = len - 1; i >= 0; i--) {
84 if (buffer[i] == ' ' ||
85 buffer[i] == '\t' ||
86 buffer[i] == '\n' ||
87 buffer[i] == '\0')
88 continue;
89 return i + 1;
90 }
91 return 0;
92}
93
74a3920a 94int lxc_is_line_empty(const char *line)
cb698658 95{
96 int i;
97 size_t len = strlen(line);
98
99 for (i = 0; i < len; i++)
100 if (line[i] != ' ' && line[i] != '\t' &&
101 line[i] != '\n' && line[i] != '\r' &&
102 line[i] != '\f' && line[i] != '\0')
103 return 0;
104 return 1;
105}