1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/src/msg.fbs

213 lines
2.9 KiB
Text
Raw Normal View History

2018-07-04 14:50:28 -04:00
namespace deno;
union Any {
Start,
StartRes,
CodeFetch,
CodeFetchRes,
CodeCache,
Exit,
TimerStart,
TimerReady,
TimerClear,
Environ,
EnvironRes,
FetchReq,
FetchRes,
2018-08-23 18:36:45 -04:00
MakeTempDir,
MakeTempDirRes,
2018-08-26 02:26:30 -04:00
MkdirSync,
ReadFileSync,
ReadFileSyncRes,
2018-09-03 20:22:30 -04:00
RenameSync,
2018-08-29 09:22:25 -04:00
StatSync,
StatSyncRes,
SetEnv,
WriteFileSync,
2018-07-04 14:50:28 -04:00
}
enum ErrorKind: byte {
NoError = 0,
// io errors
NotFound,
PermissionDenied,
ConnectionRefused,
ConnectionReset,
ConnectionAborted,
NotConnected,
AddrInUse,
AddrNotAvailable,
BrokenPipe,
AlreadyExists,
WouldBlock,
InvalidInput,
InvalidData,
TimedOut,
Interrupted,
WriteZero,
Other,
UnexpectedEof,
// url errors
EmptyHost,
IdnaError,
InvalidPort,
InvalidIpv4Address,
InvalidIpv6Address,
InvalidDomainCharacter,
RelativeUrlWithoutBase,
RelativeUrlWithCannotBeABaseBase,
SetHostOnCannotBeABaseUrl,
Overflow,
// hyper errors
HttpUser,
HttpClosed,
HttpCanceled,
HttpParse,
HttpOther,
}
table Base {
2018-08-17 16:59:57 -04:00
cmd_id: uint32;
error_kind: ErrorKind = NoError;
error: string;
msg: Any;
2018-07-04 14:50:28 -04:00
}
table Start {
unused: int8;
}
table StartRes {
cwd: string;
argv: [string];
debug_flag: bool;
deps_flag: bool;
}
table CodeFetch {
module_specifier: string;
containing_file: string;
}
table CodeFetchRes {
// If it's a non-http module, moduleName and filename will be the same.
// For http modules, moduleName is its resolved http URL, and filename
// is the location of the locally downloaded source code.
module_name: string;
filename: string;
source_code: string;
output_code: string; // Non-empty only if cached.
}
table CodeCache {
filename: string;
source_code: string;
output_code: string;
}
table Exit {
code: int;
}
table TimerStart {
id: uint;
interval: bool;
delay: uint;
}
table TimerReady {
id: uint;
done: bool;
}
table TimerClear {
id: uint;
}
table Environ {}
table SetEnv {
key: string;
value: string;
}
table EnvironRes {
map: [EnvPair];
}
table EnvPair {
key: string;
value: string;
}
table FetchReq {
id: uint;
url: string;
// header_line: [string];
}
table FetchRes {
id: uint;
status: int;
header_line: [string];
2018-08-13 15:02:35 -04:00
body: [ubyte];
}
2018-08-23 18:36:45 -04:00
table MakeTempDir {
dir: string;
prefix: string;
suffix: string;
}
table MakeTempDirRes {
path: string;
}
2018-08-26 02:26:30 -04:00
table MkdirSync {
path: string;
mode: uint;
// mode specified by https://godoc.org/os#FileMode
}
table ReadFileSync {
filename: string;
}
table ReadFileSyncRes {
2018-08-13 15:02:35 -04:00
data: [ubyte];
}
2018-09-03 20:22:30 -04:00
table RenameSync {
oldpath: string;
newpath: string;
}
2018-08-29 09:22:25 -04:00
table StatSync {
filename: string;
lstat: bool;
}
table StatSyncRes {
is_file: bool;
is_symlink: bool;
len: ulong;
modified:ulong;
accessed:ulong;
created:ulong;
}
table WriteFileSync {
filename: string;
2018-08-13 15:02:35 -04:00
data: [ubyte];
perm: uint;
// perm specified by https://godoc.org/os#FileMode
}
root_type Base;