mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Require <caml/unixsupport.h> (an OCaml header file) and remove alternate defintions of ‘Nothing’ and ‘unix_error’ which are defined in this header file. We require OCaml >= 3.11 which has this header file, so there is no need to test for it or provide alternative definitions. Thanks: Pino Toscano.
117 lines
3.5 KiB
C
117 lines
3.5 KiB
C
/* virt-builder
|
|
* Copyright (C) 2013 Red Hat Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
/**
|
|
* This file handles the interface between the C/lex/yacc index file
|
|
* parser, and the OCaml world. See F<builder/index_parser.ml> for
|
|
* the OCaml type definition.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
#include <caml/alloc.h>
|
|
#include <caml/fail.h>
|
|
#include <caml/memory.h>
|
|
#include <caml/mlvalues.h>
|
|
#include <caml/unixsupport.h>
|
|
|
|
#include "index-struct.h"
|
|
#include "index-parse.h"
|
|
|
|
extern int do_parse (struct parse_context *context, FILE *in);
|
|
|
|
extern value virt_builder_parse_index (value progv, value error_suffixv, value filenamev);
|
|
|
|
value
|
|
virt_builder_parse_index (value progv, value error_suffixv, value filenamev)
|
|
{
|
|
CAMLparam2 (progv, filenamev);
|
|
CAMLlocal5 (rv, v, sv, sv2, fv);
|
|
struct section *sections;
|
|
size_t i, nr_sections;
|
|
struct parse_context context;
|
|
FILE *in;
|
|
|
|
parse_context_init (&context);
|
|
context.progname = String_val (progv);
|
|
context.input_file = String_val (filenamev);
|
|
context.error_suffix = String_val (error_suffixv);
|
|
|
|
in = fopen (String_val (filenamev), "r");
|
|
if (in == NULL)
|
|
unix_error (errno, (char *) "fopen", filenamev);
|
|
|
|
if (do_parse (&context, in) != 0) {
|
|
fclose (in);
|
|
caml_invalid_argument ("parse error");
|
|
}
|
|
|
|
if (fclose (in) == EOF)
|
|
unix_error (errno, (char *) "fclose", filenamev);
|
|
|
|
/* Convert the parsed data to OCaml structures. */
|
|
nr_sections = 0;
|
|
for (sections = context.parsed_index; sections != NULL; sections = sections->next)
|
|
nr_sections++;
|
|
rv = caml_alloc (nr_sections, 0);
|
|
|
|
for (i = 0, sections = context.parsed_index; sections != NULL;
|
|
i++, sections = sections->next) {
|
|
struct field *fields;
|
|
size_t j, nr_fields;
|
|
|
|
nr_fields = 0;
|
|
for (fields = sections->fields; fields != NULL; fields = fields->next)
|
|
nr_fields++;
|
|
fv = caml_alloc (nr_fields, 0);
|
|
|
|
for (j = 0, fields = sections->fields; fields != NULL;
|
|
j++, fields = fields->next) {
|
|
v = caml_alloc_tuple (3);
|
|
sv = caml_copy_string (fields->key);
|
|
Store_field (v, 0, sv); /* (key, Some subkey, value) */
|
|
if (fields->subkey) {
|
|
sv2 = caml_copy_string (fields->subkey);
|
|
sv = caml_alloc (1, 0);
|
|
Store_field (sv, 0, sv2);
|
|
} else
|
|
sv = Val_int (0);
|
|
Store_field (v, 1, sv);
|
|
sv = caml_copy_string (fields->value);
|
|
Store_field (v, 2, sv);
|
|
Store_field (fv, j, v); /* assign to return array of fields */
|
|
}
|
|
|
|
v = caml_alloc_tuple (2);
|
|
sv = caml_copy_string (sections->name);
|
|
Store_field (v, 0, sv); /* (name, fields) */
|
|
Store_field (v, 1, fv);
|
|
Store_field (rv, i, v); /* assign to return array of sections */
|
|
}
|
|
|
|
/* Free parsed data. */
|
|
parse_context_free (&context);
|
|
|
|
CAMLreturn (rv);
|
|
}
|