Files
libguestfs/common/mlprogress/progress-c.c
Richard W.M. Jones 9254c8f152 mllib: Move Progress OCaml bindings to common/mlprogress.
The ‘Progress’ module is a self-contained library with the only
dependencies being:

 - the C ‘progress’ implementation

Move it to a separate ‘common/mlprogress’ directory.

This change is pure code refactoring.
2017-07-10 17:01:59 +01:00

109 lines
2.8 KiB
C

/* libguestfs OCaml tools common code
* Copyright (C) 2011-2017 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.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <locale.h>
#include <caml/alloc.h>
#include <caml/custom.h>
#include <caml/fail.h>
#include <caml/memory.h>
#include <caml/mlvalues.h>
#include "progress.h"
#pragma GCC diagnostic ignored "-Wmissing-prototypes"
#define Bar_val(v) (*((struct progress_bar **)Data_custom_val(v)))
static void
progress_bar_finalize (value barv)
{
struct progress_bar *bar = Bar_val (barv);
if (bar)
progress_bar_free (bar);
}
static struct custom_operations progress_bar_custom_operations = {
(char *) "progress_bar_custom_operations",
progress_bar_finalize,
custom_compare_default,
custom_hash_default,
custom_serialize_default,
custom_deserialize_default
};
value
guestfs_int_mllib_progress_bar_init (value machine_readablev)
{
CAMLparam1 (machine_readablev);
CAMLlocal1 (barv);
struct progress_bar *bar;
const int machine_readable = Bool_val (machine_readablev);
unsigned flags = 0;
/* XXX Have to do this to get nl_langinfo to work properly. However
* we should really only call this from main.
*/
setlocale (LC_ALL, "");
if (machine_readable)
flags |= PROGRESS_BAR_MACHINE_READABLE;
bar = progress_bar_init (flags);
if (bar == NULL)
caml_raise_out_of_memory ();
barv = caml_alloc_custom (&progress_bar_custom_operations,
sizeof (struct progress_bar *), 0, 1);
Bar_val (barv) = bar;
CAMLreturn (barv);
}
/* NB: "noalloc" function. */
value
guestfs_int_mllib_progress_bar_reset (value barv)
{
struct progress_bar *bar = Bar_val (barv);
progress_bar_reset (bar);
return Val_unit;
}
/* NB: "noalloc" function. */
value
guestfs_int_mllib_progress_bar_set (value barv,
value positionv, value totalv)
{
struct progress_bar *bar = Bar_val (barv);
uint64_t position = Int64_val (positionv);
uint64_t total = Int64_val (totalv);
progress_bar_set (bar, position, total);
return Val_unit;
}