OSDN Git Service

(split) LDP: Update the version to 3.53 in PO files
[linuxjm/LDP_man-pages.git] / release / man2 / tee.2
1 .\" This manpage is Copyright (C) 2006 Jens Axboe
2 .\" and Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\"*******************************************************************
27 .\"
28 .\" This file was generated with po4a. Translate the source file.
29 .\"
30 .\"*******************************************************************
31 .TH TEE 2 2012\-05\-04 Linux "Linux Programmer's Manual"
32 .SH 名前
33 tee \- パイプの中身を複製する
34 .SH 書式
35 .nf
36 \fB#define _GNU_SOURCE\fP         /* feature_test_macros(7) 参照 */
37 \fB#include <fcntl.h>\fP
38
39 \fBssize_t tee(int \fP\fIfd_in\fP\fB, int \fP\fIfd_out\fP\fB, size_t \fP\fIlen\fP\fB, unsigned int \fP\fIflags\fP\fB);\fP
40 .fi
41 .\" Return type was long before glibc 2.7
42 .SH 説明
43 .\" Example programs http://brick.kernel.dk/snaps
44 .\"
45 .\"
46 .\" add a "tee(in, out1, out2)" system call that duplicates the pages
47 .\" (again, incrementing their reference count, not copying the data) from
48 .\" one pipe to two other pipes.
49 \fBtee\fP()  は、ファイルディスクリプタ \fIfd_in\fP が参照するパイプからファイルディスクリプタ \fIfd_out\fP が参照するパイプへ最大
50 \fIlen\fP バイトのデータを複製する。 この操作では、複製されるデータは \fIfd_in\fP からは消費されない。したがって、これらのデータをこの後の
51 \fBsplice\fP(2)  でコピーすることができる。
52
53 \fIflags\fP は一連の修飾フラグであり、 \fBsplice\fP(2)  や \fBvmsplice\fP(2)  と共通の名前である。
54 .TP  1.9i
55 \fBSPLICE_F_MOVE\fP
56 現在のところ \fBtee\fP()  では何の効果もない。 \fBsplice\fP(2)  参照。
57 .TP 
58 \fBSPLICE_F_NONBLOCK\fP
59 入出力で停止 (block) しない。詳細は \fBsplice\fP(2)  参照。
60 .TP 
61 \fBSPLICE_F_MORE\fP
62 現在のところ \fBtee\fP()  では何の効果もないが、将来的には実装される可能性がある。 \fBsplice\fP(2)  参照。
63 .TP 
64 \fBSPLICE_F_GIFT\fP
65 \fBtee\fP()  では未使用。 \fBvmsplice\fP(2)  参照。
66 .SH 返り値
67 成功して完了すると、 \fBtee\fP()  は入出力間で複製されたバイト数を返す。 返り値 0 はデータの転送が行われなかったことを示す。
68 この場合、処理を停止 (block) しても無意味である。 なぜなら、 \fIfd_in\fP
69 が参照するパイプの書き込み側に接続されている者がいないからである。
70
71 エラーの場合、 \fBtee\fP()  は \-1 を返し、 \fIerrno\fP にエラーを示す値を設定する。
72 .SH エラー
73 .TP 
74 \fBEINVAL\fP
75 \fIfd_in\fP と \fIfd_out\fP のどちらかがパイプを参照していない。もしくは \fIfd_in\fP と \fIfd_out\fP
76 が同じパイプを参照している。
77 .TP 
78 \fBENOMEM\fP
79 メモリ不足。
80 .SH バージョン
81 \fBtee\fP() システムコールは Linux 2.6.17 で初めて登場した。
82 ライブラリによるサポートは glibc バージョン 2.5 で追加された。
83 .SH 準拠
84 このシステムコールは Linux 固有である。
85 .SH 注意
86 概念としては、 \fBtee\fP()  は二つのパイプ間でデータのコピーを行う。 しかし、実際には実データのコピーは行われない。 内部では、
87 \fBtee\fP()  は入力側に対する参照だけを作成することで出力側にデータを 追加する。
88 .SH 例
89 以下の例は、 \fBtee\fP()  システムコールを使って、 基本的な \fBtee\fP(1)  プログラムを実装したものである。
90 .nf
91
92 #define _GNU_SOURCE
93 #include <fcntl.h>
94 #include <stdio.h>
95 #include <stdlib.h>
96 #include <unistd.h>
97 #include <errno.h>
98 #include <limits.h>
99
100 int
101 main(int argc, char *argv[])
102 {
103     int fd;
104     int len, slen;
105
106     if (argc != 2) {
107         fprintf(stderr, "Usage: %s <file>\en", argv[0]);
108         exit(EXIT_FAILURE);
109     }
110
111     fd = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644);
112     if (fd == \-1) {
113         perror("open");
114         exit(EXIT_FAILURE);
115     }
116
117     do {
118         /*
119          * tee stdin to stdout.
120          */
121         len = tee(STDIN_FILENO, STDOUT_FILENO,
122                   INT_MAX, SPLICE_F_NONBLOCK);
123
124         if (len < 0) {
125             if (errno == EAGAIN)
126                 continue;
127             perror("tee");
128             exit(EXIT_FAILURE);
129         } else
130             if (len == 0)
131                 break;
132
133         /*
134          * Consume stdin by splicing it to a file.
135          */
136         while (len > 0) {
137             slen = splice(STDIN_FILENO, NULL, fd, NULL,
138                           len, SPLICE_F_MOVE);
139             if (slen < 0) {
140                 perror("splice");
141                 break;
142             }
143             len \-= slen;
144         }
145     } while (1);
146
147     close(fd);
148     exit(EXIT_SUCCESS);
149 }
150 .fi
151 .SH 関連項目
152 \fBsplice\fP(2), \fBvmsplice\fP(2)
153 .SH この文書について
154 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.53 の一部
155 である。プロジェクトの説明とバグ報告に関する情報は
156 http://www.kernel.org/doc/man\-pages/ に書かれている。