2016-11-29 05:25:08 +00:00
|
|
|
#class(#byte) Stdio(Object) from 'stdio'
|
2016-11-18 18:11:13 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
#dcl(#class) in out err.
|
|
|
|
|
2016-12-06 17:21:47 +00:00
|
|
|
(*
|
|
|
|
* The following methods are generated by the module.
|
|
|
|
* #method(#class) _newInstSize { <primitive: #stdio._newInstSize> }
|
|
|
|
* #method open: name for: mode { <primitive: #stdio.open> }
|
|
|
|
* #method close { <primitive: #stdio.close> }
|
|
|
|
*)
|
2016-11-21 13:56:20 +00:00
|
|
|
|
2016-11-18 18:11:13 +00:00
|
|
|
#method(#class) new: size
|
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
## ignore the specified size
|
2016-11-27 15:37:14 +00:00
|
|
|
^(super new: (self _newInstSize))
|
2016-11-18 18:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method(#class) new
|
|
|
|
{
|
2016-11-27 15:37:14 +00:00
|
|
|
^(super new: (self _newInstSize))
|
2016-11-18 18:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method(#class) open: name for: mode
|
|
|
|
{
|
2016-12-03 18:08:31 +00:00
|
|
|
^(self new) open: name for: mode
|
2016-11-18 18:11:13 +00:00
|
|
|
}
|
2016-12-31 15:20:52 +00:00
|
|
|
|
2016-12-13 15:18:19 +00:00
|
|
|
(* ---------------------
|
2016-12-31 15:20:52 +00:00
|
|
|
#method(#class) stdin
|
2016-12-06 17:21:47 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
self.in isNil ifTrue: [ self.in := ^(super new) open: 0 for: 'r' ].
|
|
|
|
^self.in.
|
2016-12-06 17:21:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-31 15:20:52 +00:00
|
|
|
#method(#class) stdout
|
2016-12-06 17:21:47 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
self.out isNil ifTrue: [ self.out := ^(super new) open: 1 for: 'w' ].
|
|
|
|
^self.out.
|
2016-12-06 17:21:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-31 15:20:52 +00:00
|
|
|
#method(#class) stderr
|
2016-12-06 17:21:47 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
self.err isNil ifTrue: [ self.err := ^(super new) open: 2 for: 'w' ].
|
|
|
|
^self.err.
|
2016-12-06 17:21:47 +00:00
|
|
|
}
|
2016-12-13 15:18:19 +00:00
|
|
|
------------------------ *)
|
2016-12-06 17:21:47 +00:00
|
|
|
|
|
|
|
(*
|
|
|
|
#method format: fmt with: ...
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
*)
|
|
|
|
|
2016-12-31 15:20:52 +00:00
|
|
|
#method format (fmt)
|
2016-12-06 17:21:47 +00:00
|
|
|
{
|
2016-12-31 15:20:52 +00:00
|
|
|
| a b c ubound |
|
2016-12-06 17:21:47 +00:00
|
|
|
'THIS IS FORMAT' dump.
|
|
|
|
fmt dump.
|
2016-12-31 15:20:52 +00:00
|
|
|
|
2016-12-13 15:18:19 +00:00
|
|
|
thisContext temporaryCount dump.
|
2016-12-31 15:20:52 +00:00
|
|
|
ubound := thisContext vargCount - 1.
|
|
|
|
0 to: ubound do: [:k |
|
|
|
|
(thisContext vargAt: k) dump.
|
|
|
|
].
|
2016-12-06 17:21:47 +00:00
|
|
|
}
|
2016-11-27 15:37:14 +00:00
|
|
|
}
|
2016-11-18 18:11:13 +00:00
|
|
|
|
2016-11-27 15:37:14 +00:00
|
|
|
#extend Stdio
|
|
|
|
{
|
|
|
|
#method xxxx
|
2016-11-18 18:11:13 +00:00
|
|
|
{
|
|
|
|
self basicSize dump.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-27 15:37:14 +00:00
|
|
|
#class(#byte) Stdio2(Stdio)
|
2016-11-18 18:11:13 +00:00
|
|
|
{
|
2016-11-21 13:56:20 +00:00
|
|
|
#method(#class) new
|
|
|
|
{
|
|
|
|
##self prohibited
|
|
|
|
##raise exception. prohibited...
|
|
|
|
^(super new).
|
|
|
|
}
|
|
|
|
|
2016-11-18 18:11:13 +00:00
|
|
|
}
|