Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
really fix out of tree builds
[simgrid.git] / teshsuite / msg / io-raw-storage / io-raw-storage.c
1 /* Copyright (c) 2006-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(storage, "Messages specific for this simulation");
9
10 static int host(int argc, char* argv[])
11 {
12   const char* host_name = MSG_host_get_name(MSG_host_self());
13
14   /* - Display information on the disks mounted by the current host */
15   XBT_INFO("*** Storage info on %s ***", host_name);
16
17   xbt_dict_cursor_t cursor = NULL;
18   char* mount_name;
19   char* storage_name;
20
21   /* - Retrieve all mount points of current host */
22   xbt_dict_t storage_list = MSG_host_get_mounted_storage_list(MSG_host_self());
23
24   /* - For each disk mounted on host, display disk name and mount point */
25   xbt_dict_foreach (storage_list, cursor, mount_name, storage_name)
26     XBT_INFO("Storage name: %s, mount name: %s", storage_name, mount_name);
27
28   xbt_dict_free(&storage_list);
29
30   /* - Write 200,000 bytes on Disk4 */
31   msg_storage_t storage = MSG_storage_get_by_name("Disk4");
32   sg_size_t write       = MSG_storage_write(storage, 200000); // Write 200,000 bytes
33   XBT_INFO("Wrote %llu bytes on 'Disk4'", write);
34
35   /*  - Now read 200,000 bytes */
36   sg_size_t read = MSG_storage_read(storage, 200000);
37   XBT_INFO("Read %llu bytes on 'Disk4'", read);
38
39   /* - Attach some user data to disk1 */
40   XBT_INFO("*** Get/set data for storage element: Disk4 ***");
41
42   char* data = MSG_storage_get_data(storage);
43
44   XBT_INFO("Get storage data: '%s'", data);
45
46   MSG_storage_set_data(storage, xbt_strdup("Some user data"));
47   data = MSG_storage_get_data(storage);
48   XBT_INFO("Set and get data: '%s'", data);
49   xbt_free(data);
50
51   return 1;
52 }
53
54 int main(int argc, char* argv[])
55 {
56   MSG_init(&argc, argv);
57
58   MSG_create_environment(argv[1]);
59   MSG_function_register("host", host);
60   xbt_dynar_t hosts = MSG_hosts_as_dynar();
61   MSG_process_create(NULL, host, NULL, xbt_dynar_get_as(hosts, 3, msg_host_t));
62   xbt_dynar_free(&hosts);
63
64   msg_error_t res = MSG_main();
65   XBT_INFO("Simulated time: %g", MSG_get_clock());
66
67   return res != MSG_OK;
68 }