Fcntl.pm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package Fcntl;
  2. =head1 NAME
  3. Fcntl - load the C Fcntl.h defines
  4. =head1 SYNOPSIS
  5. use Fcntl;
  6. use Fcntl qw(:DEFAULT :flock);
  7. =head1 DESCRIPTION
  8. This module is just a translation of the C F<fcntl.h> file.
  9. Unlike the old mechanism of requiring a translated F<fcntl.ph>
  10. file, this uses the B<h2xs> program (see the Perl source distribution)
  11. and your native C compiler. This means that it has a
  12. far more likely chance of getting the numbers right.
  13. =head1 NOTE
  14. Only C<#define> symbols get translated; you must still correctly
  15. pack up your own arguments to pass as args for locking functions, etc.
  16. =head1 EXPORTED SYMBOLS
  17. By default your system's F_* and O_* constants (eg, F_DUPFD and
  18. O_CREAT) and the FD_CLOEXEC constant are exported into your namespace.
  19. You can request that the flock() constants (LOCK_SH, LOCK_EX, LOCK_NB
  20. and LOCK_UN) be provided by using the tag C<:flock>. See L<Exporter>.
  21. You can request that the old constants (FAPPEND, FASYNC, FCREAT,
  22. FDEFER, FEXCL, FNDELAY, FNONBLOCK, FSYNC, FTRUNC) be provided for
  23. compatibility reasons by using the tag C<:Fcompat>. For new
  24. applications the newer versions of these constants are suggested
  25. (O_APPEND, O_ASYNC, O_CREAT, O_DEFER, O_EXCL, O_NDELAY, O_NONBLOCK,
  26. O_SYNC, O_TRUNC).
  27. For ease of use also the SEEK_* constants (for seek() and sysseek(),
  28. e.g. SEEK_END) and the S_I* constants (for chmod() and stat()) are
  29. available for import. They can be imported either separately or using
  30. the tags C<:seek> and C<:mode>.
  31. Please refer to your native fcntl(2), open(2), fseek(3), lseek(2)
  32. (equal to Perl's seek() and sysseek(), respectively), and chmod(2)
  33. documentation to see what constants are implemented in your system.
  34. See L<perlopentut> to learn about the uses of the O_* constants
  35. with sysopen().
  36. See L<perlfunc/seek> and L<perlfunc/sysseek> about the SEEK_* constants.
  37. See L<perlfunc/stat> about the S_I* constants.
  38. =cut
  39. use strict;
  40. our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
  41. require Exporter;
  42. require XSLoader;
  43. @ISA = qw(Exporter);
  44. $VERSION = '1.13';
  45. XSLoader::load();
  46. # Named groups of exports
  47. %EXPORT_TAGS = (
  48. 'flock' => [qw(LOCK_SH LOCK_EX LOCK_NB LOCK_UN)],
  49. 'Fcompat' => [qw(FAPPEND FASYNC FCREAT FDEFER FDSYNC FEXCL FLARGEFILE
  50. FNDELAY FNONBLOCK FRSYNC FSYNC FTRUNC)],
  51. 'seek' => [qw(SEEK_SET SEEK_CUR SEEK_END)],
  52. 'mode' => [qw(S_ISUID S_ISGID S_ISVTX S_ISTXT
  53. _S_IFMT S_IFREG S_IFDIR S_IFLNK
  54. S_IFSOCK S_IFBLK S_IFCHR S_IFIFO S_IFWHT S_ENFMT
  55. S_IRUSR S_IWUSR S_IXUSR S_IRWXU
  56. S_IRGRP S_IWGRP S_IXGRP S_IRWXG
  57. S_IROTH S_IWOTH S_IXOTH S_IRWXO
  58. S_IREAD S_IWRITE S_IEXEC
  59. S_ISREG S_ISDIR S_ISLNK S_ISSOCK
  60. S_ISBLK S_ISCHR S_ISFIFO
  61. S_ISWHT S_ISENFMT
  62. S_IFMT S_IMODE
  63. )],
  64. );
  65. # Items to export into callers namespace by default
  66. # (move infrequently used names to @EXPORT_OK below)
  67. @EXPORT =
  68. qw(
  69. FD_CLOEXEC
  70. F_ALLOCSP
  71. F_ALLOCSP64
  72. F_COMPAT
  73. F_DUP2FD
  74. F_DUPFD
  75. F_EXLCK
  76. F_FREESP
  77. F_FREESP64
  78. F_FSYNC
  79. F_FSYNC64
  80. F_GETFD
  81. F_GETFL
  82. F_GETLK
  83. F_GETLK64
  84. F_GETOWN
  85. F_NODNY
  86. F_POSIX
  87. F_RDACC
  88. F_RDDNY
  89. F_RDLCK
  90. F_RWACC
  91. F_RWDNY
  92. F_SETFD
  93. F_SETFL
  94. F_SETLK
  95. F_SETLK64
  96. F_SETLKW
  97. F_SETLKW64
  98. F_SETOWN
  99. F_SHARE
  100. F_SHLCK
  101. F_UNLCK
  102. F_UNSHARE
  103. F_WRACC
  104. F_WRDNY
  105. F_WRLCK
  106. O_ACCMODE
  107. O_ALIAS
  108. O_APPEND
  109. O_ASYNC
  110. O_BINARY
  111. O_CREAT
  112. O_DEFER
  113. O_DIRECT
  114. O_DIRECTORY
  115. O_DSYNC
  116. O_EXCL
  117. O_EXLOCK
  118. O_LARGEFILE
  119. O_NDELAY
  120. O_NOCTTY
  121. O_NOFOLLOW
  122. O_NOINHERIT
  123. O_NONBLOCK
  124. O_RANDOM
  125. O_RAW
  126. O_RDONLY
  127. O_RDWR
  128. O_RSRC
  129. O_RSYNC
  130. O_SEQUENTIAL
  131. O_SHLOCK
  132. O_SYNC
  133. O_TEMPORARY
  134. O_TEXT
  135. O_TRUNC
  136. O_WRONLY
  137. );
  138. # Other items we are prepared to export if requested
  139. @EXPORT_OK = (qw(
  140. DN_ACCESS
  141. DN_ATTRIB
  142. DN_CREATE
  143. DN_DELETE
  144. DN_MODIFY
  145. DN_MULTISHOT
  146. DN_RENAME
  147. F_GETLEASE
  148. F_GETPIPE_SZ
  149. F_GETSIG
  150. F_NOTIFY
  151. F_SETLEASE
  152. F_SETPIPE_SZ
  153. F_SETSIG
  154. LOCK_MAND
  155. LOCK_READ
  156. LOCK_RW
  157. LOCK_WRITE
  158. O_ALT_IO
  159. O_EVTONLY
  160. O_IGNORE_CTTY
  161. O_NOATIME
  162. O_NOLINK
  163. O_NOSIGPIPE
  164. O_NOTRANS
  165. O_SYMLINK
  166. O_TTY_INIT
  167. ), map {@{$_}} values %EXPORT_TAGS);
  168. 1;