savetransfer.c

ソースコードを見る。


関数

void run_program (char **command)
int main (int argc, char *argv[])
void set_nonblocking (int fd)
void set_blocking (int fd)

変数

char buf [4096]
int save_data_from_program = 0

関数

void run_program ( char **  command  ) 

savetransfer.c102 行で定義されています。

参照先 errnosave_data_from_programset_blocking().

参照元 main().

00103 {
00104     int pipe_fds[2], ret;
00105     pid_t pid;
00106 
00107     if (pipe(pipe_fds) < 0) {
00108         fprintf(stderr, "pipe failed: %s\n", strerror(errno));
00109         exit(1);
00110     }
00111 
00112     if ((pid = fork()) < 0) {
00113         fprintf(stderr, "fork failed: %s\n", strerror(errno));
00114         exit(1);
00115     }
00116 
00117     if (pid == 0) {
00118         if (save_data_from_program)
00119             ret = dup2(pipe_fds[1], STDOUT_FILENO);
00120         else
00121             ret = dup2(pipe_fds[0], STDIN_FILENO);
00122         if (ret < 0) {
00123             fprintf(stderr, "Failed to dup (in child): %s\n", strerror(errno));
00124             exit(1);
00125         }
00126         close(pipe_fds[0]);
00127         close(pipe_fds[1]);
00128         set_blocking(STDIN_FILENO);
00129         set_blocking(STDOUT_FILENO);
00130         execvp(command[0], command);
00131         fprintf(stderr, "Failed to exec %s: %s\n", command[0], strerror(errno));
00132         exit(1);
00133     }
00134 
00135     if (save_data_from_program)
00136         ret = dup2(pipe_fds[0], STDIN_FILENO);
00137     else
00138         ret = dup2(pipe_fds[1], STDOUT_FILENO);
00139     if (ret < 0) {
00140         fprintf(stderr, "Failed to dup (in parent): %s\n", strerror(errno));
00141         exit(1);
00142     }
00143     close(pipe_fds[0]);
00144     close(pipe_fds[1]);
00145 }

int main ( int  argc,
char *  argv[] 
)

savetransfer.c36 行で定義されています。

参照先 buferrnorun_program()save_data_from_programset_blocking()set_nonblocking().

00037 {
00038     int fd_file, len;
00039     struct timeval tv;
00040     fd_set fds;
00041 
00042     argv++;
00043     if (--argc && argv[0][0] == '-') {
00044         if (argv[0][1] == 'o')
00045             save_data_from_program = 1;
00046         else if (argv[0][1] == 'i')
00047             save_data_from_program = 0;
00048         else {
00049             fprintf(stderr, "Unknown option: %s\n", argv[0]);
00050             exit(1);
00051         }
00052         argv++;
00053         argc--;
00054     }
00055     if (argc < 2) {
00056         fprintf(stderr, "Usage: savetransfer [-i|-o] OUTPUT_FILE PROGRAM [ARGS...]\n");
00057         fprintf(stderr, "-i  Save the input going to PROGRAM to the OUTPUT_FILE\n");
00058         fprintf(stderr, "-o  Save the output coming from PROGRAM to the OUTPUT_FILE\n");
00059         exit(1);
00060     }
00061     if ((fd_file = open(*argv, O_WRONLY|O_TRUNC|O_CREAT|O_BINARY, 0644)) < 0) {
00062         fprintf(stderr, "Unable to write to `%s': %s\n", *argv, strerror(errno));
00063         exit(1);
00064     }
00065     set_blocking(fd_file);
00066 
00067     signal(SIGPIPE, SIG_IGN);
00068 
00069     run_program(argv + 1);
00070 
00071 #if defined HAVE_SETMODE && O_BINARY
00072     setmode(STDIN_FILENO, O_BINARY);
00073     setmode(STDOUT_FILENO, O_BINARY);
00074 #endif
00075     set_nonblocking(STDIN_FILENO);
00076     set_blocking(STDOUT_FILENO);
00077 
00078     while (1) {
00079         FD_ZERO(&fds);
00080         FD_SET(STDIN_FILENO, &fds);
00081         tv.tv_sec = TIMEOUT_SECONDS;
00082         tv.tv_usec = 0;
00083         if (!select(STDIN_FILENO+1, &fds, NULL, NULL, &tv))
00084             break;
00085         if (!FD_ISSET(STDIN_FILENO, &fds))
00086             break;
00087         if ((len = read(STDIN_FILENO, buf, sizeof buf)) <= 0)
00088             break;
00089         if (write(STDOUT_FILENO, buf, len) != len) {
00090             fprintf(stderr, "Failed to write data to stdout: %s\n", strerror(errno));
00091             exit(1);
00092         }
00093         if (write(fd_file, buf, len) != len) {
00094             fprintf(stderr, "Failed to write data to fd_file: %s\n", strerror(errno));
00095             exit(1);
00096         }
00097     }
00098     return 0;
00099 }

void set_nonblocking ( int  fd  ) 

savetransfer.c148 行で定義されています。

参照元 client_run()fd_pair()main()set_msg_fd_out()socketpair_tcp()start_daemon()start_server().

00149 {
00150     int val;
00151 
00152     if ((val = fcntl(fd, F_GETFL, 0)) == -1)
00153         return;
00154     if (!(val & NONBLOCK_FLAG)) {
00155         val |= NONBLOCK_FLAG;
00156         fcntl(fd, F_SETFL, val);
00157     }
00158 }

void set_blocking ( int  fd  ) 

savetransfer.c161 行で定義されています。

参照元 client_run()main()piped_child()rsync_module()run_program()socketpair_tcp().

00162 {
00163     int val;
00164 
00165     if ((val = fcntl(fd, F_GETFL, 0)) < 0)
00166         return;
00167     if (val & NONBLOCK_FLAG) {
00168         val &= ~NONBLOCK_FLAG;
00169         fcntl(fd, F_SETFL, val);
00170     }
00171 }


変数

char buf[4096]

savetransfer.c32 行で定義されています。

参照元 copy_file()file_checksum()file_checksum1()file_checksum2()generate_hash()get_checksum1()hash_search()human_dnum()io_printf()keep_backup()list_file()log_formatted()main()match_sums()matched()mdfour_tail()parse_merge_name()parse_size_arg()pool_stats()read_msg_fd()rprintf()rsync_module()rsyserr()run_test()send_deflated_token()send_token()setup_merge_file()simple_recv_token()simple_send_token().

int save_data_from_program = 0

savetransfer.c33 行で定義されています。

参照元 main()run_program().


rsyncに対してSat Dec 5 19:45:45 2009に生成されました。  doxygen 1.4.7