awtk/docs/fscript_iostream.md

46 lines
736 B
Markdown
Raw Normal View History

2021-01-12 14:29:47 +08:00
## iostream 扩展函数
### 1.iostream\_get\_istream
2021-09-09 15:10:12 +08:00
> 获取输入流对象。
----------------------------
#### 原型
```
iostream_get_istream(iostream) => object
```
2021-01-12 14:29:47 +08:00
### 2.iostream\_get\_ostream
2021-09-09 15:10:12 +08:00
> 获取输出流对象。
----------------------------
#### 原型
```
iostream _get_ostream(iostream) => object
```
2021-01-12 14:29:47 +08:00
### 更多示例
```js
//
// start serial echo server first
// ./bin/serial_recv 4000
//
a = iostream_serial_create("/dev/ttys001", 0)
b = iostream_get_ostream(a)
c = iostream_get_istream(a)
assert(ostream_write_uint32(b, 6) == 4)
assert(ostream_write_string(b, "hello\n") == 6)
assert(istream_read_uint32(c, 3000) == 6)
assert(istream_read_string(c, 6, 3000) == "hello\n")
unset(c)
unset(b)
unset(a)
```