writer.go 3.16 KB
Newer Older
Jan Winkelmann's avatar
Jan Winkelmann committed
1 2 3
package cmds

import (
4
	"encoding/json"
Jan Winkelmann's avatar
Jan Winkelmann committed
5 6 7
	"fmt"
	"io"
	"reflect"
8
	"sync"
9

10
	"gx/ipfs/QmYiqbfRCkryYvJsxBopy77YEhxNZXTmq5Y2qiKyenc59C/go-ipfs-cmdkit"
Jan Winkelmann's avatar
Jan Winkelmann committed
11 12
)

Jan Winkelmann's avatar
Jan Winkelmann committed
13
func NewWriterResponseEmitter(w io.WriteCloser, req Request, enc func(Request) func(io.Writer) Encoder) *WriterResponseEmitter {
Jan Winkelmann's avatar
Jan Winkelmann committed
14
	re := &WriterResponseEmitter{
15 16
		w:   w,
		c:   w,
Jan Winkelmann's avatar
Jan Winkelmann committed
17
		req: req,
Jan Winkelmann's avatar
Jan Winkelmann committed
18
	}
Jan Winkelmann's avatar
Jan Winkelmann committed
19 20 21 22 23 24

	if enc != nil {
		re.enc = enc(req)(w)
	}

	return re
Jan Winkelmann's avatar
Jan Winkelmann committed
25 26 27
}

func NewReaderResponse(r io.Reader, encType EncodingType, req Request) Response {
28 29
	emitted := make(chan struct{})

Jan Winkelmann's avatar
Jan Winkelmann committed
30 31 32 33 34
	return &readerResponse{
		req:     req,
		r:       r,
		encType: encType,
		dec:     Decoders[encType](r),
35
		emitted: emitted,
Jan Winkelmann's avatar
Jan Winkelmann committed
36 37 38 39 40 41 42 43 44 45 46
	}
}

type readerResponse struct {
	r       io.Reader
	encType EncodingType
	dec     Decoder

	req Request

	length uint64
47
	err    *cmdsutil.Error
Jan Winkelmann's avatar
Jan Winkelmann committed
48

49 50
	emitted chan struct{}
	once    sync.Once
Jan Winkelmann's avatar
Jan Winkelmann committed
51 52
}

Jan Winkelmann's avatar
Jan Winkelmann committed
53 54
func (r *readerResponse) Request() Request {
	return r.req
Jan Winkelmann's avatar
Jan Winkelmann committed
55 56
}

57
func (r *readerResponse) Error() *cmdsutil.Error {
58 59
	<-r.emitted

Jan Winkelmann's avatar
Jan Winkelmann committed
60 61 62 63
	return r.err
}

func (r *readerResponse) Length() uint64 {
64 65
	<-r.emitted

Jan Winkelmann's avatar
Jan Winkelmann committed
66 67 68 69
	return r.length
}

func (r *readerResponse) Next() (interface{}, error) {
70 71 72
	a := &Any{}
	a.Add(cmdsutil.Error{})
	a.Add(r.req.Command().Type)
Jan Winkelmann's avatar
Jan Winkelmann committed
73

74 75 76 77 78
	err := r.dec.Decode(a)
	if err != nil {
		return nil, err
	}

79 80
	r.once.Do(func() { close(r.emitted) })

81
	v := a.Interface()
Jan Winkelmann's avatar
Jan Winkelmann committed
82 83 84 85 86 87 88
	if err, ok := v.(cmdsutil.Error); ok {
		r.err = &err
		return nil, ErrRcvdError
	}
	if err, ok := v.(*cmdsutil.Error); ok {
		r.err = err
		return nil, ErrRcvdError
89 90 91
	}

	return v, nil
Jan Winkelmann's avatar
Jan Winkelmann committed
92 93
}

94
type WriterResponseEmitter struct {
Jan Winkelmann's avatar
Jan Winkelmann committed
95
	// TODO maybe make those public?
96 97 98
	w   io.Writer
	c   io.Closer
	enc Encoder
Jan Winkelmann's avatar
Jan Winkelmann committed
99
	req Request
Jan Winkelmann's avatar
Jan Winkelmann committed
100 101

	length *uint64
102
	err    *cmdsutil.Error
Jan Winkelmann's avatar
Jan Winkelmann committed
103 104 105 106

	emitted bool
}

Jan Winkelmann's avatar
Jan Winkelmann committed
107 108 109 110
func (re *WriterResponseEmitter) SetEncoder(mkEnc func(io.Writer) Encoder) {
	re.enc = mkEnc(re.w)
}

111 112
func (re *WriterResponseEmitter) SetError(v interface{}, errType cmdsutil.ErrorType) error {
	return re.Emit(&cmdsutil.Error{Message: fmt.Sprint(v), Code: errType})
Jan Winkelmann's avatar
Jan Winkelmann committed
113 114
}

115
func (re *WriterResponseEmitter) SetLength(length uint64) {
Jan Winkelmann's avatar
Jan Winkelmann committed
116 117 118 119 120 121 122
	if re.emitted {
		return
	}

	*re.length = length
}

123 124 125 126 127 128 129 130 131 132 133 134
func (re *WriterResponseEmitter) Close() error {
	return re.c.Close()
}

func (re *WriterResponseEmitter) Head() Head {
	return Head{
		Len: *re.length,
		Err: re.err,
	}
}

func (re *WriterResponseEmitter) Emit(v interface{}) error {
135 136 137
	if ch, ok := v.(chan interface{}); ok {
		v = (<-chan interface{})(ch)
	}
Jan Winkelmann's avatar
Jan Winkelmann committed
138

139 140 141 142 143 144 145 146
	if ch, isChan := v.(<-chan interface{}); isChan {
		for v = range ch {
			err := re.Emit(v)
			if err != nil {
				return err
			}
		}
		return nil
Jan Winkelmann's avatar
Jan Winkelmann committed
147 148
	}

149 150 151
	re.emitted = true

	return re.enc.Encode(v)
Jan Winkelmann's avatar
Jan Winkelmann committed
152 153
}

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
type Any struct {
	types []reflect.Type

	v interface{}
}

func (a *Any) UnmarshalJSON(data []byte) error {
	var (
		iv  interface{}
		err error
	)

	for _, t := range a.types {
		v := reflect.New(t)

		err = json.Unmarshal(data, v.Interface())
		if err == nil && v.Elem().Interface() != reflect.Zero(t).Interface() {
			a.v = v.Elem().Interface()
			return nil
		}
	}

	err = json.Unmarshal(data, &iv)
	a.v = iv

	return err
}

func (a *Any) Add(v interface{}) {
	t := reflect.TypeOf(v)
	if t.Kind() == reflect.Ptr || t.Kind() == reflect.Interface {
		t = t.Elem()
	}

	a.types = append(a.types, t)
}

func (a *Any) Interface() interface{} {
	return a.v
}