summaryrefslogtreecommitdiff
path: root/lib/jsonutil/binstruct.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-07-23 00:46:42 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2023-07-23 00:46:42 -0600
commitc57cc3d4739ffa0346350c63fb4ec59a63b56e46 (patch)
tree8d22d276e869e5b816e3113def16b3defcbd538c /lib/jsonutil/binstruct.go
parent77628ce11ce3693d8ac06f1a404a1005ba05f190 (diff)
parent6e104326f81ec59ece1817988af41b70e4f4cd15 (diff)
Merge branch 'lukeshu/json'
Diffstat (limited to 'lib/jsonutil/binstruct.go')
-rw-r--r--lib/jsonutil/binstruct.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/jsonutil/binstruct.go b/lib/jsonutil/binstruct.go
new file mode 100644
index 0000000..7f4bd3f
--- /dev/null
+++ b/lib/jsonutil/binstruct.go
@@ -0,0 +1,48 @@
+// Copyright (C) 2023 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+package jsonutil
+
+import (
+ "bytes"
+ "fmt"
+ "io"
+
+ "git.lukeshu.com/go/lowmemjson"
+
+ "git.lukeshu.com/btrfs-progs-ng/lib/binstruct"
+ "git.lukeshu.com/btrfs-progs-ng/lib/textui"
+)
+
+type Binary[T any] struct {
+ Val T
+}
+
+var (
+ _ lowmemjson.Encodable = Binary[int]{}
+ _ lowmemjson.Decodable = (*Binary[int])(nil)
+)
+
+func (o Binary[T]) EncodeJSON(w io.Writer) error {
+ bs, err := binstruct.Marshal(o.Val)
+ if err != nil {
+ return err
+ }
+ return EncodeSplitHexString(w, bs, textui.Tunable(80))
+}
+
+func (o *Binary[T]) DecodeJSON(r io.RuneScanner) error {
+ var buf bytes.Buffer
+ if err := DecodeSplitHexString(r, &buf); err != nil {
+ return err
+ }
+ n, err := binstruct.Unmarshal(buf.Bytes(), &o.Val)
+ if err != nil {
+ return err
+ }
+ if n < buf.Len() {
+ return fmt.Errorf("%d bytes of garbage after value", n-buf.Len())
+ }
+ return nil
+}