1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* libguestfs generated file
* WARNING: THIS FILE IS GENERATED FROM:
* generator/generator_*.ml
* ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
*
* Copyright (C) 2009-2012 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 <string.h>
#include <libintl.h>
#include "fish.h"
const char *
event_name_of_event_bitmask (uint64_t ev)
{
switch (ev) {
case GUESTFS_EVENT_CLOSE:
return "close";
case GUESTFS_EVENT_SUBPROCESS_QUIT:
return "subprocess_quit";
case GUESTFS_EVENT_LAUNCH_DONE:
return "launch_done";
case GUESTFS_EVENT_PROGRESS:
return "progress";
case GUESTFS_EVENT_APPLIANCE:
return "appliance";
case GUESTFS_EVENT_LIBRARY:
return "library";
case GUESTFS_EVENT_TRACE:
return "trace";
case GUESTFS_EVENT_ENTER:
return "enter";
default:
abort (); /* should not happen */
}
}
void
print_event_set (uint64_t event_bitmask, FILE *fp)
{
int comma = 0;
if (event_bitmask == GUESTFS_EVENT_ALL) {
fputs ("*", fp);
return;
}
if (event_bitmask & GUESTFS_EVENT_CLOSE) {
comma = 1;
fputs ("close", fp);
}
if (event_bitmask & GUESTFS_EVENT_SUBPROCESS_QUIT) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("subprocess_quit", fp);
}
if (event_bitmask & GUESTFS_EVENT_LAUNCH_DONE) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("launch_done", fp);
}
if (event_bitmask & GUESTFS_EVENT_PROGRESS) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("progress", fp);
}
if (event_bitmask & GUESTFS_EVENT_APPLIANCE) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("appliance", fp);
}
if (event_bitmask & GUESTFS_EVENT_LIBRARY) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("library", fp);
}
if (event_bitmask & GUESTFS_EVENT_TRACE) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("trace", fp);
}
if (event_bitmask & GUESTFS_EVENT_ENTER) {
if (comma) fputc (',', fp);
comma = 1;
fputs ("enter", fp);
}
}
int
event_bitmask_of_event_set (const char *arg, uint64_t *eventset_r)
{
size_t n;
if (STREQ (arg, "*")) {
*eventset_r = GUESTFS_EVENT_ALL;
return 0;
}
*eventset_r = 0;
while (*arg) {
n = strcspn (arg, ",");
if (STREQLEN (arg, "close", n))
*eventset_r |= GUESTFS_EVENT_CLOSE;
else if (STREQLEN (arg, "subprocess_quit", n))
*eventset_r |= GUESTFS_EVENT_SUBPROCESS_QUIT;
else if (STREQLEN (arg, "launch_done", n))
*eventset_r |= GUESTFS_EVENT_LAUNCH_DONE;
else if (STREQLEN (arg, "progress", n))
*eventset_r |= GUESTFS_EVENT_PROGRESS;
else if (STREQLEN (arg, "appliance", n))
*eventset_r |= GUESTFS_EVENT_APPLIANCE;
else if (STREQLEN (arg, "library", n))
*eventset_r |= GUESTFS_EVENT_LIBRARY;
else if (STREQLEN (arg, "trace", n))
*eventset_r |= GUESTFS_EVENT_TRACE;
else if (STREQLEN (arg, "enter", n))
*eventset_r |= GUESTFS_EVENT_ENTER;
else {
fprintf (stderr, _("unknown event name: %s\n"), arg);
return -1;
}
arg += n;
if (*arg == ',')
arg++;
}
return 0;
}
|