8 "github.com/jhalter/mobius/concat"
21 TranSendInstantMsg = 108
22 TranShowAgreement = 109
23 TranDisconnectUser = 110
24 TranDisconnectMsg = 111 // TODO: implement server initiated friendly disconnect
25 TranInviteNewChat = 112
26 TranInviteToChat = 113
27 TranRejectChatInvite = 114
30 TranNotifyChatChangeUser = 117
31 TranNotifyChatDeleteUser = 118
32 TranNotifyChatSubject = 119
33 TranSetChatSubject = 120
35 TranServerBanner = 122
36 TranGetFileNameList = 200
37 TranDownloadFile = 202
44 TranMakeFileAlias = 209
45 TranDownloadFldr = 210
46 TranDownloadInfo = 211 // TODO: implement file transfer queue
47 TranDownloadBanner = 212
49 TranGetUserNameList = 300
50 TranNotifyChangeUser = 301
51 TranNotifyDeleteUser = 302
52 TranGetClientInfoText = 303
53 TranSetClientUserInfo = 304
61 TranUserBroadcast = 355
62 TranGetNewsCatNameList = 370
63 TranGetNewsArtNameList = 371
67 TranGetNewsArtData = 400
73 type Transaction struct {
76 Flags byte // Reserved (should be 0)
77 IsReply byte // Request (0) or reply (1)
78 Type []byte // Requested operation (user defined)
79 ID []byte // Unique transaction ID (must be != 0)
80 ErrorCode []byte // Used in the reply (user defined, 0 = no error)
81 TotalSize []byte // Total data size for the transaction (all parts)
82 DataSize []byte // Size of data in this transaction part. This allows splitting large transactions into smaller parts.
83 ParamCount []byte // Number of the parameters for this transaction
87 func NewTransaction(t int, clientID *[]byte, fields ...Field) *Transaction {
88 typeSlice := make([]byte, 2)
89 binary.BigEndian.PutUint16(typeSlice, uint16(t))
91 idSlice := make([]byte, 4)
92 binary.BigEndian.PutUint32(idSlice, rand.Uint32())
100 ErrorCode: []byte{0, 0, 0, 0},
105 // Write implements io.Writer interface for Transaction
106 func (t *Transaction) Write(p []byte) (n int, err error) {
107 totalSize := binary.BigEndian.Uint32(p[12:16])
109 // the buf may include extra bytes that are not part of the transaction
110 // tranLen represents the length of bytes that are part of the transaction
111 tranLen := int(20 + totalSize)
113 if tranLen > len(p) {
114 return n, errors.New("buflen too small for tranLen")
116 fields, err := ReadFields(p[20:22], p[22:tranLen])
125 t.ErrorCode = p[8:12]
126 t.TotalSize = p[12:16]
127 t.DataSize = p[16:20]
128 t.ParamCount = p[20:22]
134 const tranHeaderLen = 20 // fixed length of transaction fields before the variable length fields
136 // transactionScanner implements bufio.SplitFunc for parsing incoming byte slices into complete tokens
137 func transactionScanner(data []byte, _ bool) (advance int, token []byte, err error) {
138 // The bytes that contain the size of a transaction are from 12:16, so we need at least 16 bytes
143 totalSize := binary.BigEndian.Uint32(data[12:16])
145 // tranLen represents the length of bytes that are part of the transaction
146 tranLen := int(tranHeaderLen + totalSize)
147 if tranLen > len(data) {
151 return tranLen, data[0:tranLen], nil
154 const minFieldLen = 4
156 func ReadFields(paramCount []byte, buf []byte) ([]Field, error) {
157 paramCountInt := int(binary.BigEndian.Uint16(paramCount))
158 if paramCountInt > 0 && len(buf) < minFieldLen {
159 return []Field{}, fmt.Errorf("invalid field length %v", len(buf))
162 // A Field consists of:
165 // Data: FieldSize number of bytes
167 for i := 0; i < paramCountInt; i++ {
168 if len(buf) < minFieldLen {
169 return []Field{}, fmt.Errorf("invalid field length %v", len(buf))
172 fieldSize := buf[2:4]
173 fieldSizeInt := int(binary.BigEndian.Uint16(buf[2:4]))
174 expectedLen := minFieldLen + fieldSizeInt
175 if len(buf) < expectedLen {
176 return []Field{}, fmt.Errorf("field length too short")
179 fields = append(fields, Field{
181 FieldSize: fieldSize,
182 Data: buf[4 : 4+fieldSizeInt],
185 buf = buf[fieldSizeInt+4:]
189 return []Field{}, fmt.Errorf("extra field bytes")
195 func (t *Transaction) MarshalBinary() (data []byte, err error) {
196 payloadSize := t.Size()
198 fieldCount := make([]byte, 2)
199 binary.BigEndian.PutUint16(fieldCount, uint16(len(t.Fields)))
201 var fieldPayload []byte
202 for _, field := range t.Fields {
203 fieldPayload = append(fieldPayload, field.Payload()...)
206 return concat.Slices(
207 []byte{t.Flags, t.IsReply},
212 payloadSize, // this is the dataSize field, but seeming the same as totalSize
218 // Size returns the total size of the transaction payload
219 func (t *Transaction) Size() []byte {
220 bs := make([]byte, 4)
223 for _, field := range t.Fields {
224 fieldSize += len(field.Data) + 4
227 binary.BigEndian.PutUint32(bs, uint32(fieldSize+2))
232 func (t *Transaction) GetField(id int) Field {
233 for _, field := range t.Fields {
234 if id == int(binary.BigEndian.Uint16(field.ID)) {
242 func (t *Transaction) IsError() bool {
243 return bytes.Equal(t.ErrorCode, []byte{0, 0, 0, 1})