要約
UNIX ドメインのストリーム型ソケットのクラス。
通常の IO クラスのサブクラスと同様の入出力ができます。
目次
継承しているメソッド
- BasicSocketから継承しているメソッド
- IOから継承しているメソッド
-
- <<
- advise
- autoclose=
- autoclose?
- binmode
- binmode?
- clone
- close
- close_on_exec=
- close_on_exec?
- close_read
- close_write
- closed?
- dup
- each
- each_byte
- each_char
- each_codepoint
- each_line
- eof
- eof?
- external_encoding
- fcntl
- fdatasync
- fileno
- flush
- fsync
- getbyte
- getc
- gets
- internal_encoding
- ioctl
- isatty
- lineno
- lineno=
- pid
- pos
- pos=
- pread
- printf
- putc
- puts
- pwrite
- read
- read_nonblock
- readbyte
- readchar
- readline
- readlines
- readpartial
- reopen
- rewind
- seek
- set_encoding
- set_encoding_by_bom
- stat
- sync
- sync=
- sysread
- sysseek
- syswrite
- tell
- to_i
- to_io
- to_path
- tty?
- ungetbyte
- ungetc
- write
- write_nonblock
- Enumerableから継承しているメソッド
-
- all?
- any?
- chain
- chunk
- chunk_while
- collect
- collect_concat
- compact
- count
- cycle
- detect
- drop
- drop_while
- each_cons
- each_entry
- each_slice
- each_with_index
- each_with_object
- entries
- filter
- filter_map
- find
- find_all
- find_index
- first
- flat_map
- grep
- grep_v
- group_by
- include?
- inject
- lazy
- map
- max
- max_by
- member?
- min
- min_by
- minmax
- minmax_by
- none?
- one?
- partition
- reduce
- reject
- reverse_each
- select
- slice_after
- slice_before
- slice_when
- sort
- sort_by
- sum
- take
- take_while
- tally
- to_a
- to_h
- uniq
- zip
特異メソッド
open(path) -> UNIXSocket
[permalink][rdoc][edit]new(path) -> UNIXSocket
open(path) {|sock| ...} -> object
new(path) {|sock| ...} -> object
-
path で指定したパス名を用いてソケットを接続します。
ブロックを省略すると接続したソケットを返します。
ブロックを渡した場合は、接続したソケットを引数としてそのブロックを呼びだし、ブロック終了時にソケットを閉じます。この場合にはブロックの評価値を返り値として返します。
- [PARAM] path:
- 接続先のパス名文字列
require 'socket' s = UNIXSocket.new("/tmp/sock") s.send("hello", 0)
pair(type=Socket::SOCK_STREAM, protocol=0) -> [UNIXSocket, UNIXSocket]
[permalink][rdoc][edit]socketpair(type=Socket::SOCK_STREAM, protocol=0) -> [UNIXSocket, UNIXSocket]
-
相互に結合された UNIX ソケットのペアを含む2要素の配列を返します。
type にはソケットタイプを指定します。 Socket::SOCK_STREAM, Socket::SOCK_DGRAM, Socket::SOCK_RAW などの整数、:STREAM, :DGRAM, :RAW などのシンボル、 "STREAM" などの文字列が渡せます。
protocol には プロトコルを指定します。0 は Unix domain でのデフォルト値が使われます。
require 'socket' s1, s2 = UNIXSocket.pair s1.send "a", 0 s1.send "b", 0 p s2.recv(10) #=> "ab"
- [PARAM] type:
- ソケットタイプ
- [PARAM] protocol:
- プトロコル
インスタンスメソッド
addr -> [String, String]
[permalink][rdoc][edit]-
ソケットの接続情報を表す配列を返します。配列の各要素は第1要素が文字列 "AF_UNIX"、第2要素がパスを表す文字列です。
クライアント側はパスを持たないため空文字列となります。例:
require 'socket' UNIXServer.open("/tmp/s") {|serv| p serv.addr #=> ["AF_UNIX", "/tmp/s"] } UNIXServer.open("/tmp/s") {|serv| c = UNIXSocket.open("/tmp/s") p c.peeraddr #=> ["AF_UNIX", "/tmp/s"] p c.addr #=> ["AF_UNIX", ""] }
[SEE_ALSO] UNIXSocket#peeraddr
path -> String
[permalink][rdoc][edit]-
UNIX ソケットのパスを返します。
クライアント側はパスを持たないため空文字列となります。
例:
require 'socket' UNIXServer.open("/tmp/s") {|serv| p serv.path #=> "/tmp/s" }
peeraddr -> [String, String]
[permalink][rdoc][edit]-
接続相手先ソケットの情報を表す配列を返します。配列の各要素は第1要素が文字列 "AF_UNIX"、第2要素がパスを表す文字列です。
例:
require 'socket' UNIXServer.open("/tmp/s") {|serv| c = UNIXSocket.open("/tmp/s") p c.peeraddr #=> ["AF_UNIX", "/tmp/s"] p c.addr #=> ["AF_UNIX", ""] }
[SEE_ALSO] UNIXSocket#addr
recv_io(klass=IO, mode=nil) -> Integer|IO|object
[permalink][rdoc][edit]-
ソケットの接続先からファイルディスクリプタを受け取ります。
klass が nil の場合、ファイルディスクリプタが Integer として返されます。
klass が nil でない場合、 klass.for_fd(fd[, mode]) が呼ばれ、その値が返されます。
例:
require 'socket' s1, s2 = UNIXSocket.pair s1.send_io STDOUT io = s2.recv_io p File.identical?(io, STDOUT) #=> true
- [PARAM] klass:
- 受け取ったファイルディスクリプタを変換するためのクラス
- [PARAM] mode:
- for_fd に渡すファイルモード
recvfrom(maxlen, flags = 0) -> [String [String, String]]
[permalink][rdoc][edit]-
recvfrom(2) を用いてソケットからメッセージを受け取ります。
maxlen で受け取るメッセージの最大長をバイト数で指定します。
flags には Socket::MSG_* という名前の定数の bitwise OR を渡します。
戻り値は文字列と相手ソケットのパスのペアです。
例:
require 'socket' UNIXServer.open("/tmp/s") {|serv| c = UNIXSocket.open("/tmp/s") s = serv.accept s.send "a", 0 p c.recvfrom(10)[0] #=> "a" }
- [PARAM] maxlen:
- 受け取るメッセージの最大長
- [PARAM] flags:
- フラグ
send_io(io) -> nil
[permalink][rdoc][edit]-
引数 io に対応するファイルディスクリプタをソケットの接続先に送ります。
require 'socket' s1, s2 = UNIXSocket.pair s1.send_io STDOUT stdout = s2.recv_io p STDOUT.fileno #=> 1 p stdout.fileno #=> 6 stdout.puts "hello" # outputs "hello\n" to standard output.
- [PARAM] io:
- 送るファイルディスクリプタ(整数 or IOオブジェクト)