Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add zone.h and storage.h
[simgrid.git] / include / simgrid / storage.h
diff --git a/include/simgrid/storage.h b/include/simgrid/storage.h
new file mode 100644 (file)
index 0000000..83cfd57
--- /dev/null
@@ -0,0 +1,31 @@
+/* Public interface to the Link datatype                                    */
+
+/* Copyright (c) 2018. The SimGrid Team. All rights reserved.          */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
+#ifndef INCLUDE_SIMGRID_STORAGE_H_
+#define INCLUDE_SIMGRID_STORAGE_H_
+
+#include <simgrid/forward.h>
+#include <xbt/base.h>
+
+/* C interface */
+SG_BEGIN_DECL()
+
+XBT_PUBLIC const char* sg_storage_get_name(sg_storage_t storage);
+XBT_PUBLIC sg_storage_t sg_storage_get_by_name(const char* name);
+XBT_PUBLIC xbt_dict_t sg_storage_get_properties(sg_storage_t storage);
+XBT_PUBLIC void sg_storage_set_property_value(sg_storage_t storage, const char* name, char* value);
+XBT_PUBLIC const char* sg_storage_get_property_value(sg_storage_t storage, const char* name);
+XBT_PUBLIC xbt_dynar_t sg_storages_as_dynar();
+XBT_PUBLIC void sg_storage_set_data(sg_storage_t host, void* data);
+XBT_PUBLIC void* sg_storage_get_data(sg_storage_t storage);
+XBT_PUBLIC const char* sg_storage_get_host(sg_storage_t storage);
+XBT_PUBLIC sg_size_t sg_storage_read(sg_storage_t storage, sg_size_t size);
+XBT_PUBLIC sg_size_t sg_storage_write(sg_storage_t storage, sg_size_t size);
+
+SG_END_DECL()
+
+#endif /* INCLUDE_SIMGRID_STORAGE_H_ */