writer.go 2.87 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

	"github.com/ipfs/go-ipfs-cmds/cmdsutil"
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 {
14 15 16
	return &WriterResponseEmitter{
		w:   w,
		c:   w,
Jan Winkelmann's avatar
Jan Winkelmann committed
17 18
		enc: enc(req)(w),
		req: req,
Jan Winkelmann's avatar
Jan Winkelmann committed
19 20 21 22
	}
}

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

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

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

	req Request
	t   reflect.Type

	length uint64
43
	err    *cmdsutil.Error
Jan Winkelmann's avatar
Jan Winkelmann committed
44

45 46
	emitted chan struct{}
	once    sync.Once
Jan Winkelmann's avatar
Jan Winkelmann committed
47 48
}

Jan Winkelmann's avatar
Jan Winkelmann committed
49 50
func (r *readerResponse) Request() Request {
	return r.req
Jan Winkelmann's avatar
Jan Winkelmann committed
51 52
}

53
func (r *readerResponse) Error() *cmdsutil.Error {
54 55
	<-r.emitted

Jan Winkelmann's avatar
Jan Winkelmann committed
56 57 58 59
	return r.err
}

func (r *readerResponse) Length() uint64 {
60 61
	<-r.emitted

Jan Winkelmann's avatar
Jan Winkelmann committed
62 63 64 65
	return r.length
}

func (r *readerResponse) Next() (interface{}, error) {
66 67 68
	a := &Any{}
	a.Add(cmdsutil.Error{})
	a.Add(r.req.Command().Type)
Jan Winkelmann's avatar
Jan Winkelmann committed
69

70 71 72 73 74
	err := r.dec.Decode(a)
	if err != nil {
		return nil, err
	}

75 76
	r.once.Do(func() { close(r.emitted) })

77
	v := a.Interface()
Jan Winkelmann's avatar
Jan Winkelmann committed
78 79 80 81 82 83 84
	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
85 86 87
	}

	return v, nil
Jan Winkelmann's avatar
Jan Winkelmann committed
88 89
}

90
type WriterResponseEmitter struct {
Jan Winkelmann's avatar
Jan Winkelmann committed
91
	// TODO maybe make those public?
92 93 94
	w   io.Writer
	c   io.Closer
	enc Encoder
Jan Winkelmann's avatar
Jan Winkelmann committed
95
	req Request
Jan Winkelmann's avatar
Jan Winkelmann committed
96 97

	length *uint64
98
	err    *cmdsutil.Error
Jan Winkelmann's avatar
Jan Winkelmann committed
99 100 101 102

	emitted bool
}

Jan Winkelmann's avatar
Jan Winkelmann committed
103 104 105
func (re *WriterResponseEmitter) SetError(v interface{}, errType cmdsutil.ErrorType) {
	log.Debugf("re.SetError(%v, %v)", v, errType)
	re.Emit(&cmdsutil.Error{Message: fmt.Sprint(v), Code: errType})
Jan Winkelmann's avatar
Jan Winkelmann committed
106 107
}

108
func (re *WriterResponseEmitter) SetLength(length uint64) {
Jan Winkelmann's avatar
Jan Winkelmann committed
109 110 111 112 113 114 115
	if re.emitted {
		return
	}

	*re.length = length
}

116 117 118 119 120 121 122 123 124 125 126 127
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 {
Jan Winkelmann's avatar
Jan Winkelmann committed
128 129
	re.emitted = true

Jan Winkelmann's avatar
Jan Winkelmann committed
130 131 132 133 134 135 136 137
	err := re.enc.Encode(v)
	if err != nil {
		return err
	}

	return nil
}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 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
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
}