carp checkers: add carp checker and make it work
This commit is contained in:
1
Pond.package/CarpChecker.class/README.md
Normal file
1
Pond.package/CarpChecker.class/README.md
Normal file
@@ -0,0 +1 @@
|
||||
I’m a special case of a Carp process for checking errors.
|
9
Pond.package/CarpChecker.class/instance/check.st
Normal file
9
Pond.package/CarpChecker.class/instance/check.st
Normal file
@@ -0,0 +1,9 @@
|
||||
checking
|
||||
check
|
||||
| f |
|
||||
f := FileReference newTempFilePrefix: 'checker' suffix: '.carp'.
|
||||
f writeStreamDo: [:stream | stream nextPutAll: file].
|
||||
proc arguments: {'--check' . f pathString }.
|
||||
self run.
|
||||
excepted ifNotNil: [ CarpError new messageText: excepted messageText ].
|
||||
self died ifFalse: [ ^ CarpCheckParser new parse: proc stdoutStream ]
|
3
Pond.package/CarpChecker.class/instance/file..st
Normal file
3
Pond.package/CarpChecker.class/instance/file..st
Normal file
@@ -0,0 +1,3 @@
|
||||
checking
|
||||
file: aString
|
||||
file := aString
|
3
Pond.package/CarpChecker.class/instance/file.st
Normal file
3
Pond.package/CarpChecker.class/instance/file.st
Normal file
@@ -0,0 +1,3 @@
|
||||
checking
|
||||
file
|
||||
^ file
|
5
Pond.package/CarpChecker.class/instance/initialize.st
Normal file
5
Pond.package/CarpChecker.class/instance/initialize.st
Normal file
@@ -0,0 +1,5 @@
|
||||
checking
|
||||
initialize
|
||||
proc := OSSUnixSubprocess new command: 'carp';
|
||||
redirectStdout;
|
||||
addAllEnvVariablesFromParentWithoutOverride
|
4
Pond.package/CarpChecker.class/instance/run.st
Normal file
4
Pond.package/CarpChecker.class/instance/run.st
Normal file
@@ -0,0 +1,4 @@
|
||||
checking
|
||||
run
|
||||
[ [ proc run ] on: Error do: [ :err | excepted := err ] ] fork.
|
||||
(Delay forMilliseconds: 500) wait.
|
13
Pond.package/CarpChecker.class/properties.json
Normal file
13
Pond.package/CarpChecker.class/properties.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"commentStamp" : "VeitHeller 12/16/2019 10:34",
|
||||
"super" : "CarpProcess",
|
||||
"category" : "Pond",
|
||||
"classinstvars" : [ ],
|
||||
"pools" : [ ],
|
||||
"classvars" : [ ],
|
||||
"instvars" : [
|
||||
"file"
|
||||
],
|
||||
"name" : "CarpChecker",
|
||||
"type" : "normal"
|
||||
}
|
Reference in New Issue
Block a user