zig/example/cat/main.zig

64 lines
1.5 KiB
Zig
Raw Normal View History

2016-01-14 09:15:51 +08:00
export executable "cat";
2016-01-16 18:10:15 +08:00
import "std.zig";
2016-01-14 09:15:51 +08:00
2016-01-19 10:32:27 +08:00
// Things to do to make this work:
// * var args printing
2016-01-23 17:14:01 +08:00
// * update std API
2016-01-19 10:32:27 +08:00
// * defer
// * %return
2016-01-23 18:06:29 +08:00
// * %% binary operator
// * %% prefix operator
2016-01-19 10:32:27 +08:00
// * cast err type to string
pub fn main(args: [][]u8) %void => {
2016-01-16 18:10:15 +08:00
const exe = args[0];
var catted_anything = false;
2016-01-19 10:32:27 +08:00
for (arg, args[1...]) {
2016-01-16 18:10:15 +08:00
if (arg == "-") {
catted_anything = true;
%return cat_stream(stdin);
2016-01-16 18:10:15 +08:00
} else if (arg[0] == '-') {
return usage(exe);
} else {
var is: InputStream;
is.open(arg, OpenReadOnly) %% (err) => {
2016-01-23 18:06:29 +08:00
%%stderr.print("Unable to open file: {}", ([]u8])(err));
2016-01-16 18:10:15 +08:00
return err;
}
defer is.close();
2016-01-14 09:15:51 +08:00
2016-01-16 18:10:15 +08:00
catted_anything = true;
%return cat_stream(is);
2016-01-16 18:10:15 +08:00
}
}
if (!catted_anything) {
%return cat_stream(stdin)
2016-01-16 18:10:15 +08:00
}
}
fn usage(exe: []u8) %void => {
2016-01-23 18:06:29 +08:00
%%stderr.print("Usage: {} [FILE]...\n", exe);
return %.Invalid;
2016-01-16 18:10:15 +08:00
}
fn cat_stream(is: InputStream) %void => {
2016-01-16 18:10:15 +08:00
var buf: [1024 * 4]u8;
while (true) {
2016-01-23 18:06:29 +08:00
const bytes_read = is.read(buf) %% (err) => {
%%stderr.print("Unable to read from stream: {}", ([]u8)(err));
return err;
}
if (bytes_read == 0) {
break;
2016-01-16 18:10:15 +08:00
}
2016-01-23 18:06:29 +08:00
stdout.write(buf[0...bytes_read]) %% (err) => {
%%stderr.print("Unable to write to stdout: {}", ([]u8)(err));
return err;
2016-01-16 18:10:15 +08:00
}
}
2016-01-14 09:15:51 +08:00
}