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
00226 INT64_T chirp_reli_getfile( const char *host, const char *path, FILE *stream, time_t stoptime );
00227
00238 INT64_T chirp_reli_getfile_buffer( const char *host, const char *path, char **buffer, time_t stoptime );
00239
00252 INT64_T chirp_reli_putfile( const char *host, const char *path, FILE *stream, INT64_T mode, INT64_T length, time_t stoptime );
00253
00265 INT64_T chirp_reli_putfile_buffer( const char *host, const char *path, const char *buffer, INT64_T mode, INT64_T length, time_t stoptime );
00266
00277 INT64_T chirp_reli_getlongdir( const char *host, const char *path, chirp_longdir_t callback, void *arg, time_t stoptime );
00278
00290 INT64_T chirp_reli_getdir( const char *host, const char *path, chirp_dir_t callback, void *arg, time_t stoptime );
00291
00314 struct chirp_dir * chirp_reli_opendir( const char *host, const char *path, time_t stoptime );
00315
00326 struct chirp_dirent * chirp_reli_readdir( struct chirp_dir *dir );
00327
00336 void chirp_reli_closedir( struct chirp_dir *dir );
00337
00347 INT64_T chirp_reli_getacl( const char *host, const char *path, chirp_dir_t callback, void *arg, time_t stoptime );
00348
00358 INT64_T chirp_reli_setacl( const char *host, const char *path, const char *subject, const char *rights, time_t stoptime );
00359
00368 INT64_T chirp_reli_resetacl( const char *host, const char *path, const char *rights, time_t stoptime );
00369
00378 INT64_T chirp_reli_whoami( const char *host, char *subject, INT64_T length, time_t stoptime );
00379
00390 INT64_T chirp_reli_whoareyou( const char *host, const char *rhost, char *subject, INT64_T length, time_t stoptime );
00391
00401 INT64_T chirp_reli_mkfifo( const char *host, const char *path, time_t stoptime );
00402
00410 INT64_T chirp_reli_unlink( const char *host, const char *path, time_t stoptime );
00411
00420 INT64_T chirp_reli_rename( const char *host, const char *path, const char *newpath, time_t stoptime );
00421
00430 INT64_T chirp_reli_link( const char *host, const char *path, const char *newpath, time_t stoptime );
00431
00440 INT64_T chirp_reli_symlink( const char *host, const char *path, const char *newpath, time_t stoptime );
00441
00451 INT64_T chirp_reli_readlink( const char *host, const char *path, char *buf, INT64_T length, time_t stoptime );
00452
00453
00462 INT64_T chirp_reli_mkdir( const char *host, const char *path, INT64_T mode, time_t stoptime );
00463
00472 INT64_T chirp_reli_mkdir_recursive( const char *host, const char *path, INT64_T mode, time_t stoptime );
00473
00482 INT64_T chirp_reli_rmdir( const char *host, const char *path, time_t stoptime );
00483
00494 INT64_T chirp_reli_rmall( const char *host, const char *path, time_t stoptime );
00495
00505 INT64_T chirp_reli_stat( const char *host, const char *path, struct chirp_stat *info, time_t stoptime );
00506
00517 INT64_T chirp_reli_lstat( const char *host, const char *path, struct chirp_stat *info, time_t stoptime );
00518
00527 INT64_T chirp_reli_statfs( const char *host, const char *path, struct chirp_statfs *info, time_t stoptime );
00528
00540 INT64_T chirp_reli_access( const char *host, const char *path, INT64_T flags, time_t stoptime );
00541
00553 INT64_T chirp_reli_chmod( const char *host, const char *path, INT64_T mode, time_t stoptime );
00554
00565 INT64_T chirp_reli_chown( const char *host, const char *path, INT64_T uid, INT64_T gid, time_t stoptime );
00566
00577 INT64_T chirp_reli_lchown( const char *host, const char *path, INT64_T uid, INT64_T gid, time_t stoptime );
00578
00587 INT64_T chirp_reli_truncate( const char *host, const char *path, INT64_T length, time_t stoptime );
00588
00598 INT64_T chirp_reli_utime( const char *host, const char *path, time_t actime, time_t modtime, time_t stoptime );
00599
00613 INT64_T chirp_reli_md5( const char *host, const char *path, unsigned char digest[16], time_t stoptime );
00614
00628 INT64_T chirp_reli_localpath( const char *host, const char *path, char *localpath, int length, time_t stoptime );
00629
00641 INT64_T chirp_reli_audit( const char *host, const char *path, struct chirp_audit **list, time_t stoptime );
00642
00655 INT64_T chirp_reli_thirdput( const char *host, const char *path, const char *thirdhost, const char *thirdpath, time_t stoptime );
00656
00668 INT64_T chirp_reli_mkalloc( const char *host, const char *path, INT64_T size, INT64_T mode, time_t stoptime );
00669
00681 INT64_T chirp_reli_lsalloc( const char *host, const char *path, char *allocpath, INT64_T *total, INT64_T *inuse, time_t stoptime );
00682
00691 INT64_T chirp_reli_group_create( const char *host, char *group, time_t stoptime );
00692
00702 INT64_T chirp_reli_group_list( const char *host, const char *group, chirp_dir_t callback, void *arg, time_t stoptime );
00703
00712 INT64_T chirp_reli_group_add( const char *host, char *group, char *user, time_t stoptime );
00713
00722 INT64_T chirp_reli_group_remove( const char *host, char *group, char *user, time_t stoptime );
00723
00732 INT64_T chirp_reli_group_lookup( const char *host, const char *group, const char *user, time_t stoptime );
00733
00734
00735 INT64_T chirp_reli_group_cache_update( const char *host, const char *group, time_t mod_time, time_t stoptime );
00736 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 );
00737 INT64_T chirp_reli_group_policy_get( const char *host, const char *group, int *policy, int *file_duration, int *dec_duration, time_t stoptime );
00738
00753 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 );
00754
00766 INT64_T chirp_reli_job_commit( const char *host, INT64_T jobid, time_t stoptime );
00767
00783 INT64_T chirp_reli_job_wait( const char *host, INT64_T jobid, struct chirp_job_state *state, int wait_time, time_t stoptime );
00784
00796 INT64_T chirp_reli_job_kill( const char *host, INT64_T jobid, time_t stoptime );
00797
00809 INT64_T chirp_reli_job_remove( const char *host, INT64_T jobid, time_t stoptime );
00810
00821 INT64_T chirp_reli_job_list( const char *host, chirp_joblist_t callback, void *arg, time_t stoptime );
00822
00838 INT64_T chirp_reli_bulkio( struct chirp_bulkio *list, int count, time_t stoptime );
00839
00847 INT64_T chirp_reli_blocksize_get();
00848
00856 void chirp_reli_blocksize_set( INT64_T bs );
00857
00865 void chirp_reli_cleanup_before_fork();
00866
00867 #endif