Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
First step to take care of constraint into storage model
[simgrid.git] / examples / msg / io / file.c
1 /* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /** @addtogroup MSG_examples
8  * 
9  * @subsection MSG_ex_resources Other resource kinds
10  * 
11  * This section contains some sparse examples of how to use the other
12  * kind of resources, such as disk or GPU. These resources are quite
13  * experimental for now, but here we go anyway.
14  * 
15  * - <b>io/file.c</b> Example with the disk resource
16  */
17
18 #define FILENAME "/home/user/Install/simgrid/doc/simgrid/examples/cxx/basic/basic_platform.xml"
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include "msg/msg.h"
23 #include "surf/surf_private.h"
24
25 int host(int argc, char *argv[]);
26
27 XBT_LOG_NEW_DEFAULT_CATEGORY(io_file,
28                              "Messages specific for this io example");
29
30 int host(int argc, char *argv[])
31 {
32   m_file_t file;
33   char* mount = bprintf("C:");
34
35   file = MSG_file_open(mount,FILENAME,"rw");
36   XBT_INFO("Host '%s' open %p",MSG_host_get_name(MSG_host_self()), file);
37
38   size_t read = MSG_file_read(mount,NULL,0,0,file);
39   XBT_INFO("Host '%s' read %zu", MSG_host_get_name(MSG_host_self()), read);
40
41   size_t write = MSG_file_write(mount,NULL,0,0,file);
42   XBT_INFO("Host '%s' write %zu", MSG_host_get_name(MSG_host_self()), write);
43
44   int res = MSG_file_stat(mount,0,NULL);
45   XBT_INFO("Host '%s' stat %d",MSG_host_get_name(MSG_host_self()), res);
46
47   res = MSG_file_close(mount,file);
48   XBT_INFO("Host '%s' close %d",MSG_host_get_name(MSG_host_self()), res);
49
50   free(mount);
51   return 0;
52 }
53
54 int main(int argc, char **argv)
55 {
56     int i,res;
57   MSG_global_init(&argc, argv);
58   MSG_create_environment(argv[1]);
59   xbt_dynar_t hosts =  MSG_hosts_as_dynar();
60   MSG_function_register("host", host);
61
62   XBT_INFO("Number of host '%lu'",xbt_dynar_length(hosts));
63   for(i = 0 ; i<xbt_dynar_length(hosts); i++)
64   {
65     char* name_host = bprintf("%d",i);
66     MSG_process_create( name_host, host, NULL, xbt_dynar_get_as(hosts,i,m_host_t) );
67     free(name_host);
68   }
69   xbt_dynar_free(&hosts);
70
71   res = MSG_main();
72   XBT_INFO("Simulation time %g", MSG_get_clock());
73   MSG_clean();
74   if (res == MSG_OK)
75     return 0;
76   else
77     return 1;
78
79 }