/* Copyright 2009-2014 * Kaz Kylheku * Vancouver, Canada * All rights reserved. * * BSD License: * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. The name of the author may not be used to endorse or promote * products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ enum strm_whence { strm_start = SEEK_SET, strm_cur = SEEK_CUR, strm_end = SEEK_SET }; struct strm_ops { struct cobj_ops cobj_ops; val (*put_string)(val, val); val (*put_char)(val, val); val (*put_byte)(val, int); val (*get_line)(val); val (*get_char)(val); val (*get_byte)(val); val (*unget_char)(val, val); val (*unget_byte)(val, int); val (*close)(val, val); val (*flush)(val); val (*seek)(val, cnum, enum strm_whence); val (*get_prop)(val, val ind); val (*set_prop)(val, val ind, val); }; #define std_input (*lookup_var_l(nil, stdin_s)) #define std_output (*lookup_var_l(nil, stdout_s)) #define std_debug (*lookup_var_l(nil, stddebug_s)) #define std_error (*lookup_var_l(nil, stderr_s)) #define std_null (*lookup_var_l(nil, stdnull_s)) val *lookup_var_l(val env, val sym); extern val output_produced; extern val dev_k, ino_k, mode_k, nlink_k, uid_k; extern val gid_k, rdev_k, size_k, blksize_k, blocks_k; extern val atime_k, mtime_k, ctime_k; extern val from_start_k, from_current_k, from_end_k; extern val real_time_k, name_k; extern val stdin_s, stdout_s, stddebug_s, stderr_s, stdnull_s; val make_null_stream(void); val make_stdio_stream(FILE *, val descr); val make_tail_stream(FILE *, val descr); val make_pipe_stream(FILE *, val descr); val make_string_input_stream(val); val make_string_byte_input_stream(val); val make_string_output_stream(void); val get_string_from_stream(val); val make_strlist_output_stream(void); val get_list_from_stream(val); val make_dir_stream(DIR *); val streamp(val obj); val real_time_stream_p(val obj); val stream_set_prop(val stream, val ind, val prop); val stream_get_prop(val stream, val ind); val close_stream(val stream, val throw_on_error); val get_line(val); val get_char(val); val get_byte(val); val unget_char(val ch, val stream); val unget_byte(val byte, val stream); val vformat(val stream, val string, va_list); val vformat_to_string(val string, va_list); val format(val stream, val string, ...); val formatv(val stream, val string, val args); val put_string(val string, val stream); val put_line(val string, val stream); val put_char(val ch, val stream); val put_byte(val byte, val stream); val flush_stream(val stream); val seek_stream(val stream, val offset, val whence); val statf(val path); val open_directory(val path); val open_file(val path, val mode_str); val open_tail(val path, val mode_str, val seek_end_p); val open_command(val path, val mode_str); val open_process(val path, val mode_str, val args); val make_catenated_stream(val stream_list); val remove_path(val path); val rename_path(val from, val to); val mkdir_wrap(val path, val mode); val chdir_wrap(val path); val getcwd_wrap(void); val makedev_wrap(val major, val minor); val minor_wrap(val dev); val major_wrap(val dev); val mknod_wrap(val path, val mode, val dev); val symlink_wrap(val target, val to); val link_wrap(val target, val to); val readlink_wrap(val path); void stream_init(void);