Skip to content

Commit 8c91814

Browse files
authored
Merge pull request #502 from gemmaro/add/ja
Add Japanese translation
2 parents 290ed40 + 20e4d9b commit 8c91814

File tree

7 files changed

+2035
-13
lines changed

7 files changed

+2035
-13
lines changed

README.ja.md

Lines changed: 266 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,266 @@
1+
# pg
2+
3+
home :: https://github.com/ged/ruby-pg
4+
docs :: http://deveiate.org/code/pg
5+
clog :: link:/History.md
6+
7+
[![https://gitter.im/ged/ruby-pg
8+
でチャットに参加](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ged/ruby-pg?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
9+
10+
11+
## 説明
12+
13+
Pgは[PostgreSQL
14+
RDBMS](http://www.postgresql.org/)へのRubyのインターフェースです。[PostgreSQL
15+
9.3以降](http://www.postgresql.org/support/versioning/)で動作します。
16+
17+
簡単な使用例は次の通りです。
18+
```ruby
19+
#!/usr/bin/env ruby
20+
21+
require 'pg'
22+
23+
# データベースへの現在の接続を表に出力します
24+
conn = PG.connect( dbname: 'sales' )
25+
conn.exec( "SELECT * FROM pg_stat_activity" ) do |result|
26+
puts " PID | User | Query"
27+
result.each do |row|
28+
puts " %7d | %-16s | %s " %
29+
row.values_at('pid', 'usename', 'query')
30+
end
31+
end
32+
```
33+
34+
## ビルド状況
35+
36+
[![Github
37+
Actionsのビルド状況](https://github.com/ged/ruby-pg/actions/workflows/source-gem.yml/badge.svg?branch=master)](https://github.com/ged/ruby-pg/actions/workflows/source-gem.yml)
38+
[![バイナリgem](https://github.com/ged/ruby-pg/actions/workflows/binary-gems.yml/badge.svg?branch=master)](https://github.com/ged/ruby-pg/actions/workflows/binary-gems.yml)
39+
[![Appveyorのビルド状況](https://ci.appveyor.com/api/projects/status/gjx5axouf3b1wicp?svg=true)](https://ci.appveyor.com/project/ged/ruby-pg-9j8l3)
40+
41+
42+
## 要件
43+
44+
* Ruby 2.4かそれより新しいバージョン
45+
* PostgreSQL 9.3.xかそれ以降のバージョン(ヘッダー付属のもの、例えば-devの名前のパッケージ)。
46+
47+
それより前のバージョンのRubyやPostgreSQLでも通常は同様に動作しますが、定期的なテストはされていません。
48+
49+
50+
## バージョン管理
51+
52+
[セマンティックバージョニング](http://semver.org/)の原則にしたがってgemをタグ付けしてリリースしています。
53+
54+
この方針の結果として、2つの数字を指定する[悲観的バージョン制約](http://guides.rubygems.org/patterns/#pessimistic-version-constraint)を使ってこのgemへの依存関係を指定することができます(またそうすべきです)。
55+
56+
例えば次の通りです。
57+
58+
```ruby
59+
spec.add_dependency 'pg', '~> 1.0'
60+
```
61+
62+
## インストール方法
63+
64+
RubyGemsを経由してインストールするには以下とします。
65+
66+
gem install pg
67+
68+
Postgresと一緒にインストールされた'pg_config'プログラムへのパスを指定する必要があるかもしれません。
69+
70+
gem install pg -- --with-pg-config=<path to pg_config>
71+
72+
Bundlerを介してインストールした場合は次のようにコンパイルのためのヒントを与えられます。
73+
74+
bundle config build.pg --with-pg-config=<path to pg_config>
75+
76+
MacOS Xへインストールする詳しい情報については README-OS_X.rdoc を、Windows用のビルドやインストールの説明については
77+
README-Windows.rdoc を参照してください。
78+
79+
詰まったときやただ何か喋りたいときのために[Google+グループ](http://goo.gl/TFy1U)[メーリングリスト](http://groups.google.com/group/ruby-pg)もあります。
80+
81+
署名されたgemとしてインストールしたい場合は、リポジトリの[`certs`ディレクトリ](https://github.com/ged/ruby-pg/tree/master/certs)にgemの署名をする公開証明書があります。
82+
83+
84+
## 型変換
85+
86+
PgにはおまけとしてRubyとネイティブCコードにある結果の値やクエリ引数の型変換ができます。
87+
こうすることでデータベースとのデータの往来を加速させられますが、それは文字列のアロケーションが減り、(より遅い)Rubyのコードでの変換部分が除かれるからです。
88+
89+
とても基本的な型変換は次のようにできます。
90+
```ruby
91+
conn.type_map_for_results = PG::BasicTypeMapForResults.new conn
92+
# ……これは結果の値の対応付けに作用します。
93+
conn.exec("select 1, now(), '{2,3}'::int[]").values
94+
# => [[1, 2014-09-21 20:51:56 +0200, [2, 3]]]
95+
96+
conn.type_map_for_queries = PG::BasicTypeMapForQueries.new conn
97+
# ……そしてこれは引数値の対応付けのためのものです。
98+
conn.exec_params("SELECT $1::text, $2::text, $3::text", [1, 1.23, [2,3]]).values
99+
# => [["1", "1.2300000000000000E+00", "{2,3}"]]
100+
```
101+
102+
しかしPgの型変換はかなり調整が効きます。2層に分かれているのがその理由です。
103+
104+
### エンコーダーとデコーダー (ext/pg_*coder.c, lib/pg/*coder.rb)
105+
106+
こちらはより低層で、DBMSへ転送するためにRubyのオブジェクトを変換するエンコーディングクラスと取得してきたデータをRubyのオブジェクトに変換し戻すデコーディングクラスが含まれています。クラスはそれぞれの形式によって名前空間PG::TextEncoder、PG::TextDecoder、PG::BinaryEncoder、そしてPG::BinaryDecoderに分かれています。
107+
108+
エンコーダーないしデコーダーオブジェクトにOIDデータ型や形式コード(テキストないしバイナリ)や任意で名前を割り当てることができます。要素のエンコーダーないしデコーダーを割り当てることによって複合型を構築することもできます。PG::CoderオブジェクトはPG::TypeMapをセットアップしたりその代わりに単一の値と文字列表現とを相互に変換したりするのに使えます。
109+
110+
ruby-pgでは以下のPostgreSQLカラム型に対応しています(TE = Text Encoder、TD = Text Decoder、BE =
111+
Binary Encoder、BD = Binary Decoder)。
112+
113+
* Integer:
114+
[TE](rdoc-ref:PG::TextEncoder::Integer)[TD](rdoc-ref:PG::TextDecoder::Integer)[BD](rdoc-ref:PG::BinaryDecoder::Integer)
115+
💡
116+
リンクがないでしょうか。[こちら](https://deveiate.org/code/pg/README_rdoc.html#label-Type+Casts)を代わりに見てください
117+
💡
118+
* BE:
119+
[Int2](rdoc-ref:PG::BinaryEncoder::Int2)[Int4](rdoc-ref:PG::BinaryEncoder::Int4)[Int8](rdoc-ref:PG::BinaryEncoder::Int8)
120+
* Float:
121+
[TE](rdoc-ref:PG::TextEncoder::Float)[TD](rdoc-ref:PG::TextDecoder::Float)[BD](rdoc-ref:PG::BinaryDecoder::Float)
122+
* Numeric:
123+
[TE](rdoc-ref:PG::TextEncoder::Numeric)[TD](rdoc-ref:PG::TextDecoder::Numeric)
124+
* Boolean:
125+
[TE](rdoc-ref:PG::TextEncoder::Boolean)[TD](rdoc-ref:PG::TextDecoder::Boolean)[BE](rdoc-ref:PG::BinaryEncoder::Boolean)[BD](rdoc-ref:PG::BinaryDecoder::Boolean)
126+
* String:
127+
[TE](rdoc-ref:PG::TextEncoder::String)[TD](rdoc-ref:PG::TextDecoder::String)[BE](rdoc-ref:PG::BinaryEncoder::String)[BD](rdoc-ref:PG::BinaryDecoder::String)
128+
* Bytea:
129+
[TE](rdoc-ref:PG::TextEncoder::Bytea)[TD](rdoc-ref:PG::TextDecoder::Bytea)[BE](rdoc-ref:PG::BinaryEncoder::Bytea)[BD](rdoc-ref:PG::BinaryDecoder::Bytea)
130+
* Base64:
131+
[TE](rdoc-ref:PG::TextEncoder::ToBase64)[TD](rdoc-ref:PG::TextDecoder::FromBase64)[BE](rdoc-ref:PG::BinaryEncoder::FromBase64)[BD](rdoc-ref:PG::BinaryDecoder::ToBase64)
132+
* Timestamp:
133+
* TE:
134+
[現地時間](rdoc-ref:PG::TextEncoder::TimestampWithoutTimeZone)[UTC](rdoc-ref:PG::TextEncoder::TimestampUtc)[タイムゾーン付き](rdoc-ref:PG::TextEncoder::TimestampWithTimeZone)
135+
* TD:
136+
[現地時間](rdoc-ref:PG::TextDecoder::TimestampLocal)[UTC](rdoc-ref:PG::TextDecoder::TimestampUtc)[UTCから現地時間へ](rdoc-ref:PG::TextDecoder::TimestampUtcToLocal)
137+
* BD:
138+
[現地時間](rdoc-ref:PG::BinaryDecoder::TimestampLocal)[UTC](rdoc-ref:PG::BinaryDecoder::TimestampUtc)[UTCから現地時間へ](rdoc-ref:PG::BinaryDecoder::TimestampUtcToLocal)
139+
* Date:
140+
[TE](rdoc-ref:PG::TextEncoder::Date)[TD](rdoc-ref:PG::TextDecoder::Date)
141+
* JSONとJSONB:
142+
[TE](rdoc-ref:PG::TextEncoder::JSON)[TD](rdoc-ref:PG::TextDecoder::JSON)
143+
* Inet:
144+
[TE](rdoc-ref:PG::TextEncoder::Inet)[TD](rdoc-ref:PG::TextDecoder::Inet)
145+
* Array:
146+
[TE](rdoc-ref:PG::TextEncoder::Array)[TD](rdoc-ref:PG::TextDecoder::Array)
147+
* 複合型(「行」や「レコード」などとも言います):[TE](rdoc-ref:PG::TextEncoder::Record)[TD](rdoc-ref:PG::TextDecoder::Record)
148+
149+
カラム型として使われていませんが以下のテキスト形式もエンコードできます。
150+
151+
* COPYの入出力データ:[TE](rdoc-ref:PG::TextEncoder::CopyRow)[TD](rdoc-ref:PG::TextDecoder::CopyRow)
152+
* SQL文字列に挿入するリテラル:[TE](rdoc-ref:PG::TextEncoder::QuotedLiteral)
153+
* SQLの識別子:
154+
[TE](rdoc-ref:PG::TextEncoder::Identifier)[TD](rdoc-ref:PG::TextDecoder::Identifier)
155+
156+
### PG::TypeMapとその派生 (ext/pg_type_map*.c, lib/pg/type_map*.rb)
157+
158+
TypeMapはエンコーダーまたはデコーダーのどちらによってどの値を変換するかを定義します。様々な型の対応付け戦略があるので、このクラスにはいくつかの派生が実装されています。型変換の特有の需要に合わせてそれらの派生から選んで調整を加えることができます。既定の型の対応付けはPG::TypeMapAllStringsです。
159+
160+
型の対応付けは、結果の集合それぞれに対し、接続毎ないしクエリ毎に割り当てることができます。型の対応付けはCOPYの入出力データストリーミングでも使うことができます。PG::Connection#copy_dataを参照してください。
161+
162+
以下の基底となる型の対応付けが使えます。
163+
164+
* PG::TypeMapAllStrings - 全ての値と文字列について相互にエンコードとデコードを行います(既定)
165+
* PG::TypeMapByClass - 送信する値のクラスに基づいてエンコーダーを選択します
166+
* PG::TypeMapByColumn - カラムの順番によってエンコーダーとデコーダーを選択します
167+
* PG::TypeMapByOid - PostgreSQLのOIDデータ型によってデコーダーを選択します
168+
* PG::TypeMapInRuby - Rubyで独自の型の対応付けを定義します
169+
170+
以下の型の対応付けはPG::BasicTypeRegistry由来の型の対応付けが入った状態になっています。
171+
172+
* PG::BasicTypeMapForResults -
173+
PG::TypeMapByOidによくあるPostgreSQLカラム型用にデコーダーが入った状態になっています
174+
* PG::BasicTypeMapBasedOnResult -
175+
PG::TypeMapByOidによくあるPostgreSQLカラム型用のエンコーダーが入った状態になっています
176+
* PG::BasicTypeMapForQueries -
177+
PG::TypeMapByClassによくあるRubyの値クラス用にエンコーダーが入った状態になっています
178+
179+
180+
## スレッド対応
181+
182+
PGには個々のスレッドが別々のPG::Connectionオブジェクトを同時に使えるという点でスレッド安全性があります。しかし1つ以上のスレッドから同時にPgのオブジェクトにアクセスすると安全ではありません。そのため必ず、毎回新しいスレッドを作るときに新しいデータベースサーバー接続を開くか、スレッド安全性のある方法で接続を管理するActiveRecordのようなラッパーライブラリを使うようにしてください。
183+
184+
以下のようなメッセージが標準エラー出力に表示された場合、恐らく複数のスレッドが1つの接続を使っています。
185+
186+
message type 0x31 arrived from server while idle
187+
message type 0x32 arrived from server while idle
188+
message type 0x54 arrived from server while idle
189+
message type 0x43 arrived from server while idle
190+
message type 0x5a arrived from server while idle
191+
192+
193+
## Fiber IOスケジューラー対応
194+
195+
PgはRuby-3.0で導入された`Fiber.scheduler`に完全に対応しています。`Fiber.scheduler`のWindows対応についてはRuby-3.1以降で使えます。`Fiber.scheduler`が走らせているスレッドに登録されている場合、起こりうる全てのブロッキングIO操作はそのスケジューラーを経由します。同期的であったりブロックしたりするメソッド呼び出しについてもpgが内部的に非同期のlibpqインターフェースを使っているのはそれが理由です。またlibpqの組み込み関数に代えてRubyのDNS解決を使っています。
196+
197+
内部的にPgは常にlibpqのノンブロッキング接続モードを使います。それからブロッキングモードで走っているように振舞いますが、もし`Fiber.scheduler`が登録されていれば全てのブロッキングIOはそのスケジューラーを通じてRubyで制御されます。`PG::Connection.setnonblocking(true)`が呼ばれたらノンブロッキング状態が有効になったままになりますが、それ以降のブロッキング状態の制御が無効になるので、呼び出しているプログラムはブロッキング状態を自力で制御しなければなりません。
198+
199+
この規則の1つの例外には、`PG::Connection#lo_create`や外部ライブラリを使う認証メソッド(GSSAPI認証など)のような、大きめのオブジェクト用のメソッドがあります。これらは`Fiber.scheduler`と互換性がないため、ブロッキング状態は登録されたIOスケジューラに渡されません。つまり操作は適切に実行されますが、IO待ち状態に別のIOを扱うFiberから使用を切り替えてくることができなくなります。
200+
201+
202+
## 貢献
203+
204+
バグを報告したり機能を提案したりGitでソースをチェックアウトしたりするには[プロジェクトページをご確認ください](https://github.com/ged/ruby-pg)
205+
206+
ソースをチェックアウトしたあとは全ての依存関係をインストールします。
207+
208+
$ bundle install
209+
210+
拡張ファイル、パッケージファイル、テストデータベースを一掃するには次のようにします。
211+
212+
$ rake clean
213+
214+
拡張をコンパイルするには次のようにします。
215+
216+
$ rake compile
217+
218+
パスにある`initdb`といったPostgreSQLのツールを使ってテストやスペックを走らせるには次のようにします。
219+
220+
$ PATH=$PATH:/usr/lib/postgresql/14/bin rake test
221+
222+
あるいは行番号を使って特定のテストを走らせるには次のようにします。
223+
224+
$ PATH=$PATH:/usr/lib/postgresql/14/bin rspec -Ilib -fd spec/pg/connection_spec.rb:455
225+
226+
APIドキュメントを生成するには次のようにします。
227+
228+
$ rake docs
229+
230+
必ず全てのバグと新機能についてテストを使って検証してください。
231+
232+
現在のメンテナはMichael Granger <[email protected]>とLars Kanis
233+
234+
235+
236+
## 著作権
237+
238+
Copyright (c) 1997-2022 by the authors.
239+
240+
* Jeff Davis <[email protected]>
241+
* Guy Decoux (ts) <[email protected]>
242+
* Michael Granger <[email protected]>
243+
* Lars Kanis <[email protected]>
244+
* Dave Lee
245+
* Eiji Matsumoto <[email protected]>
246+
* Yukihiro Matsumoto <[email protected]>
247+
* Noboru Saitou <[email protected]>
248+
249+
You may redistribute this software under the same terms as Ruby itself; see
250+
https://www.ruby-lang.org/en/about/license.txt or the BSDL file in the
251+
source for details.
252+
(参考訳:このソフトウェアはRuby自体と同じ条件の元で再配布することができます。詳細については
253+
https://www.ruby-lang.org/en/about/license.txt やソース中のBSDLファイルを参照してください)
254+
255+
Portions of the code are from the PostgreSQL project, and are distributed "
256+
"under the terms of the PostgreSQL license, included in the file POSTGRES.
257+
(参考訳:コードの一部はPostgreSQLプロジェクトから来ており、PostgreSQLの使用許諾の条件の元で配布されます。ファイルPOSTGRESに含まれています)
258+
259+
Portions copyright LAIKA, Inc.
260+
261+
262+
## 謝辞
263+
264+
長年にわたって貢献してくださった方々についてはContributors.rdocを参照してください。
265+
266+
ruby-listとruby-devメーリングリストの方々に感謝します。またPostgreSQLを開発された方々へも謝意を表します。

README.ja.rdoc

Lines changed: 0 additions & 13 deletions
This file was deleted.

Rakefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,13 @@ file 'ext/pg_errors.c' => ['ext/errorcodes.def'] do
103103
# trigger compilation of changed errorcodes.def
104104
touch 'ext/pg_errors.c'
105105
end
106+
107+
desc "Translate readme"
108+
task :translate do
109+
cd "translation" do
110+
# po4a's lexer might change, so record its version for reference
111+
sh "po4a --version > .po4a-version"
112+
113+
sh "po4a po4a.cfg"
114+
end
115+
end

translation/.po4a-version

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
po4a version 0.68.
2+
Written by Martin Quinson and Denis Barbier.
3+
4+
Copyright © 2002-2022 Software in the Public Interest, Inc.
5+
This is free software; see source code for copying
6+
conditions. There is NO warranty; not even for
7+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

0 commit comments

Comments
 (0)