1
0
Fork 0
mirror of https://git.sr.ht/~rjarry/aerc synced 2025-02-23 07:53:59 +01:00
aerc/lib/ipc/message.go
Robin Jarry 4e545d45fa treewide: fix English spelling
Use codespell to fix typos in code, comments and man pages.

Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Bence Ferdinandy <bence@ferdinandy.com>
Acked-by: inwit <inwit@sindominio.net>
2025-01-21 13:39:01 +01:00

52 lines
1.4 KiB
Go

package ipc
import "encoding/json"
// Request contains all parameters needed for the main instance to respond to
// a request.
type Request struct {
// Arguments contains the commandline arguments. The detection of what
// action to take is left to the receiver.
Arguments []string `json:"arguments"`
}
// Response is used to report the results of a command.
type Response struct {
// Error contains the success-state of the command. Error is an empty
// string if everything ran successfully.
Error string `json:"error"`
}
// Encode transforms the message in an easier to transfer format
func (msg *Request) Encode() ([]byte, error) {
return json.Marshal(msg)
}
// DecodeMessage consumes a raw message and returns the message contained
// within.
func DecodeMessage(data []byte) (*Request, error) {
msg := new(Request)
err := json.Unmarshal(data, msg)
return msg, err
}
// Encode transforms the message in an easier to transfer format
func (msg *Response) Encode() ([]byte, error) {
return json.Marshal(msg)
}
// DecodeRequest consumes a raw message and returns the message contained
// within.
func DecodeRequest(data []byte) (*Request, error) {
msg := new(Request)
err := json.Unmarshal(data, msg)
return msg, err
}
// DecodeResponse consumes a raw message and returns the message contained
// within.
func DecodeResponse(data []byte) (*Response, error) {
msg := new(Response)
err := json.Unmarshal(data, msg)
return msg, err
}