ports.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. /* classes: h_files */
  2. #ifndef SCM_PORTS_H
  3. #define SCM_PORTS_H
  4. /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004,
  5. * 2006, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public License
  9. * as published by the Free Software Foundation; either version 3 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  20. * 02110-1301 USA
  21. */
  22. #include "libguile/__scm.h"
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include <unistd.h>
  26. #include "libguile/gc.h"
  27. #include "libguile/tags.h"
  28. #include "libguile/error.h"
  29. #include "libguile/print.h"
  30. #include "libguile/struct.h"
  31. #include "libguile/threads.h"
  32. #include "libguile/strings.h"
  33. #define SCM_INITIAL_PUTBACK_BUF_SIZE 4
  34. /* values for the rw_active flag. */
  35. typedef enum scm_t_port_rw_active {
  36. SCM_PORT_NEITHER = 0,
  37. SCM_PORT_READ = 1,
  38. SCM_PORT_WRITE = 2
  39. } scm_t_port_rw_active;
  40. /* An internal-only structure defined in ports-internal.h. */
  41. struct scm_port_internal;
  42. /* C representation of a Scheme port. */
  43. typedef struct
  44. {
  45. SCM port; /* Link back to the port object. */
  46. scm_i_pthread_mutex_t *lock; /* A recursive lock for this port. */
  47. /* pointer to internal-only port structure */
  48. struct scm_port_internal *internal;
  49. /* data for the underlying port implementation as a raw C value. */
  50. scm_t_bits stream;
  51. SCM file_name; /* debugging support. */
  52. long line_number; /* debugging support. */
  53. int column_number; /* debugging support. */
  54. /* port buffers. the buffer(s) are set up for all ports.
  55. in the case of string ports, the buffer is the string itself.
  56. in the case of unbuffered file ports, the buffer is a
  57. single char: shortbuf. */
  58. /* this buffer is filled from read_buf to read_end using the ptob
  59. buffer_fill. then input requests are taken from read_pos until
  60. it reaches read_end. */
  61. unsigned char *read_buf; /* buffer start. */
  62. const unsigned char *read_pos;/* the next unread char. */
  63. unsigned char *read_end; /* pointer to last buffered char + 1. */
  64. scm_t_off read_buf_size; /* size of the buffer. */
  65. /* when chars are put back into the buffer, e.g., using peek-char or
  66. unread-string, the read-buffer pointers are switched to cbuf.
  67. the original pointers are saved here and restored when the put-back
  68. chars have been consumed. */
  69. unsigned char *saved_read_buf;
  70. const unsigned char *saved_read_pos;
  71. unsigned char *saved_read_end;
  72. scm_t_off saved_read_buf_size;
  73. /* write requests are saved into this buffer at write_pos until it
  74. reaches write_buf + write_buf_size, then the ptob flush is
  75. called. */
  76. unsigned char *write_buf; /* buffer start. */
  77. unsigned char *write_pos; /* pointer to last buffered char + 1. */
  78. unsigned char *write_end; /* pointer to end of buffer + 1. */
  79. scm_t_off write_buf_size; /* size of the buffer. */
  80. unsigned char shortbuf; /* buffer for "unbuffered" streams. */
  81. int rw_random; /* true if the port is random access.
  82. implies that the buffers must be
  83. flushed before switching between
  84. reading and writing, seeking, etc. */
  85. scm_t_port_rw_active rw_active; /* for random access ports,
  86. indicates which of the buffers
  87. is currently in use. can be
  88. SCM_PORT_WRITE, SCM_PORT_READ,
  89. or SCM_PORT_NEITHER. */
  90. /* a buffer for un-read chars and strings. */
  91. unsigned char *putback_buf;
  92. size_t putback_buf_size; /* allocated size of putback_buf. */
  93. /* Character encoding support */
  94. char *encoding;
  95. scm_t_string_failed_conversion_handler ilseq_handler;
  96. } scm_t_port;
  97. SCM_INTERNAL SCM scm_i_port_weak_set;
  98. #define SCM_READ_BUFFER_EMPTY_P(c_port) (c_port->read_pos >= c_port->read_end)
  99. #define SCM_EOF_OBJECT_P(x) (scm_is_eq ((x), SCM_EOF_VAL))
  100. /* PORT FLAGS
  101. * A set of flags characterizes a port.
  102. * Note that we reserve the bits 1 << 24 and above for use by the
  103. * routines in the port's scm_ptobfuns structure.
  104. */
  105. #define SCM_OPN (1L<<16) /* Is the port open? */
  106. #define SCM_RDNG (2L<<16) /* Is it a readable port? */
  107. #define SCM_WRTNG (4L<<16) /* Is it writable? */
  108. #define SCM_BUF0 (8L<<16) /* Is it unbuffered? */
  109. #define SCM_BUFLINE (64L<<16) /* Is it line-buffered? */
  110. #define SCM_PORTP(x) (SCM_HAS_TYP7 (x, scm_tc7_port))
  111. #define SCM_OPPORTP(x) (SCM_PORTP (x) && (SCM_CELL_WORD_0 (x) & SCM_OPN))
  112. #define SCM_INPUT_PORT_P(x) (SCM_PORTP (x) && (SCM_CELL_WORD_0 (x) & SCM_RDNG))
  113. #define SCM_OUTPUT_PORT_P(x) (SCM_PORTP (x) && (SCM_CELL_WORD_0 (x) & SCM_WRTNG))
  114. #define SCM_OPINPORTP(x) (SCM_OPPORTP (x) && SCM_INPUT_PORT_P (x))
  115. #define SCM_OPOUTPORTP(x) (SCM_OPPORTP (x) && SCM_OUTPUT_PORT_P (x))
  116. #define SCM_OPENP(x) (SCM_OPPORTP (x))
  117. #define SCM_CLOSEDP(x) (!SCM_OPENP (x))
  118. #define SCM_CLR_PORT_OPEN_FLAG(p) \
  119. SCM_SET_CELL_WORD_0 ((p), SCM_CELL_WORD_0 (p) & ~SCM_OPN)
  120. #define SCM_PTAB_ENTRY(x) ((scm_t_port *) SCM_CELL_WORD_1 (x))
  121. #define SCM_PORT_DESCRIPTOR(port) ((scm_t_ptob_descriptor *) SCM_CELL_WORD_2 (port))
  122. #define SCM_SETPTAB_ENTRY(x, ent) (SCM_SET_CELL_WORD_1 ((x), (scm_t_bits) (ent)))
  123. #define SCM_STREAM(x) (SCM_PTAB_ENTRY(x)->stream)
  124. #define SCM_SETSTREAM(x, s) (SCM_PTAB_ENTRY(x)->stream = (scm_t_bits) (s))
  125. #define SCM_FILENAME(x) (SCM_PTAB_ENTRY(x)->file_name)
  126. #define SCM_SET_FILENAME(x, n) (SCM_PTAB_ENTRY(x)->file_name = (n))
  127. #define SCM_LINUM(x) (SCM_PTAB_ENTRY(x)->line_number)
  128. #define SCM_COL(x) (SCM_PTAB_ENTRY(x)->column_number)
  129. #define SCM_INCLINE(port) do {SCM_LINUM (port) += 1; SCM_COL (port) = 0;} while (0)
  130. #define SCM_ZEROCOL(port) do {SCM_COL (port) = 0;} while (0)
  131. #define SCM_INCCOL(port) do {SCM_COL (port) += 1;} while (0)
  132. #define SCM_DECCOL(port) do {if (SCM_COL (port) > 0) SCM_COL (port) -= 1;} while (0)
  133. #define SCM_TABCOL(port) do {SCM_COL (port) += 8 - SCM_COL (port) % 8;} while (0)
  134. /* Maximum number of port types. */
  135. #define SCM_I_MAX_PORT_TYPE_COUNT 256
  136. typedef enum scm_t_port_type_flags {
  137. SCM_PORT_TYPE_HAS_FLUSH = 1 << 0
  138. } scm_t_port_type_flags;
  139. /* port-type description. */
  140. typedef struct scm_t_ptob_descriptor
  141. {
  142. char *name;
  143. SCM (*mark) (SCM);
  144. size_t (*free) (SCM);
  145. int (*print) (SCM exp, SCM port, scm_print_state *pstate);
  146. SCM (*equalp) (SCM, SCM);
  147. int (*close) (SCM port);
  148. void (*write) (SCM port, const void *data, size_t size);
  149. void (*flush) (SCM port);
  150. void (*end_input) (SCM port, int offset);
  151. int (*fill_input) (SCM port);
  152. int (*input_waiting) (SCM port);
  153. scm_t_off (*seek) (SCM port, scm_t_off OFFSET, int WHENCE);
  154. void (*truncate) (SCM port, scm_t_off length);
  155. /* When non-NULL, this is the method called by 'setvbuf' for this port.
  156. It must create read and write buffers for PORT with the specified
  157. sizes (a size of 0 is for unbuffered ports, which should use the
  158. 'shortbuf' field.) Size -1 means to use the port's preferred buffer
  159. size. */
  160. void (*setvbuf) (SCM port, long read_size, long write_size);
  161. unsigned flags;
  162. } scm_t_ptob_descriptor;
  163. #define SCM_TC2PTOBNUM(x) (0x0ff & ((x) >> 8))
  164. #define SCM_PTOBNUM(x) (SCM_TC2PTOBNUM (SCM_CELL_TYPE (x)))
  165. /* SCM_PTOBNAME can be 0 if name is missing */
  166. #define SCM_PTOBNAME(ptobnum) (scm_c_port_type_ref (ptobnum)->name)
  167. /* Port types, and their vtables. */
  168. SCM_INTERNAL long scm_c_num_port_types (void);
  169. SCM_API scm_t_ptob_descriptor* scm_c_port_type_ref (long ptobnum);
  170. SCM_API long scm_c_port_type_add_x (scm_t_ptob_descriptor *desc);
  171. SCM_API scm_t_bits scm_make_port_type (char *name,
  172. int (*fill_input) (SCM port),
  173. void (*write) (SCM port,
  174. const void *data,
  175. size_t size));
  176. SCM_API void scm_set_port_mark (scm_t_bits tc, SCM (*mark) (SCM));
  177. SCM_API void scm_set_port_free (scm_t_bits tc, size_t (*free) (SCM));
  178. SCM_API void scm_set_port_print (scm_t_bits tc,
  179. int (*print) (SCM exp,
  180. SCM port,
  181. scm_print_state *pstate));
  182. SCM_API void scm_set_port_equalp (scm_t_bits tc, SCM (*equalp) (SCM, SCM));
  183. SCM_API void scm_set_port_close (scm_t_bits tc, int (*close) (SCM));
  184. SCM_API void scm_set_port_flush (scm_t_bits tc, void (*flush) (SCM port));
  185. SCM_API void scm_set_port_end_input (scm_t_bits tc,
  186. void (*end_input) (SCM port,
  187. int offset));
  188. SCM_API void scm_set_port_seek (scm_t_bits tc,
  189. scm_t_off (*seek) (SCM port,
  190. scm_t_off OFFSET,
  191. int WHENCE));
  192. SCM_API void scm_set_port_truncate (scm_t_bits tc,
  193. void (*truncate) (SCM port,
  194. scm_t_off length));
  195. SCM_API void scm_set_port_input_waiting (scm_t_bits tc, int (*input_waiting) (SCM));
  196. SCM_API void scm_set_port_setvbuf (scm_t_bits tc,
  197. void (*setvbuf) (SCM, long, long));
  198. /* The input, output, error, and load ports. */
  199. SCM_API SCM scm_current_input_port (void);
  200. SCM_API SCM scm_current_output_port (void);
  201. SCM_API SCM scm_current_error_port (void);
  202. SCM_API SCM scm_current_warning_port (void);
  203. SCM_API SCM scm_current_load_port (void);
  204. SCM_API SCM scm_set_current_input_port (SCM port);
  205. SCM_API SCM scm_set_current_output_port (SCM port);
  206. SCM_API SCM scm_set_current_error_port (SCM port);
  207. SCM_API SCM scm_set_current_warning_port (SCM port);
  208. SCM_API void scm_dynwind_current_input_port (SCM port);
  209. SCM_API void scm_dynwind_current_output_port (SCM port);
  210. SCM_API void scm_dynwind_current_error_port (SCM port);
  211. SCM_INTERNAL void scm_i_dynwind_current_load_port (SCM port);
  212. /* Mode bits. */
  213. SCM_INTERNAL long scm_i_mode_bits (SCM modes);
  214. SCM_API long scm_mode_bits (char *modes);
  215. SCM_API SCM scm_port_mode (SCM port);
  216. /* Low-level constructors. */
  217. SCM_API SCM
  218. scm_c_make_port_with_encoding (scm_t_bits tag,
  219. unsigned long mode_bits,
  220. const char *encoding,
  221. scm_t_string_failed_conversion_handler handler,
  222. scm_t_bits stream);
  223. SCM_API SCM scm_c_make_port (scm_t_bits tag, unsigned long mode_bits,
  224. scm_t_bits stream);
  225. SCM_API SCM scm_new_port_table_entry (scm_t_bits tag);
  226. /* Predicates. */
  227. SCM_API SCM scm_port_p (SCM x);
  228. SCM_API SCM scm_input_port_p (SCM x);
  229. SCM_API SCM scm_output_port_p (SCM x);
  230. SCM_API SCM scm_port_closed_p (SCM port);
  231. SCM_API SCM scm_eof_object_p (SCM x);
  232. /* Closing ports. */
  233. SCM_API SCM scm_close_port (SCM port);
  234. SCM_API SCM scm_close_input_port (SCM port);
  235. SCM_API SCM scm_close_output_port (SCM port);
  236. /* Encoding characters to byte streams, and decoding byte streams to
  237. characters. */
  238. SCM_INTERNAL const char *scm_i_default_port_encoding (void);
  239. SCM_INTERNAL void scm_i_set_default_port_encoding (const char *);
  240. SCM_INTERNAL scm_t_string_failed_conversion_handler
  241. scm_i_default_port_conversion_handler (void);
  242. SCM_INTERNAL void
  243. scm_i_set_default_port_conversion_handler (scm_t_string_failed_conversion_handler);
  244. SCM_INTERNAL void scm_i_set_port_encoding_x (SCM port, const char *str);
  245. SCM_API SCM scm_port_encoding (SCM port);
  246. SCM_API SCM scm_set_port_encoding_x (SCM port, SCM encoding);
  247. SCM_API SCM scm_port_conversion_strategy (SCM port);
  248. SCM_API SCM scm_set_port_conversion_strategy_x (SCM port, SCM behavior);
  249. /* Acquiring and releasing the port lock. */
  250. SCM_API void scm_dynwind_lock_port (SCM port);
  251. SCM_INLINE int scm_c_lock_port (SCM port, scm_i_pthread_mutex_t **lock);
  252. SCM_INLINE int scm_c_try_lock_port (SCM port, scm_i_pthread_mutex_t **lock);
  253. /* Input. */
  254. SCM_API int scm_get_byte_or_eof (SCM port);
  255. SCM_INLINE int scm_get_byte_or_eof_unlocked (SCM port);
  256. SCM_API int scm_slow_get_byte_or_eof_unlocked (SCM port);
  257. SCM_API int scm_peek_byte_or_eof (SCM port);
  258. SCM_INLINE int scm_peek_byte_or_eof_unlocked (SCM port);
  259. SCM_API int scm_slow_peek_byte_or_eof_unlocked (SCM port);
  260. SCM_API size_t scm_c_read (SCM port, void *buffer, size_t size);
  261. SCM_API size_t scm_c_read_unlocked (SCM port, void *buffer, size_t size);
  262. SCM_API scm_t_wchar scm_getc (SCM port);
  263. SCM_API scm_t_wchar scm_getc_unlocked (SCM port);
  264. SCM_API SCM scm_read_char (SCM port);
  265. /* Pushback. */
  266. SCM_API void scm_unget_bytes (const unsigned char *buf, size_t len, SCM port);
  267. SCM_API void scm_unget_bytes_unlocked (const unsigned char *buf, size_t len, SCM port);
  268. SCM_API void scm_unget_byte (int c, SCM port);
  269. SCM_API void scm_unget_byte_unlocked (int c, SCM port);
  270. SCM_API void scm_ungetc (scm_t_wchar c, SCM port);
  271. SCM_API void scm_ungetc_unlocked (scm_t_wchar c, SCM port);
  272. SCM_API void scm_ungets (const char *s, int n, SCM port);
  273. SCM_API void scm_ungets_unlocked (const char *s, int n, SCM port);
  274. SCM_API SCM scm_peek_char (SCM port);
  275. SCM_API SCM scm_unread_char (SCM cobj, SCM port);
  276. SCM_API SCM scm_unread_string (SCM str, SCM port);
  277. /* Manipulating the buffers. */
  278. SCM_API void scm_port_non_buffer (scm_t_port *pt);
  279. SCM_API int scm_fill_input (SCM port);
  280. SCM_API int scm_fill_input_unlocked (SCM port);
  281. SCM_INTERNAL size_t scm_take_from_input_buffers (SCM port, char *dest, size_t read_len);
  282. SCM_API SCM scm_drain_input (SCM port);
  283. SCM_API void scm_end_input (SCM port);
  284. SCM_API void scm_end_input_unlocked (SCM port);
  285. SCM_API SCM scm_force_output (SCM port);
  286. SCM_API void scm_flush (SCM port);
  287. SCM_API void scm_flush_unlocked (SCM port);
  288. /* Output. */
  289. SCM_API void scm_putc (char c, SCM port);
  290. SCM_INLINE void scm_putc_unlocked (char c, SCM port);
  291. SCM_API void scm_puts (const char *str_data, SCM port);
  292. SCM_INLINE void scm_puts_unlocked (const char *str_data, SCM port);
  293. SCM_API void scm_c_write (SCM port, const void *buffer, size_t size);
  294. SCM_API void scm_c_write_unlocked (SCM port, const void *buffer, size_t size);
  295. SCM_API void scm_lfwrite (const char *ptr, size_t size, SCM port);
  296. SCM_API void scm_lfwrite_unlocked (const char *ptr, size_t size, SCM port);
  297. SCM_INTERNAL void scm_lfwrite_substr (SCM str, size_t start, size_t end,
  298. SCM port);
  299. /* Querying and setting positions, and character availability. */
  300. SCM_API SCM scm_char_ready_p (SCM port);
  301. SCM_API SCM scm_seek (SCM object, SCM offset, SCM whence);
  302. SCM_API SCM scm_truncate_file (SCM object, SCM length);
  303. SCM_API SCM scm_port_line (SCM port);
  304. SCM_API SCM scm_set_port_line_x (SCM port, SCM line);
  305. SCM_API SCM scm_port_column (SCM port);
  306. SCM_API SCM scm_set_port_column_x (SCM port, SCM line);
  307. SCM_API SCM scm_port_filename (SCM port);
  308. SCM_API SCM scm_set_port_filename_x (SCM port, SCM filename);
  309. /* Port properties. */
  310. SCM_INTERNAL SCM scm_i_port_property (SCM port, SCM key);
  311. SCM_INTERNAL SCM scm_i_set_port_property_x (SCM port, SCM key, SCM value);
  312. /* Implementation helpers for port printing functions. */
  313. SCM_API int scm_port_print (SCM exp, SCM port, scm_print_state *);
  314. SCM_API void scm_print_port_mode (SCM exp, SCM port);
  315. /* Iterating over all ports. */
  316. SCM_API SCM scm_port_for_each (SCM proc);
  317. SCM_API void scm_c_port_for_each (void (*proc)(void *data, SCM p), void *data);
  318. SCM_API SCM scm_flush_all_ports (void);
  319. /* Void ports. */
  320. SCM_API SCM scm_void_port (char * mode_str);
  321. SCM_API SCM scm_sys_make_void_port (SCM mode);
  322. /* Initialization. */
  323. SCM_INTERNAL void scm_init_ports (void);
  324. /* Inline function implementations. */
  325. #if SCM_CAN_INLINE || defined SCM_INLINE_C_IMPLEMENTING_INLINES
  326. SCM_INLINE_IMPLEMENTATION int
  327. scm_c_lock_port (SCM port, scm_i_pthread_mutex_t **lock)
  328. {
  329. *lock = SCM_PTAB_ENTRY (port)->lock;
  330. if (*lock)
  331. return scm_i_pthread_mutex_lock (*lock);
  332. else
  333. return 0;
  334. }
  335. SCM_INLINE_IMPLEMENTATION int
  336. scm_c_try_lock_port (SCM port, scm_i_pthread_mutex_t **lock)
  337. {
  338. *lock = SCM_PTAB_ENTRY (port)->lock;
  339. if (*lock)
  340. {
  341. int ret = scm_i_pthread_mutex_trylock (*lock);
  342. if (ret != 0)
  343. *lock = NULL;
  344. return ret;
  345. }
  346. else
  347. return 0;
  348. }
  349. SCM_INLINE_IMPLEMENTATION int
  350. scm_get_byte_or_eof_unlocked (SCM port)
  351. {
  352. scm_t_port *pt = SCM_PTAB_ENTRY (port);
  353. if (SCM_LIKELY ((pt->rw_active == SCM_PORT_READ || !pt->rw_random)
  354. && pt->read_pos < pt->read_end))
  355. return *pt->read_pos++;
  356. else
  357. return scm_slow_get_byte_or_eof_unlocked (port);
  358. }
  359. /* Like `scm_get_byte_or_eof' but does not change PORT's `read_pos'. */
  360. SCM_INLINE_IMPLEMENTATION int
  361. scm_peek_byte_or_eof_unlocked (SCM port)
  362. {
  363. scm_t_port *pt = SCM_PTAB_ENTRY (port);
  364. if (SCM_LIKELY ((pt->rw_active == SCM_PORT_READ || !pt->rw_random)
  365. && pt->read_pos < pt->read_end))
  366. return *pt->read_pos;
  367. else
  368. return scm_slow_peek_byte_or_eof_unlocked (port);
  369. }
  370. SCM_INLINE_IMPLEMENTATION void
  371. scm_putc_unlocked (char c, SCM port)
  372. {
  373. SCM_ASSERT_TYPE (SCM_OPOUTPORTP (port), port, 0, NULL, "output port");
  374. scm_lfwrite_unlocked (&c, 1, port);
  375. }
  376. SCM_INLINE_IMPLEMENTATION void
  377. scm_puts_unlocked (const char *s, SCM port)
  378. {
  379. SCM_ASSERT_TYPE (SCM_OPOUTPORTP (port), port, 0, NULL, "output port");
  380. scm_lfwrite_unlocked (s, strlen (s), port);
  381. }
  382. #endif /* SCM_CAN_INLINE || defined SCM_INLINE_C_IMPLEMENTING_INLINES */
  383. #endif /* SCM_PORTS_H */
  384. /*
  385. Local Variables:
  386. c-file-style: "gnu"
  387. End:
  388. */