OSDN Git Service

c42c20ee79593cee2c5287411eca1f5f54d15d2b
[linuxjm/LDP_man-pages.git] / draft / man3 / dbopen.3
1 .\" Copyright (c) 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)dbopen.3    8.5 (Berkeley) 1/2/94
33 .\"
34 .\" Japanese Version Copyright (c) 1999 Shouichi Saito
35 .\"     all rights reserved.
36 .\" Translated Thu Jul 22 00:00:00 JST 1999
37 .\"     by Shouichi Saito <ss236rx@ymg.urban.ne.jp>
38 .\" Proofed Tue Aug 19 1999 by NAKANO Takeo <nakano@apm.seikei.ac.jp>
39 .\"
40 .\"WORD:        descriptor      デスクリプタ
41 .TH DBOPEN 3 1994-01-02 "" "Linux Programmer's Manual"
42 .UC 7
43 .\"O .SH NAME
44 .SH 名前
45 .\"O dbopen \- database access methods
46 dbopen \- データベースアクセスメソッド
47 .\"O .SH SYNOPSIS
48 .SH 書式
49 .nf
50 .B #include <sys/types.h>
51 .B #include <limits.h>
52 .B #include <db.h>
53
54 .BI "DB *dbopen(const char *" file ", int " flags ", int " mode \
55 ", DBTYPE " type ,
56 .BI "           const void *" openinfo );
57 .fi
58 .\"O .SH DESCRIPTION
59 .SH 説明
60 .\"O .BR dbopen ()
61 .\"O is the library interface to database files.
62 .BR dbopen ()
63 はデータベースファイルに対するライブラリインターフェースである。
64 .\"O The supported file formats are btree, hashed and UNIX file oriented.
65 .\"O The btree format is a representation of a sorted, balanced tree structure.
66 .\"O The hashed format is an extensible, dynamic hashing scheme.
67 .\"O The flat-file format is a byte stream file with fixed or variable length
68 .\"O records.
69 サポートされているファイルフォーマットは btree, hash,
70 UNIX ファイルに指向したフォーマット, の 3 つである。
71 btree フォーマットは、ソートされたバランスツリー構造である。
72 hashed フォーマットは、拡張可能な動的 hash スキームである。
73 フラットファイル (flat-file) フォーマットは、
74 固定長/可変長のレコードからなるバイトストリームファイルである。
75 .\"O The formats and file format specific information are described in detail
76 .\"O in their respective manual pages
77 .\"O .BR btree (3),
78 .\"O .BR hash (3)
79 .\"O and
80 .\"O .BR recno (3).
81 それぞれのフォーマットと、ファイルフォーマットに特有の情報は
82 それぞれ対応するマニュアルページ
83 .BR btree (3),
84 .BR hash (3),
85 .BR recno (3)
86 に詳細に記述されている。
87 .PP
88 .\"O .BR dbopen ()
89 .\"O opens
90 .\"O .I file
91 .\"O for reading and/or writing.
92 .BR dbopen ()
93
94 .I file
95 を読み込み (読み書き) するためにオープンする。
96 .\"O Files never intended to be preserved on disk may be created by setting
97 .\"O the
98 .\"O .I file
99 .\"O argument to NULL.
100 .I file
101 引き数を NULL にすれば、
102 ディスク上に保存したくないファイルを作ることもできる。
103 .PP
104 .\"O The
105 .\"O .I flags
106 .\"O and
107 .\"O .I mode
108 .\"O arguments are as specified to the
109 .\"O .BR open (2)
110 .\"O routine, however, only the
111 .\"O .BR O_CREAT ,
112 .\"O .BR O_EXCL ,
113 .\"O .BR O_EXLOCK ,
114 .\"O .BR O_NONBLOCK ,
115 .\"O .BR O_RDONLY ,
116 .\"O .BR O_RDWR ,
117 .\"O .BR O_SHLOCK ,
118 .\"O and
119 .\"O .B O_TRUNC
120 .\"O flags are meaningful.
121 .I flags
122
123 .I mode
124 引き数は
125 .BR open (2)
126 ルーチンで指定するのと同様である。ただし
127 意味を持つフラグは
128 .BR O_CREAT ,
129 .BR O_EXCL ,
130 .BR O_EXLOCK ,
131 .BR O_NONBLOCK ,
132 .BR O_RDONLY ,
133 .BR O_RDWR ,
134 .BR O_SHLOCK ,
135 .B O_TRUNC
136 だけである。
137 .\"O (Note, opening a database file
138 .\"O .B O_WRONLY
139 .\"O is not possible.)
140 (注意:
141 .B O_WRONLY
142 でデータベースファイルを開く事は出来ない)
143 .\"Three additional options may be specified by ORing
144 .\"them into the
145 .\".I flags
146 .\"argument.
147 .\".TP
148 .\"DB_LOCK
149 .\"Do the necessary locking in the database to support concurrent access.
150 .\"If concurrent access isn't needed or the database is read-only this
151 .\"flag should not be set, as it tends to have an associated performance
152 .\"penalty.
153 .\".TP
154 .\"DB_SHMEM
155 .\"Place the underlying memory pool used by the database in shared
156 .\"memory.
157 .\"Necessary for concurrent access.
158 .\".TP
159 .\"DB_TXN
160 .\"Support transactions in the database.
161 .\"The DB_LOCK and DB_SHMEM flags must be set as well.
162 .PP
163 .\"O The
164 .\"O .I type
165 .\"O argument is of type
166 .\"O .I DBTYPE
167 .\"O (as defined in the
168 .\"O .I <db.h>
169 .\"O include file) and
170 .\"O may be set to
171 .\"O .BR DB_BTREE ,
172 .\"O .BR DB_HASH ,
173 .\"O or
174 .\"O .BR DB_RECNO .
175 .I type
176 引き数は
177 .I DBTYPE
178 型である (インクルードファイル
179 .I <db.h>
180 で定義されている)。
181 .BR DB_BTREE ,
182 .BR DB_HASH ,
183 .B DB_RECNO
184 のいずれかをセットできる。
185 .PP
186 .\"O The
187 .\"O .I openinfo
188 .\"O argument is a pointer to an access method specific structure described
189 .\"O in the access method's manual page.
190 .\"O If
191 .\"O .I openinfo
192 .\"O is NULL, each access method will use defaults appropriate for the system
193 .\"O and the access method.
194 .I openinfo
195 引き数はアクセスメソッドに固有な構造体へのポインタである。
196 それぞれの構造体に関しては各アクセスメソッドの
197 マニュアルページに記述されている。
198 .I openinfo
199 が NULL の場合、それぞれのアクセスメソッドとシステムとに適合した
200 デフォルトが用いられる。
201 .PP
202 .\"O .BR dbopen ()
203 .\"O returns a pointer to a
204 .\"O .I DB
205 .\"O structure on success and NULL on error.
206 .\"O The
207 .\"O .I DB
208 .\"O structure is defined in the
209 .\"O .I <db.h>
210 .\"O include file, and contains at
211 .\"O least the following fields:
212 .BR dbopen ()
213 は、成功した場合
214 .I DB
215 構造体へのポインタを、エラーの場合 NULL を返す。
216 .I DB
217 構造体は
218 .I <db.h>
219 インクルードファイルの中で定義されており、
220 少なくとも以下のようなフィールドを持っている。
221 .sp
222 .in +4n
223 .nf
224 typedef struct {
225     DBTYPE type;
226     int (*close)(const DB *db);
227     int (*del)(const DB *db, const DBT *key, unsigned int flags);
228     int (*fd)(const DB *db);
229     int (*get)(const DB *db, DBT *key, DBT *data,
230                unsigned int flags);
231     int (*put)(const DB *db, DBT *key, const DBT *data,
232                unsigned int flags);
233     int (*sync)(const DB *db, unsigned int flags);
234     int (*seq)(const DB *db, DBT *key, DBT *data,
235                unsigned int flags);
236 } DB;
237 .fi
238 .in
239 .PP
240 .\"O These elements describe a database type and a set of functions performing
241 .\"O various actions.
242 .\"O These functions take a pointer to a structure as returned by
243 .\"O .BR dbopen (),
244 .\"O and sometimes one or more pointers to key/data structures and a flag value.
245 各要素には、データベースのタイプと、
246 様々な動作をする関数のセットが記述されている。
247 これらの関数は
248 .BR dbopen ()
249 によって返される構造体へのポインタを引き数にとる。
250 キー/データ構造体へのポインタやフラグ値を取るものもある。
251 .TP
252 .I type
253 .\"O The type of the underlying access method (and file format).
254 用いられているアクセスメソッド (とファイルフォーマット) の型。
255 .TP
256 .I close
257 .\"O A pointer to a routine to flush any cached information to disk, free any
258 .\"O allocated resources, and close the underlying file(s).
259 キャッシュされた情報をディスクに掃きだすためのルーチンへのポインタ。
260 割り当てられたリソースを解放し、利用したファイル(群)をクローズする。
261 .\"O Since key/data pairs may be cached in memory, failing to sync the file
262 .\"O with a
263 .\"O .I close
264 .\"O or
265 .\"O .I sync
266 .\"O function may result in inconsistent or lost information.
267 キー/データ対がメモリにキャッシュされている場合、
268 .I close
269
270 .I sync
271 関数での同期に失敗すると、情報に矛盾が生じるか情報を失う可能性がある。
272 .\"O .I close
273 .\"O routines return \-1 on error (setting
274 .\"O .IR errno )
275 .\"O and 0 on success.
276 .I close
277 ルーチンはエラーの場合 \-1 を返し
278 .RI ( errno
279 をセットする)、成功すると 0 を返す。
280 .TP
281 .I del
282 .\"O A pointer to a routine to remove key/data pairs from the database.
283 データベースからキー/データ対を削除するルーチンへのポインタ。
284 .IP
285 .\"O The argument
286 .\"O .I flag
287 .\"O may be set to the following value:
288 .I flag
289 引き数は次の値がセットできる。
290 .RS
291 .TP
292 .B R_CURSOR
293 .\"O Delete the record referenced by the cursor.
294 .\"O The cursor must have previously been initialized.
295 カーソル (cursor) が参照しているレコードを削除する。
296 カーソルは前もって初期化されていなくてはならない。
297 .RE
298 .IP
299 .\"O .I delete
300 .\"O routines return \-1 on error (setting
301 .\"O .IR errno ),
302 .\"O 0 on success, and 1 if the specified
303 .\"O .I key
304 .\"O was not in the file.
305 .I delete
306 ルーチンはエラーの場合 \-1 を返し
307 .RI ( errno
308 をセットする)、成功すると 0 を返す。また指定の
309 .I key
310 がファイル中に無い場合 1 を返す。
311 .TP
312 .I fd
313 .\"O A pointer to a routine which returns a file descriptor representative
314 .\"O of the underlying database.
315 用いているデータベースのファイルデスクリプタを返すルーチン
316 へのポインタ。
317 .\"O A file descriptor referencing the same file will be returned to all
318 .\"O processes which call
319 .\"O .BR dbopen ()
320 .\"O with the same
321 .\"O .I file
322 .\"O name.
323 同じファイル名
324 .I file
325
326 .BR dbopen ()
327 を呼び出した全てのプロセスに対して、
328 そのファイルを示す単一のファイルデスクリプタが返される。
329 .\"O This file descriptor may be safely used as an argument to the
330 .\"O .BR fcntl (2)
331 .\"O and
332 .\"O .BR flock (2)
333 .\"O locking functions.
334 このファイルデスクリプタはロック関数
335 .BR fcntl (2)
336
337 .BR flock (2)
338 への引き数として安全に使用できる。
339 .\"O The file descriptor is not necessarily associated with any of the
340 .\"O underlying files used by the access method.
341 .\"O No file descriptor is available for in memory databases.
342 .\"O .I fd
343 .\"O routines return \-1 on error (setting
344 .\"O .IR errno ),
345 .\"O and the file descriptor on success.
346 このファイルデスクリプタは、必ずしもアクセスメソッドで
347 用いられているファイルのいずれかに関連づけられていなくても良い。
348 メモリ内のデータベースにはファイルデスクリプタは無い。
349 .I fd
350 ルーチンはエラーの場合 \-1 を返し
351 .RI ( errno
352 をセットする)、成功するとファイルデスクリプタを返す。
353 .TP
354 .I get
355 .\"O A pointer to a routine which is the interface for keyed retrieval from
356 .\"O the database.
357 データベースからキーを用いてデータを取り出すための
358 ルーチンへのポインタ。
359 .\"O The address and length of the data associated with the specified
360 .\"O .I key
361 .\"O are returned in the structure referenced by
362 .\"O .IR data .
363 指定した
364 .I key
365 に関連づけられたデータのアドレスと長さが
366 .I data
367 が参照する構造体に返される。
368 .\"O .I get
369 .\"O routines return \-1 on error (setting
370 .\"O .IR errno ),
371 .\"O 0 on success, and 1 if the
372 .\"O .I key
373 .\"O was not in the file.
374 .I get
375 ルーチンはエラーの場合 \-1 を返し
376 .RI ( errno
377 をセットする)、成功すると 0 を返す。また
378 .I key
379 がファイル中に無い場合 1 を返す。
380 .TP
381 .I put
382 .\"O A pointer to a routine to store key/data pairs in the database.
383 キー/データ対をデータベースに納めるルーチンへのポインタ。
384 .IP
385 .\"O The argument
386 .\"O .I flag
387 .\"O may be set to one of the following values:
388 .I flag
389 引き数には次の値のうちのどれか一つがセットできる。
390 .RS
391 .TP
392 .B R_CURSOR
393 .\"O Replace the key/data pair referenced by the cursor.
394 .\"O The cursor must have previously been initialized.
395 カーソルが参照しているキー/データ対を置き換える。
396 カーソルは前もって初期化されている必要がある。
397 .TP
398 .B R_IAFTER
399 .\"O Append the data immediately after the data referenced by
400 .\"O .IR key ,
401 .\"O creating a new key/data pair.
402 .\"O The record number of the appended key/data pair is returned in the
403 .\"O .I key
404 .\"O structure.
405 .\"O (Applicable only to the
406 .\"O .B DB_RECNO
407 .\"O access method.)
408 .I key
409 で参照されるデータの直後に、
410 新しいキー/データ対を作ってデータを追加する。
411 追加されたキー/データ対のレコード番号は
412 .I key
413 構造体に返される。
414 .RB ( DB_RECNO
415 アクセス方法でのみ使える。)
416 .TP
417 .B R_IBEFORE
418 .\"O Insert the data immediately before the data referenced by
419 .\"O .IR key ,
420 .\"O creating a new key/data pair.
421 .\"O The record number of the inserted key/data pair is returned in the
422 .\"O .I key
423 .\"O structure.
424 .\"O (Applicable only to the
425 .\"O .B DB_RECNO
426 .\"O access method.)
427 .I key
428 で参照されるデータの直前に、
429 新しいキー/データ対を作ってデータを挿入する。
430 追加されたキー/データ対のレコード番号は
431 .I key
432 構造体に返される。
433 .RB ( DB_RECNO
434 アクセスメソッドでのみ使える。)
435 .TP
436 .B R_NOOVERWRITE
437 .\"O Enter the new key/data pair only if the key does not previously exist.
438 キーがあらかじめ存在しない場合に限り、新しいキー/データ対をいれる。
439 .TP
440 .B R_SETCURSOR
441 .\"O Store the key/data pair, setting or initializing the position of the
442 .\"O cursor to reference it.
443 .\"O (Applicable only to the
444 .\"O .B DB_BTREE
445 .\"O and
446 .\"O .B DB_RECNO
447 .\"O access methods.)
448 キー/データ対を納め、それを指すようにカーソル位置をセットあるいは初期
449 化する。
450 .RB ( DB_BTREE
451
452 .B DB_RECNO
453 アクセスメソッドでのみ使える。)
454 .RE
455 .IP
456 .\"O .B R_SETCURSOR
457 .\"O is available only for the
458 .\"O .B DB_BTREE
459 .\"O and
460 .\"O .B DB_RECNO
461 .\"O access
462 .\"O methods because it implies that the keys have an inherent order
463 .\"O which does not change.
464 .B R_SETCURSOR
465
466 .B DB_BTREE
467
468 .B DB_RECNO
469 アクセスメソッドでしか利用できない。
470 なぜなら
471 .B R_SETCURSOR
472 を用いるには、変更される事の無い固有の順序をキー
473 が持っていなければならないからである。
474 .IP
475 .\"O .B R_IAFTER
476 .\"O and
477 .\"O .B R_IBEFORE
478 .\"O are available only for the
479 .\"O .B DB_RECNO
480 .\"O access method because they each imply that the access method is able to
481 .\"O create new keys.
482 .\"O This is only true if the keys are ordered and independent, record numbers
483 .\"O for example.
484 .B R_IAFTER
485
486 .B R_IBEFORE
487
488 .B DB_RECNO
489 アクセスメソッドでしか利用できない。
490 これらを実現するには、アクセスメソッドが
491 新しいキーを作れなければならないからである。
492 これが成立するのは、例えば、順序づけらた独立なレコード番号が
493 キーになっているような場合だけである。
494 .IP
495 .\"O The default behavior of the
496 .I put
497 .\"O routines is to enter the new key/data pair, replacing any previously
498 .\"O existing key.
499 ルーチンのデフォルトの動作は、新しいキー/データ対を
500 既に存在するキーを置き換える事て格納する動作である。
501 .IP
502 .I put
503 .\"O routines return \-1 on error (setting
504 .\"O .IR errno ),
505 .\"O 0 on success, and 1 if the
506 .\"O .B R_NOOVERWRITE
507 .\"O .I flag
508 .\"O was set and the key already exists in the file.
509 ルーチンはエラーの場合 \-1 を返し
510 .RI ( errno
511 をセットする)、成功すると 0 を返す。また
512 .I flag
513
514 .B R_NOOVERWRITE
515 がセットされていてキーが既に存在する場合 1 を返す。
516 .TP
517 .I seq
518 .\"O A pointer to a routine which is the interface for sequential
519 .\"O retrieval from the database.
520 .\"O The address and length of the key are returned in the structure
521 .\"O referenced by
522 .\"O .IR key ,
523 .\"O and the address and length of the data are returned in the
524 .\"O structure referenced
525 .\"O by
526 .\"O .IR data .
527 データベースからシーケンシャルにデータを取り出すための
528 ルーチンへのポインタ。
529 キーのアドレスと長さが
530 .I key
531 が参照する構造体に返される。データのアドレスと長さが
532 .I data
533 が参照する構造体に返される。
534 .IP
535 .\"O Sequential key/data pair retrieval may begin at any time, and the
536 .\"O position of the "cursor" is not affected by calls to the
537 シーケンシャルなキー/データ対の取得はいつでも行える。また
538 「カーソル」の位置は
539 .IR del ,
540 .IR get ,
541 .IR put ,
542 .\"O or
543 .I sync
544 .\"O routines.
545 ルーチンの呼び出しには影響されない。
546 .\"O Modifications to the database during a sequential scan will be reflected
547 .\"O in the scan, that is,
548 .\"O records inserted behind the cursor will not be returned
549 .\"O while records inserted in front of the cursor will be returned.
550 シーケンシャルなスキャンの途中に行われたデータベースへの変更は
551 スキャンに反映される。すなわち、カーソルの後ろに挿入されたレコードは
552 返されないが、カーソルの前に挿入されたレコードは返される。
553 .IP
554 .\"O The flag value
555 .\"O .B must
556 .\"O be set to one of the following values:
557 フラグ値には\fB必ず\fP以下に示すうちの
558 どれか一つをセットしなければならない。
559 .RS
560 .TP
561 .B R_CURSOR
562 .\"O The data associated with the specified key is returned.
563 .\"O This differs from the
564 .\"O .I get
565 .\"O routines in that it sets or initializes the cursor to the location of
566 .\"O the key as well.
567 .\"O (Note, for the
568 .\"O .B DB_BTREE
569 .\"O access method, the returned key is not necessarily an
570 .\"O exact match for the specified key.
571 .\"O The returned key is the smallest key greater than or equal to the specified
572 .\"O key, permitting partial key matches and range searches.)
573 指定したキーに関連づけられたデータが返される。
574 .I get
575 ルーチンとの違いは、カーソルがキーの位置にセットあるいは
576 初期化される点である。
577 (注意:
578 .B DB_BTREE
579 アクセス方法では、返されたキーが
580 必ずしも指定したキーに正しくマッチしないかもしれない。
581 返されたキーは、指定されたキーに等しいかより大きいもののうち
582 最小のものになる
583 (部分キーマッチか範囲検索が許可されている場合)。)
584 .TP
585 .B R_FIRST
586 .\"O The first key/data pair of the database is returned, and the cursor
587 .\"O is set or initialized to reference it.
588 データベースの最初のキー/データ対が返される。
589 カーソルはそれを参照するようにセットまたは初期化される。
590 .TP
591 .B R_LAST
592 .\"O The last key/data pair of the database is returned, and the cursor
593 .\"O is set or initialized to reference it.
594 .\"O (Applicable only to the
595 .\"O .B DB_BTREE
596 .\"O and
597 .\"O .B DB_RECNO
598 .\"O access methods.)
599 データベースの最後のキー/データ対が返される。カーソルはそれを参照する
600 ようにセットまたは初期化される。
601 .RB ( DB_BTREE
602
603 .B DB_RECNO
604 アクセスメソッドだけで使える。)
605 .TP
606 .B R_NEXT
607 .\"O Retrieve the key/data pair immediately after the cursor.
608 .\"O If the cursor is not yet set, this is the same as the
609 .\"O .B R_FIRST
610 .\"O flag.
611 カーソル直後のキー/データ対を取得する。
612 カーソルがセットされていない場合は
613 .B R_FIRST
614 フラグと同じ。
615 .TP
616 .B R_PREV
617 .\"O Retrieve the key/data pair immediately before the cursor.
618 .\"O If the cursor is not yet set, this is the same as the
619 .\"O .B R_LAST
620 .\"O flag.
621 .\"O (Applicable only to the
622 .\"O .B DB_BTREE
623 .\"O and
624 .\"O .B DB_RECNO
625 .\"O access methods.)
626 カーソル直前のキー/データ対を取得する。
627 カーソルがセットされていない場合は
628 .B R_LAST
629 フラグと同じ。
630 .RB ( DB_BTREE
631
632 .B DB_RECNO
633 アクセスメソッドだけで使える。)
634 .RE
635 .IP
636 .\"O .B R_LAST
637 .\"O and
638 .\"O .B R_PREV
639 .\"O are available only for the
640 .\"O .B DB_BTREE
641 .\"O and
642 .\"O .B DB_RECNO
643 .\"O access methods because they each imply that the keys have an inherent
644 .\"O order which does not change.
645 .B R_LAST
646
647 .B R_PREV
648 は、
649 .B DB_BTREE
650
651 .B DB_RECNO
652 アクセス方法でしか使えない。
653 なぜなら
654 .B R_SETCURSOR
655 を用いるには、変更される事の無い固有の順序をキーが持っていなければならないからである。
656 .IP
657 .I seq
658 .\"O routines return \-1 on error (setting
659 .\"O .IR errno ),
660 .\"O 0 on success and 1 if there are no key/data pairs less than or greater
661 .\"O than the specified or current key.
662 .\"O If the
663 .\"O .B DB_RECNO
664 .\"O access method is being used, and if the database file
665 .\"O is a character special file and no complete key/data pairs are currently
666 .\"O available, the
667 .\"O .I seq
668 .\"O routines return 2.
669 ルーチンはエラーの場合 \-1 を返し
670 .RI ( errno
671 をセットする)、
672 成功の場合 0 を返す。
673 指定したキーやカレントキーよりも大きい/小さいキー/データ対がない場合は
674 1 を返す。
675 .B DB_RECNO
676 アクセスメソッドを使っていて、
677 かつデータベースファイルが文字型のスペシャルファイルで、
678 完成しているキー/データ対が無い場合には、
679 .I seq
680 ルーチンは 2 を返す。
681 .TP
682 .I sync
683 .\"O A pointer to a routine to flush any cached information to disk.
684 .\"O If the database is in memory only, the
685 .\"O .I sync
686 .\"O routine has no effect and will always succeed.
687 キャッシュされた情報をディスクに掃き出すルーチンへのポインタ。
688 データベースがメモリの中だけにある場合、
689 .I sync
690 ルーチンは何の効果もなく常に成功する。
691 .IP
692 .\"O The flag value may be set to the following value:
693 flag には以下の値がセットできる。
694 .RS
695 .TP
696 .B R_RECNOSYNC
697 .\"O If the
698 .\"O .B DB_RECNO
699 .\"O access method is being used, this flag causes
700 .\"O the sync routine to apply to the btree file which underlies the
701 .\"O recno file, not the recno file itself.
702 .B DB_RECNO
703 アクセスメソッドを使っている場合に
704 このフラグをセットすると、
705 recno ファイルそのものにではなく、
706 そのベースになっている btree ファイルに sync が行われる。
707 .\"O (See the
708 .\"O .I bfname
709 .\"O field of the
710 .\"O .BR recno (3)
711 .\"O manual page for more information.)
712 (詳細は
713 .BR recno (3)
714 マニュアルページで
715 .I bfname
716 フィールドを説明している部分を参照のこと。)
717 .RE
718 .IP
719 .I sync
720 .\"O routines return \-1 on error (setting
721 .\"O .IR errno )
722 .\"O and 0 on success.
723 ルーチンはエラーの場合 \-1 を返し
724 .RI ( errno
725 をセットする)、成功すると 0 を返す。
726 .\"O .SS "Key/Data Pairs"
727 .SS キー/データ対
728 .\"O Access to all file types is based on key/data pairs.
729 .\"O Both keys and data are represented by the following data structure:
730 全てのファイルタイプにおいて、
731 キー/データ対をベースにしてアクセスが行われる。
732 キーとデータのいずれも、次のデータ構造で記述される。
733 .in +4n
734 .nf
735
736 typedef struct {
737     void  *data;
738     size_t size;
739 } DBT;
740 .fi
741 .in
742 .\"O The elements of the
743 .\"O .I DBT
744 .\"O structure are defined as follows:
745 .I DBT
746 構造体の各要素は次のように定義されている。
747 .TP
748 .I data
749 .\"O A pointer to a byte string.
750 バイト文字列へのポインタ。
751 .TP
752 .I size
753 .\"O The length of the byte string.
754 バイト文字列の長さ。
755 .PP
756 .\"O Key and data byte strings may reference strings of essentially unlimited
757 .\"O length although any two of them must fit into available memory at the same
758 .\"O time.
759 キーとデータのバイト文字列は、
760 基本的には無制限の長さの文字列を参照できるが、
761 しかしいずれも使用可能なメモリに収まっていなくてはならない。
762 .\"O It should be noted that the access methods provide no guarantees about
763 .\"O byte string alignment.
764 アクセスメソッドはバイト文字列のアラインメントについては
765 何も保証していない事に注意すること。
766 .SH エラー
767 .\"O The
768 .\"O .BR dbopen ()
769 .\"O routine may fail and set
770 .\"O .I errno
771 .\"O for any of the errors specified for the library routines
772 .\"O .BR open (2)
773 .\"O and
774 .\"O .BR malloc (3)
775 .\"O or the following:
776 .BR dbopen ()
777 ルーチンは失敗するとライブラリルーチン
778 .BR open (2)
779
780 .BR malloc (3)
781 で指定されているエラーに応じた
782 .I errno
783 をセットする。あるいは以下をセットする。
784 .TP
785 .B [EFTYPE]
786 .\"O A file is incorrectly formatted.
787 ファイルが正しくフォーマットされていない。
788 .TP
789 .B [EINVAL]
790 .\"O A parameter has been specified (hash function, pad byte etc.) that is
791 .\"O incompatible with the current file specification or which is not
792 .\"O meaningful for the function (for example, use of the cursor without
793 .\"O prior initialization) or there is a mismatch between the version
794 .\"O number of file and the software.
795 指定したパラメータ(ハッシュ関数、バイト埋めなど)が現在のファイル仕様に
796 合っていない、パラメータが関数にとって無意味
797 (例えばあらかじめ初期化しないでカーソルを使うとか)、
798 ファイルとソフトウェアのバージョンが合っていない。
799 .PP
800 .\"O The
801 .I close
802 .\"O routines may fail and set
803 ルーチンは失敗するとライブラリルーチン
804 .\"O .I errno
805 .\"O for any of the errors specified for the library routines
806 .BR close (2),
807 .BR read (2),
808 .BR write (2),
809 .BR free (3),
810 .\"O or
811 .BR fsync (2)
812 で指定されているエラーに応じた
813 .I errno
814 をセットする。
815 .PP
816 .\"O The
817 .IR del ,
818 .IR get ,
819 .I put
820 .\"O and
821
822 .I seq
823 .\"O routines may fail and set
824 ルーチンは失敗するとライブラリルーチン
825 .\"O .I errno
826 .\"O for any of the errors specified for the library routines
827 .BR read (2),
828 .BR write (2),
829 .BR free (3),
830 .\"O or
831 .BR malloc (3)
832 で指定されているエラーに応じた
833 .I errno
834 をセットする。
835 .PP
836 .\"O The
837 .\"O .I fd
838 .\"O routines will fail and set
839 .\"O .I errno
840 .\"O to
841 .\"O .B ENOENT
842 .\"O for in memory databases.
843 .I fd
844 ルーチンはメモリ内データベースに対し失敗すると
845 .I errno
846
847 .B ENOENT
848 をセットする。
849 .PP
850 .\"O The
851 .I sync
852 .\"O routines may fail and set
853 ルーチンは失敗するとライブラリルーチン
854 .\"O .I errno
855 .\"O for any of the errors specified for the library routine
856 .BR fsync (2)
857 で指定されているエラーに応じた
858 .I errno
859 をセットする。
860 .SH バグ
861 .\"O The typedef
862 .\"O .I DBT
863 .\"O is a mnemonic for "data base thang", and was used
864 .\"O because no-one could think of a reasonable name that wasn't already used.
865 typedef
866 .I DBT
867 は ``data base thang''の略語であるが、これが使われているのは、
868 まだ使われていない妥当な名前が思い付かなかったためである。
869 .PP
870 .\"O The file descriptor interface is a kludge and will be deleted in a
871 .\"O future version of the interface.
872 ファイルデスクリプタを使ったやりとりはひどい代物であり、
873 将来のバージョンでは削除されるだろう。
874 .PP
875 .\"O None of the access methods provide any form of concurrent access,
876 .\"O locking, or transactions.
877 どのアクセスメソッドも、同時アクセス、ロック、トランザクション
878 の仕組みは備えていない。
879 .SH 関連項目
880 .BR btree (3),
881 .BR hash (3),
882 .BR mpool (3),
883 .BR recno (3)
884 .sp
885 .IR "LIBTP: Portable, Modular Transactions for UNIX" ,
886 Margo Seltzer, Michael Olson, USENIX proceedings, Winter 1992.