00001 #pragma once
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00026 #define _GNU_SOURCE
00027
00028 #include <regex.h>
00029 #include <time.h>
00030
00031 #include "gfal_common_srm.h"
00032 #include "../gfal_common_internal.h"
00033 #include "../gfal_common_errverbose.h"
00034 #include "../gfal_common_plugin.h"
00035 #include "gfal_common_srm.h"
00036
00037
00038
00039 gfal_file_handle gfal_srm_openG(plugin_handle, const char* path, int flag, mode_t mode, GError**);
00040
00041 int gfal_srm_readG(plugin_handle, gfal_file_handle fd, void* buff, size_t count, GError**);
00042
00043 ssize_t gfal_srm_preadG(plugin_handle ch, gfal_file_handle fd, void* buff, size_t count, off_t offset, GError** err);
00044
00045 int gfal_srm_writeG(plugin_handle, gfal_file_handle fd, void* buff, size_t count, GError**);
00046
00047 int gfal_srm_closeG(plugin_handle, gfal_file_handle fd, GError **);
00048
00052 int gfal_srm_lseekG(plugin_handle ch, gfal_file_handle fd, off_t offset, int whence, GError** err);
00053
00054