ada_fuse_1.0.1_5f4f6769/src/fuse-operations.ads

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
-- Only needed because Ada wants to know everything.
-- Ignore.

with Interfaces.C;
with Interfaces.C.Strings;

with Fuse.System;
with Fuse.General;

generic

   with package System is new Fuse.System (<>);
   with package General is new Fuse.General (<>);
   type Buffer_Access is private;
   type User_Data_Access is private;

package Fuse.Operations is

   --------------------------
   --  Get Attributes
   --------------------------
   type GetAttr_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      St_Buf   : System.Stat_Access)
      return Interfaces.C.int;

   --------------------------
   --  Read Link
   --------------------------
   type ReadLink_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Link    : Interfaces.C.Strings.chars_ptr;
      Size    : Interfaces.C.Size_T)
      return Interfaces.C.int;

   --------------------------
   --  Make Node    
   --------------------------
   type MkNod_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      Mode  : System.Mode_T;
      Dev   : System.Dev_T)
      return Interfaces.C.int;

   --------------------------
   --  Make Directory
   --------------------------
    type MkDir_C_Type is access function
      (Path : Interfaces.C.Strings.chars_ptr;
       Mode : System.Mode_T)
       return Interfaces.C.int;

   --------------------------
   --  Unlink
   --------------------------
   type Unlink_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr)
      return Interfaces.C.int;

   --------------------------
   --  Remove Directory
   --------------------------
   type RmDir_C_Type is access function
       (Path : Interfaces.C.Strings.chars_ptr)
       return Interfaces.C.int;

   --------------------------
   --  Symlink
   --------------------------
   type SymLink_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Link    : Interfaces.C.Strings.chars_ptr)
      return Interfaces.C.int;

   --------------------------
   --  Rename
   --------------------------
   type Rename_C_Type is access function
     (Path_Old : Interfaces.C.Strings.chars_ptr;
      Path_New : Interfaces.C.Strings.chars_ptr)
      return Interfaces.C.int;

   --------------------------
   --  Link
   --------------------------
   type Link_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      NewPath : Interfaces.C.Strings.chars_ptr)
      return Interfaces.C.int;

   --------------------------
   --  Change Mode
   --------------------------
   type Chmod_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      Mode  : System.Mode_T)
      return Interfaces.C.int;

   --------------------------
   --  Change Owner
   --------------------------
   type ChOwn_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      UID   : System.UID_T;
      GID   : System.GID_T)
      return Interfaces.C.int;

   --------------------------
   --  Truncate
   --------------------------
   type Truncate_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Off_T   : System.Off_T)
      return Interfaces.C.int;

   --------------------------
   --  U Time
   --------------------------
   type UTime_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      UBuf  : System.UTimeBuffer_Access)
      return Interfaces.C.int;

   --------------------------
   --  Open
   --------------------------
   type Open_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Read
   --------------------------
   type Read_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      Buf      : Buffer_Access;
      Size     : Interfaces.C.Size_T;
      Off      : System.Off_T;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Write
   --------------------------
   type Write_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      Buf      : Buffer_Access;
      Size     : Interfaces.C.Size_T;
      Off      : System.Off_T;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Statfs
   --------------------------
   type StatFS_C_Type is access function
     (Path   : Interfaces.C.Strings.chars_ptr;
      Statv  : System.StatVFS_Access)
      return Interfaces.C.int;

   --------------------------
   --  Flush
   --------------------------
   type Flush_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Fi      : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Release
   --------------------------
   type Release_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Fi      : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  FSync
   --------------------------
   type FSync_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      DataSync : Interfaces.C.int;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  SetXAttribute
   --------------------------
  type SetXAttr_C_Type is access function
    (Path    : Interfaces.C.Strings.chars_ptr;
     Name    : Interfaces.C.Strings.chars_ptr;
     Value   : Interfaces.C.Strings.chars_ptr;
     Size    : Interfaces.C.size_t;
     Flags   : Interfaces.C.int)
     return Interfaces.C.int;

   --------------------------
   --  GetXAttribute
   --------------------------
  type GetXAttr_C_Type is access function
    (Path    : Interfaces.C.Strings.chars_ptr;
     Name    : Interfaces.C.Strings.chars_ptr;
     Value   : Interfaces.C.Strings.chars_ptr;
     Size    : Interfaces.C.size_t)
     return Interfaces.C.int;

   --------------------------
   --  ListXAttribute
   --------------------------
  type ListXAttr_C_Type is access function
    (Path    : Interfaces.C.Strings.chars_ptr;
     List    : Interfaces.C.Strings.chars_ptr;
     Size    : Interfaces.C.size_t)
     return Interfaces.C.int;

   --------------------------
   --  RemoveXAttribute
   --------------------------
  type RemoveXAttr_C_Type is access function
    (Path    : Interfaces.C.Strings.chars_ptr;
     Name    : Interfaces.C.Strings.chars_ptr)
     return Interfaces.C.int;

   --------------------------
   --  Open Directory
   --------------------------
   type OpenDir_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      Fi     : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Read Directory
   --------------------------
   type Fill_Dir_T is access function
     (Buf      : General.Dir_Buffer_Type;
      Name     : Interfaces.C.Strings.chars_ptr;
      Stbuf    : System.Stat_Access;
      Off      : System.Off_T )
      return Interfaces.C.int;

   pragma Convention (C, Fill_Dir_T);

   type ReadDir_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      Buf      : General.Dir_Buffer_Type;
      Filler   : Fill_Dir_T;
      Off      : System.Off_T;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Release Directory
   --------------------------
   type ReleaseDir_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      Fi     : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  FSync Directory
   --------------------------
   type FSyncDir_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      DataSync : Interfaces.C.int;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Init
   --------------------------
   type Init_C_Type is access function
     (Conn : System.Fuse_Conn_Info_Access)
     return Interfaces.C.int;

   --------------------------
   --  Destroy
   --------------------------
   type Destroy_C_Type is access function
     (Userdata : User_Data_Access)
     return Interfaces.C.int;

   --------------------------
   --  Access
   --------------------------
   type Access_C_Type is access function
     (Path  : Interfaces.C.Strings.chars_ptr;
      Mask  : Interfaces.C.int)
      return Interfaces.C.int;

   --------------------------
   --  Create
   --------------------------
   type Create_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Mode    : System.Mode_T;
      Fi      : System.File_Info_Access)
      return Interfaces.C.int;


   --------------------------
   --  FTruncate
   --------------------------
   type FTruncate_C_Type is access function
     (Path    : Interfaces.C.Strings.chars_ptr;
      Off_T   : System.Off_T;
      Fi      : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  FGet Attributes
   --------------------------
   type FGetAttr_C_Type is access function
     (Path     : Interfaces.C.Strings.chars_ptr;
      St_Buf   : System.Stat_Access;
      Fi       : System.File_Info_Access)
      return Interfaces.C.int;

   --------------------------
   --  Lock
   --------------------------

   --------------------------
   --  U-Time Nanoseconds
   --------------------------

   --------------------------
   --  BMap
   --------------------------

   --------------------------
   --  IO Control
   --------------------------

   --------------------------
   --  Poll
   --------------------------

end Fuse.Operations;

-- vim: ts=3 sw=3 et