OSDN Git Service

Update releases for LDP v3.76
[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 .\"
32 .\" Japanese Version Copyright (c) 2007  Akihiro MOTOKI
33 .\"         all rights reserved.
34 .\" Translated 2007-02-04, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
35 .\"
36 .TH TEE 2 2014\-12\-31 Linux "Linux Programmer's Manual"
37 .SH 名前
38 tee \- パイプの中身を複製する
39 .SH 書式
40 .nf
41 \fB#define _GNU_SOURCE\fP         /* feature_test_macros(7) 参照 */
42 \fB#include <fcntl.h>\fP
43
44 \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
45 .fi
46 .\" Return type was long before glibc 2.7
47 .SH 説明
48 .\" Example programs http://brick.kernel.dk/snaps
49 .\"
50 .\"
51 .\" add a "tee(in, out1, out2)" system call that duplicates the pages
52 .\" (again, incrementing their reference count, not copying the data) from
53 .\" one pipe to two other pipes.
54 \fBtee\fP()  は、ファイルディスクリプタ \fIfd_in\fP が参照するパイプからファイルディスクリプタ \fIfd_out\fP が参照するパイプへ最大
55 \fIlen\fP バイトのデータを複製する。 この操作では、複製されるデータは \fIfd_in\fP からは消費されない。したがって、これらのデータをこの後の
56 \fBsplice\fP(2)  でコピーすることができる。
57
58 \fIflags\fP は一連の修飾フラグであり、 \fBsplice\fP(2)  や \fBvmsplice\fP(2)  と共通の名前である。
59 .TP  1.9i
60 \fBSPLICE_F_MOVE\fP
61 現在のところ \fBtee\fP()  では何の効果もない。 \fBsplice\fP(2)  参照。
62 .TP 
63 \fBSPLICE_F_NONBLOCK\fP
64 入出力で停止 (block) しない。詳細は \fBsplice\fP(2)  参照。
65 .TP 
66 \fBSPLICE_F_MORE\fP
67 現在のところ \fBtee\fP()  では何の効果もないが、将来的には実装される可能性がある。 \fBsplice\fP(2)  参照。
68 .TP 
69 \fBSPLICE_F_GIFT\fP
70 \fBtee\fP()  では未使用。 \fBvmsplice\fP(2)  参照。
71 .SH 返り値
72 成功して完了すると、 \fBtee\fP()  は入出力間で複製されたバイト数を返す。 返り値 0 はデータの転送が行われなかったことを示す。
73 この場合、処理を停止 (block) しても無意味である。 なぜなら、 \fIfd_in\fP
74 が参照するパイプの書き込み側に接続されている者がいないからである。
75
76 エラーの場合、 \fBtee\fP()  は \-1 を返し、 \fIerrno\fP にエラーを示す値を設定する。
77 .SH エラー
78 .TP 
79 \fBEAGAIN\fP
80 \fBSPLICE_F_NONBLOCK\fP was specified in \fIflags\fP, and the operation would
81 block.
82 .TP 
83 \fBEINVAL\fP
84 \fIfd_in\fP と \fIfd_out\fP のどちらかがパイプを参照していない。もしくは \fIfd_in\fP と \fIfd_out\fP
85 が同じパイプを参照している。
86 .TP 
87 \fBENOMEM\fP
88 メモリ不足。
89 .SH バージョン
90 \fBtee\fP() システムコールは Linux 2.6.17 で初めて登場した。
91 ライブラリによるサポートは glibc バージョン 2.5 で追加された。
92 .SH 準拠
93 このシステムコールは Linux 固有である。
94 .SH 注意
95 概念としては、 \fBtee\fP()  は二つのパイプ間でデータのコピーを行う。 しかし、実際には実データのコピーは行われない。 内部では、
96 \fBtee\fP()  は入力側に対する参照だけを作成することで出力側にデータを 追加する。
97 .SH 例
98 以下の例は、 \fBtee\fP()  システムコールを使って、 基本的な \fBtee\fP(1)  プログラムを実装したものである。 以下は利用例である。
99
100 .in +4n
101 .nf
102 $ \fBdate |./a.out out.log | cat\fP
103 Tue Oct 28 10:06:00 CET 2014
104 $ \fBcat out.log\fP
105 Tue Oct 28 10:06:00 CET 2014
106 .fi
107 .in
108 .SS プログラムのソース
109 .nf
110
111 #define _GNU_SOURCE
112 #include <fcntl.h>
113 #include <stdio.h>
114 #include <stdlib.h>
115 #include <unistd.h>
116 #include <errno.h>
117 #include <limits.h>
118
119 int
120 main(int argc, char *argv[])
121 {
122     int fd;
123     int len, slen;
124
125     if (argc != 2) {
126         fprintf(stderr, "Usage: %s <file>\en", argv[0]);
127         exit(EXIT_FAILURE);
128     }
129
130     fd = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644);
131     if (fd == \-1) {
132         perror("open");
133         exit(EXIT_FAILURE);
134     }
135
136     do {
137         /*
138          * tee stdin to stdout.
139          */
140         len = tee(STDIN_FILENO, STDOUT_FILENO,
141                   INT_MAX, SPLICE_F_NONBLOCK);
142
143         if (len < 0) {
144             if (errno == EAGAIN)
145                 continue;
146             perror("tee");
147             exit(EXIT_FAILURE);
148         } else
149             if (len == 0)
150                 break;
151
152         /*
153          * Consume stdin by splicing it to a file.
154          */
155         while (len > 0) {
156             slen = splice(STDIN_FILENO, NULL, fd, NULL,
157                           len, SPLICE_F_MOVE);
158             if (slen < 0) {
159                 perror("splice");
160                 break;
161             }
162             len \-= slen;
163         }
164     } while (1);
165
166     close(fd);
167     exit(EXIT_SUCCESS);
168 }
169 .fi
170 .SH 関連項目
171 \fBsplice\fP(2), \fBvmsplice\fP(2)
172 .SH この文書について
173 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.76 の一部
174 である。プロジェクトの説明とバグ報告に関する情報は
175 http://www.kernel.org/doc/man\-pages/ に書かれている。