Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
getting sg_instr_AS_end through a signal structure
[simgrid.git] / src / s4u / s4u_file.cpp
1 /* Copyright (c) 2015-2017. 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/simix.h"
7 #include "src/msg/msg_private.h"
8 #include "xbt/log.h"
9
10 #include "simgrid/s4u/Actor.hpp"
11 #include "simgrid/s4u/Comm.hpp"
12 #include "simgrid/s4u/File.hpp"
13 #include "simgrid/s4u/Host.hpp"
14 #include "simgrid/s4u/Mailbox.hpp"
15
16 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_file,"S4U files");
17
18
19 namespace simgrid {
20 namespace s4u {
21
22 File::File(const char* fullpath, void* userdata) : path_(fullpath), userdata_(userdata)
23 {
24   // this cannot fail because we get a xbt_die if the mountpoint does not exist
25   pimpl_ = simcall_file_open(fullpath, Host::current());
26 }
27
28 File::~File() {
29   simcall_file_close(pimpl_, Host::current());
30 }
31
32 sg_size_t File::read(sg_size_t size) {
33   return simcall_file_read(pimpl_, size, Host::current());
34 }
35 sg_size_t File::write(sg_size_t size) {
36   return simcall_file_write(pimpl_,size, Host::current());
37 }
38 sg_size_t File::size() {
39   return simcall_file_get_size(pimpl_);
40 }
41
42 void File::seek(sg_size_t pos) {
43   simcall_file_seek(pimpl_,pos,SEEK_SET);
44 }
45 sg_size_t File::tell() {
46   return simcall_file_tell(pimpl_);
47 }
48 void File::move(const char*fullpath) {
49   simcall_file_move(pimpl_,fullpath);
50 }
51 void File::unlink() {
52   sg_host_t attached = Host::current(); // FIXME: we should check where this file is attached
53   simcall_file_unlink(pimpl_,attached);
54 }
55
56 }} // namespace simgrid::s4u