Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into S4U
[simgrid.git] / examples / msg / io / file.c
1 /* Copyright (c) 2008-2010, 2012-2015. 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 FILENAME1 "/home/doc/simgrid/examples/platforms/g5k.xml"
19 #define FILENAME2 "c:\\Windows\\setupact.log"
20 #define FILENAME3 "/home/doc/simgrid/examples/platforms/g5k_cabinets.xml"
21 #define FILENAME4 "/home/doc/simgrid/examples/platforms/nancy.xml"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include "simgrid/msg.h"
26 #include "surf/surf_private.h"
27
28 int host(int argc, char *argv[]);
29
30 XBT_LOG_NEW_DEFAULT_CATEGORY(io_file,
31                              "Messages specific for this io example");
32
33 int host(int argc, char *argv[])
34 {
35   msg_file_t file = NULL;
36   sg_size_t read,write;
37   msg_storage_t st;
38   const char* st_name;
39
40   if(!strcmp(MSG_process_get_name(MSG_process_self()),"0")){
41     file = MSG_file_open(FILENAME1, NULL);
42     MSG_file_dump(file);
43     st_name = "Disk4";
44   } else if(!strcmp(MSG_process_get_name(MSG_process_self()),"1")) {
45     file = MSG_file_open(FILENAME2, NULL);
46     st_name = "Disk2";
47   } else if(!strcmp(MSG_process_get_name(MSG_process_self()),"2")){
48     file = MSG_file_open(FILENAME3, NULL);
49     st_name = "Disk3";
50   } else if(!strcmp(MSG_process_get_name(MSG_process_self()),"3")){
51     file = MSG_file_open(FILENAME4, NULL);
52     st_name = "Disk1";
53   }
54   else xbt_die("FILENAME NOT DEFINED %s",MSG_process_get_name(MSG_process_self()));
55
56   const char* filename = MSG_file_get_name(file);
57   XBT_INFO("\tOpen file '%s'",filename);
58   st = MSG_storage_get_by_name(st_name);
59
60   XBT_INFO("\tCapacity of the storage element '%s' is stored on: %llu / %llu",
61             filename, MSG_storage_get_used_size(st), MSG_storage_get_size(st));
62
63   /* Try to read for 10MB */
64   read = MSG_file_read(file, 10000000);
65   XBT_INFO("\tHave read %llu from '%s'",read,filename);
66
67   /* Write 100KB in file from the current position, i.e, end of file or 10MB */
68   write = MSG_file_write(file, 100000);
69   XBT_INFO("\tHave written %llu in '%s'. Size now is: %llu",write,filename,
70            MSG_file_get_size(file));
71
72
73   XBT_INFO("\tCapacity of the storage element '%s' is stored on: %llu / %llu",
74             filename, MSG_storage_get_used_size(st), MSG_storage_get_size(st));
75
76   /* rewind to the beginning of the file */
77   XBT_INFO("\tComing back to the beginning of the stream for file '%s'",
78            filename);
79   MSG_file_seek(file, 0, SEEK_SET);
80
81   /* Try to read 110KB */
82   read = MSG_file_read(file, 110000);
83   XBT_INFO("\tHave read %llu from '%s' (of size %llu)",read,filename,
84       MSG_file_get_size(file));
85
86   /* rewind once again to the beginning of the file */
87   XBT_INFO("\tComing back to the beginning of the stream for file '%s'",
88            filename);
89   MSG_file_seek(file, 0, SEEK_SET);
90
91   /* Write 110KB in file from the current position, i.e, end of file or 10MB */
92   write = MSG_file_write(file, 110000);
93   XBT_INFO("\tHave written %llu in '%s'. Size now is: %llu", write,filename,
94       MSG_file_get_size(file));
95
96   XBT_INFO("\tCapacity of the storage element '%s' is stored on: %llu / %llu",
97             filename, MSG_storage_get_used_size(st), MSG_storage_get_size(st));
98
99   XBT_INFO("\tClose file '%s'",filename);
100   MSG_file_close(file);
101
102
103   return 0;
104 }
105
106 int main(int argc, char **argv)
107 {
108   int i,res;
109   MSG_init(&argc, argv);
110   MSG_create_environment(argv[1]);
111   xbt_dynar_t hosts =  MSG_hosts_as_dynar();
112   MSG_function_register("host", host);
113   unsigned long nb_hosts = xbt_dynar_length(hosts);
114   XBT_INFO("Number of host '%lu'",nb_hosts);
115   for(i = 0 ; i<nb_hosts; i++)
116   {
117     char* name_host = bprintf("%d",i);
118     MSG_process_create( name_host, host, NULL, xbt_dynar_get_as(hosts,i,msg_host_t) );
119     free(name_host);
120   }
121   xbt_dynar_free(&hosts);
122
123   res = MSG_main();
124   XBT_INFO("Simulation time %g", MSG_get_clock());
125   if (res == MSG_OK)
126     return 0;
127   else
128     return 1;
129
130 }