2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 #include <utils/linked_list.h>
24 #define HOST_DIR "host"
25 #define MOUNT_DIR "mount"
29 typedef struct dumm_t dumm_t
;
32 * @brief dumm - Dynamic Uml Mesh Modeler
34 * Controls a group of UML guests and their networks.
39 * @brief Starts a new UML guest
41 * @param name name of the guest
42 * @param kernel kernel to boot
43 * @param master mounted read only master filesystem
44 * @param mem amount of memory for guest, in MB
45 * @return guest if started, NULL if failed
47 guest_t
* (*start_guest
) (dumm_t
*this, char *name
, char *kernel
,
48 char *master
, int mem
);
51 * @brief Create an iterator over all guests.
53 * @return iteraotor over guest_t's
55 iterator_t
* (*create_guest_iterator
) (dumm_t
*this);
58 * @brief stop all guests and destroy the modeler
60 void (*destroy
) (dumm_t
*this);
64 * @brief Create a new group of UML hosts and networks.
66 * Dumm uses its working dir to create folders and files it works with.
68 * @return created UML group, or NULL if failed.
70 dumm_t
*dumm_create();