00001
00002
00003
00004
00005
00006
00007
00032 #ifndef CHIRP_RELI_H
00033 #define CHIRP_RELI_H
00034
00035 #include "chirp_types.h"
00036
00037 #include <sys/types.h>
00038 #include <stdio.h>
00039
00058 struct chirp_file * chirp_reli_open( const char *host, const char *path, INT64_T flags, INT64_T mode, time_t stoptime );
00059
00068 INT64_T chirp_reli_close( struct chirp_file *file, time_t stoptime );
00069
00080 INT64_T chirp_reli_pread( struct chirp_file *file, void *buffer, INT64_T length, INT64_T offset, time_t stoptime );
00081
00093 INT64_T chirp_reli_pwrite( struct chirp_file *file, const void *buffer, INT64_T length, INT64_T offset, time_t stoptime );
00094
00105 INT64_T chirp_reli_pread_unbuffered( struct chirp_file *file, void *buffer, INT64_T length, INT64_T offset, time_t stoptime );
00106
00117 INT64_T chirp_reli_pwrite_unbuffered( struct chirp_file *file, const void *buffer, INT64_T length, INT64_T offset, time_t stoptime );
00118
00133 INT64_T chirp_reli_sread( struct chirp_file *file, void *buffer, INT64_T length, INT64_T stride_length, INT64_T stride_skip, INT64_T offset, time_t stoptime );
00134
00149 INT64_T chirp_reli_swrite( struct chirp_file *file, const void *buffer, INT64_T length, INT64_T stride_length, INT64_T stride_skip, INT64_T offset, time_t stoptime );
00150
00159 INT64_T chirp_reli_fstat( struct chirp_file *file, struct chirp_stat *info, time_t stoptime );
00160
00169 INT64_T chirp_reli_fstatfs( struct chirp_file *file, struct chirp_statfs *info, time_t stoptime );
00170
00180 INT64_T chirp_reli_fchown( struct chirp_file *file, INT64_T uid, INT64_T gid, time_t stoptime );
00181
00191 INT64_T chirp_reli_fchmod( struct chirp_file *file, INT64_T mode, time_t stoptime );
00192
00200 INT64_T chirp_reli_ftruncate( struct chirp_file *file, INT64_T length, time_t stoptime );
00201
00211 INT64_T chirp_reli_flush( struct chirp_file *file, time_t stoptime );
00212
00213 INT64_T chirp_reli_fsync( struct chirp_file *file, time_t stoptime );
00214
00227 INT64_T chirp_reli_getfile( const char *host, const char *path, FILE *stream, time_t stoptime );
00228
00240 INT64_T chirp_reli_getfile_buffer( const char *host, const char *path, char **buffer, time_t stoptime );
00241
00255 INT64_T chirp_reli_putfile( const char *host, const char *path, FILE *stream, INT64_T mode, INT64_T length, time_t stoptime );
00256
00269 INT64_T chirp_reli_putfile_buffer( const char *host, const char *path, const char *buffer, INT64_T mode, INT64_T length, time_t stoptime );
00270
00281 INT64_T chirp_reli_getlongdir( const char *host, const char *path, chirp_longdir_t callback, void *arg, time_t stoptime );
00282
00294 INT64_T chirp_reli_getdir( const char *host, const char *path, chirp_dir_t callback, void *arg, time_t stoptime );
00295
00318 struct chirp_dir * chirp_reli_opendir( const char *host, const char *path, time_t stoptime );
00319
00330 struct chirp_dirent * chirp_reli_readdir( struct chirp_dir *dir );
00331
00340 void chirp_reli_closedir( struct chirp_dir *dir );
00341
00351 INT64_T chirp_reli_getacl( const char *host, const char *path, chirp_dir_t callback, void *arg, time_t stoptime );
00352
00362 INT64_T chirp_reli_setacl( const char *host, const char *path, const char *subject, const char *rights, time_t stoptime );
00363
00372 INT64_T chirp_reli_resetacl( const char *host, const char *path, const char *rights, time_t stoptime );
00373
00382 INT64_T chirp_reli_locate( const char *host, const char *path, chirp_loc_t callback, void *arg, time_t stoptime );
00383
00392 INT64_T chirp_reli_whoami( const char *host, char *subject, INT64_T length, time_t stoptime );
00393
00404 INT64_T chirp_reli_whoareyou( const char *host, const char *rhost, char *subject, INT64_T length, time_t stoptime );
00405
00415 INT64_T chirp_reli_mkfifo( const char *host, const char *path, time_t stoptime );
00416
00424 INT64_T chirp_reli_unlink( const char *host, const char *path, time_t stoptime );
00425
00434 INT64_T chirp_reli_rename( const char *host, const char *path, const char *newpath, time_t stoptime );
00435
00444 INT64_T chirp_reli_link( const char *host, const char *path, const char *newpath, time_t stoptime );
00445
00454 INT64_T chirp_reli_symlink( const char *host, const char *path, const char *newpath, time_t stoptime );
00455
00465 INT64_T chirp_reli_readlink( const char *host, const char *path, char *buf, INT64_T length, time_t stoptime );
00466
00467
00476 INT64_T chirp_reli_mkdir( const char *host, const char *path, INT64_T mode, time_t stoptime );
00477
00486 INT64_T chirp_reli_mkdir_recursive( const char *host, const char *path, INT64_T mode, time_t stoptime );
00487
00496 INT64_T chirp_reli_rmdir( const char *host, const char *path, time_t stoptime );
00497
00508 INT64_T chirp_reli_rmall( const char *host, const char *path, time_t stoptime );
00509
00519 INT64_T chirp_reli_stat( const char *host, const char *path, struct chirp_stat *info, time_t stoptime );
00520
00531 INT64_T chirp_reli_lstat( const char *host, const char *path, struct chirp_stat *info, time_t stoptime );
00532
00541 INT64_T chirp_reli_statfs( const char *host, const char *path, struct chirp_statfs *info, time_t stoptime );
00542
00554 INT64_T chirp_reli_access( const char *host, const char *path, INT64_T flags, time_t stoptime );
00555
00567 INT64_T chirp_reli_chmod( const char *host, const char *path, INT64_T mode, time_t stoptime );
00568
00579 INT64_T chirp_reli_chown( const char *host, const char *path, INT64_T uid, INT64_T gid, time_t stoptime );
00580
00591 INT64_T chirp_reli_lchown( const char *host, const char *path, INT64_T uid, INT64_T gid, time_t stoptime );
00592
00601 INT64_T chirp_reli_truncate( const char *host, const char *path, INT64_T length, time_t stoptime );
00602
00612 INT64_T chirp_reli_utime( const char *host, const char *path, time_t actime, time_t modtime, time_t stoptime );
00613
00627 INT64_T chirp_reli_md5( const char *host, const char *path, unsigned char digest[16], time_t stoptime );
00628
00642 INT64_T chirp_reli_localpath( const char *host, const char *path, char *localpath, int length, time_t stoptime );
00643
00655 INT64_T chirp_reli_audit( const char *host, const char *path, struct chirp_audit **list, time_t stoptime );
00656
00669 INT64_T chirp_reli_thirdput( const char *host, const char *path, const char *thirdhost, const char *thirdpath, time_t stoptime );
00670
00682 INT64_T chirp_reli_mkalloc( const char *host, const char *path, INT64_T size, INT64_T mode, time_t stoptime );
00683
00695 INT64_T chirp_reli_lsalloc( const char *host, const char *path, char *allocpath, INT64_T *total, INT64_T *inuse, time_t stoptime );
00696
00705 INT64_T chirp_reli_group_create( const char *host, char *group, time_t stoptime );
00706
00716 INT64_T chirp_reli_group_list( const char *host, const char *group, chirp_dir_t callback, void *arg, time_t stoptime );
00717
00726 INT64_T chirp_reli_group_add( const char *host, char *group, char *user, time_t stoptime );
00727
00736 INT64_T chirp_reli_group_remove( const char *host, char *group, char *user, time_t stoptime );
00737
00746 INT64_T chirp_reli_group_lookup( const char *host, const char *group, const char *user, time_t stoptime );
00747
00748
00749 INT64_T chirp_reli_group_cache_update( const char *host, const char *group, time_t mod_time, time_t stoptime );
00750 INT64_T chirp_reli_group_policy_set( const char *host, char *group, unsigned long int file_duration, unsigned long int dec_duration, time_t stoptime );
00751 INT64_T chirp_reli_group_policy_get( const char *host, const char *group, int *policy, int *file_duration, int *dec_duration, time_t stoptime );
00752
00767 INT64_T chirp_reli_job_begin( const char *host, const char *cwd, const char *input, const char *output, const char *error, const char *cmdline, time_t stoptime );
00768
00780 INT64_T chirp_reli_job_commit( const char *host, INT64_T jobid, time_t stoptime );
00781
00797 INT64_T chirp_reli_job_wait( const char *host, INT64_T jobid, struct chirp_job_state *state, int wait_time, time_t stoptime );
00798
00810 INT64_T chirp_reli_job_kill( const char *host, INT64_T jobid, time_t stoptime );
00811
00823 INT64_T chirp_reli_job_remove( const char *host, INT64_T jobid, time_t stoptime );
00824
00835 INT64_T chirp_reli_job_list( const char *host, chirp_joblist_t callback, void *arg, time_t stoptime );
00836
00852 INT64_T chirp_reli_bulkio( struct chirp_bulkio *list, int count, time_t stoptime );
00853
00861 INT64_T chirp_reli_blocksize_get();
00862
00870 void chirp_reli_blocksize_set( INT64_T bs );
00871
00879 void chirp_reli_cleanup_before_fork();
00880
00881 #endif