forked from proxypoke/i3ipc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.go
51 lines (42 loc) · 1.11 KB
/
command.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Author: slowpoke <mail plus git at slowpoke dot io>
// Repository: https://github.com/proxypoke/i3ipc
//
// This program is free software under the terms of the
// Do What The Fuck You Want To Public License.
// It comes without any warranty, to the extent permitted by
// applicable law. For a copy of the license, see COPYING or
// head to http://sam.zoy.org/wtfpl/COPYING.
package i3ipc
import (
"encoding/json"
)
// Error for replies from a command to i3.
type CommandError string
func (self CommandError) Error() string {
return string(self)
}
// Struct for replies from command messages.
type commandReply struct {
Success bool
Error string
}
// Send a command to i3.
// FIXME: Doesn't support chained commands yet.
func (self *IPCSocket) Command(action string) (success bool, err error) {
json_reply, err := self.Raw(I3Command, action)
if err != nil {
return
}
var cmd_reply []commandReply
err = json.Unmarshal(json_reply, &cmd_reply)
if err != nil {
return
}
success = cmd_reply[0].Success
if cmd_reply[0].Error == "" {
err = nil
} else {
err = CommandError(cmd_reply[0].Error)
}
return
}