aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-12-22 21:35:14 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-12-22 21:35:14 +0100
commit6a938e20abc6c4b61683db447f912f67482f4779 (patch)
tree87a7a0161cff2200398f7d691b6f5284a420cbb3
parentafc001a4ae2aac6161616661622285925eb59076 (diff)
Added splitter method selection in eows lib.
-rw-r--r--golib/eows/eows-out.go13
-rw-r--r--golib/eows/eows.go14
2 files changed, 25 insertions, 2 deletions
diff --git a/golib/eows/eows-out.go b/golib/eows/eows-out.go
index 3abbdc0..2a6b110 100644
--- a/golib/eows/eows-out.go
+++ b/golib/eows/eows-out.go
@@ -3,9 +3,10 @@ package eows
import (
"bufio"
"io"
+ "strings"
)
-// scanBlocks
+// scanBlocks - gain character by character (or as soon as one or more characters are available)
func scanBlocks(data []byte, atEOF bool) (advance int, token []byte, err error) {
if atEOF && len(data) == 0 {
return 0, nil, nil
@@ -20,7 +21,12 @@ func (e *ExecOverWS) cmdPumpStdout(r io.Reader, done chan struct{}) {
}()
sc := bufio.NewScanner(r)
+
+ // else use default sc.ScanLines
+ if e.OutSplit == SplitChar {
sc.Split(scanBlocks)
+ }
+
for sc.Scan() {
e.OutputCB(e, sc.Text(), "")
}
@@ -37,7 +43,12 @@ func (e *ExecOverWS) cmdPumpStderr(r io.Reader) {
defer func() {
}()
sc := bufio.NewScanner(r)
+
+ // else use default sc.ScanLines
+ if e.OutSplit == SplitChar {
sc.Split(scanBlocks)
+ }
+
for sc.Scan() {
e.OutputCB(e, "", sc.Text())
}
diff --git a/golib/eows/eows.go b/golib/eows/eows.go
index 6fc3550..a5767ed 100644
--- a/golib/eows/eows.go
+++ b/golib/eows/eows.go
@@ -20,6 +20,16 @@ type EmitOutputCB func(e *ExecOverWS, stdout, stderr string)
// EmitExitCB is the function callback used to emit exit proc code
type EmitExitCB func(e *ExecOverWS, code int, err error)
+// SplitType Type of spliting method to tokenize stdout/stderr
+type SplitType uint8
+
+const (
+ // SplitLine Split line by line
+ SplitLine SplitType = iota
+ // SplitChar Split character by character
+ SplitChar
+)
+
// Inspired by :
// https://github.com/gorilla/websocket/blob/master/examples/command/main.go
@@ -40,6 +50,7 @@ type ExecOverWS struct {
OutputCB EmitOutputCB // stdout/stderr callback
ExitCB EmitExitCB // exit proc callback
UserData *map[string]interface{} // user data passed to callbacks
+ OutSplit SplitType // split method to tokenize stdout/stderr
// Private fields
proc *os.Process
@@ -56,7 +67,8 @@ func New(cmd string, args []string, so *socketio.Socket, soID, cmdID string) *Ex
SocketIO: so,
Sid: soID,
CmdID: cmdID,
- CmdExecTimeout: -1, // default no timeout
+ CmdExecTimeout: -1, // default no timeout
+ OutSplit: SplitChar, // default split by character
}
cmdIDMap[cmdID] = e