-
Notifications
You must be signed in to change notification settings - Fork 24
/
htype.go
409 lines (355 loc) · 9.04 KB
/
htype.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
*/
package goh
import (
"fmt"
"github.com/sdming/goh/Hbase"
)
//type Text []byte
func textListToStr(list []Hbase.Text) []string {
if list == nil {
return nil
}
l := len(list)
data := make([]string, l)
for i := 0; i < l; i++ {
data[i] = string(list[i])
}
return data
}
func toHbaseTextList(list []string) []Hbase.Text {
if list == nil {
return nil
}
l := len(list)
data := make([]Hbase.Text, l)
for i := 0; i < l; i++ {
data[i] = Hbase.Text(list[i])
}
return data
}
func toHbaseTextListFromByte(list [][]byte) []Hbase.Text {
if list == nil {
return nil
}
l := len(list)
data := make([]Hbase.Text, l)
for i := 0; i < l; i++ {
data[i] = Hbase.Text(list[i])
}
return data
}
func toHbaseTextMap(source map[string]string) map[string]Hbase.Text {
if source == nil {
return nil
}
data := make(map[string]Hbase.Text, len(source))
for k, v := range source {
data[k] = Hbase.Text(v)
}
return data
}
//type Bytes []byte
//type ScannerID int32
/**
* An HColumnDescriptor contains information about a column family
* such as the number of versions, compression settings, etc. It is
* used as input when creating a table or adding a column.
*
* Attributes:
* - Name
* - MaxVersions
* - Compression
* - InMemory
* - BloomFilterType
* - BloomFilterVectorSize
* - BloomFilterNbHashes
* - BlockCacheEnabled
* - TimeToLive
*/
type ColumnDescriptor struct {
Name string "name" // 1
MaxVersions int32 "maxVersions" // 2
Compression string "compression" // 3
InMemory bool "inMemory" // 4
BloomFilterType string "bloomFilterType" // 5
BloomFilterVectorSize int32 "bloomFilterVectorSize" // 6
BloomFilterNbHashes int32 "bloomFilterNbHashes" // 7
BlockCacheEnabled bool "blockCacheEnabled" // 8
TimeToLive int32 "timeToLive" // 9
}
func toColumn(col *Hbase.ColumnDescriptor) *ColumnDescriptor {
return &ColumnDescriptor{
Name: string(col.Name),
MaxVersions: col.MaxVersions,
Compression: col.Compression,
InMemory: col.InMemory,
BloomFilterType: col.BloomFilterType,
BloomFilterVectorSize: col.BloomFilterVectorSize,
BloomFilterNbHashes: col.BloomFilterNbHashes,
BlockCacheEnabled: col.BlockCacheEnabled,
TimeToLive: col.TimeToLive,
}
}
func toColMap(cols map[string]*Hbase.ColumnDescriptor) map[string]*ColumnDescriptor {
if cols == nil {
return nil
}
data := make(map[string]*ColumnDescriptor, len(cols))
for k, v := range cols {
data[k] = toColumn(v)
}
return data
}
func toHbaseColumn(col *ColumnDescriptor) *Hbase.ColumnDescriptor {
return &Hbase.ColumnDescriptor{
Name: Hbase.Text(col.Name),
MaxVersions: col.MaxVersions,
Compression: col.Compression,
InMemory: col.InMemory,
BloomFilterType: col.BloomFilterType,
BloomFilterVectorSize: col.BloomFilterVectorSize,
BloomFilterNbHashes: col.BloomFilterNbHashes,
BlockCacheEnabled: col.BlockCacheEnabled,
TimeToLive: col.TimeToLive,
}
}
func toHbaseColList(cols []*ColumnDescriptor) []*Hbase.ColumnDescriptor {
if cols == nil {
return nil
}
l := len(cols)
data := make([]*Hbase.ColumnDescriptor, l)
for i := 0; i < l; i++ {
data[i] = toHbaseColumn(cols[i])
}
return data
}
func NewColumnDescriptorDefault(name string) *ColumnDescriptor {
output := &ColumnDescriptor{
MaxVersions: 3,
Compression: "NONE",
InMemory: false,
BloomFilterType: "NONE",
BloomFilterVectorSize: 0,
BloomFilterNbHashes: 0,
BlockCacheEnabled: false,
TimeToLive: -1,
Name: name,
}
return output
}
/**
* A TRegionInfo contains information about an HTable region.
*
* Attributes:
* - StartKey
* - EndKey
* - Id
* - Name
* - Version
* - ServerName
* - Port
*/
type TRegionInfo struct {
StartKey string "startKey" // 1
EndKey string "endKey" // 2
Id int64 "id" // 3
Name string "name" // 4
Version int8 "version" // 5
ServerName string "serverName" // 6
Port int32 "port" // 7
}
func toRegion(region *Hbase.TRegionInfo) *TRegionInfo {
return &TRegionInfo{
StartKey: string(region.StartKey),
EndKey: string(region.EndKey),
Id: region.Id,
Name: string(region.Name),
Version: region.Version,
ServerName: string(region.ServerName),
Port: region.Port,
}
}
func toRegionList(regions []*Hbase.TRegionInfo) []*TRegionInfo {
if regions == nil {
return nil
}
l := len(regions)
data := make([]*TRegionInfo, l)
for i := 0; i < l; i++ {
data[i] = toRegion(regions[i])
}
return data
}
// /**
// * A Mutation object is used to either update or delete a column-value.
// *
// * Attributes:
// * - IsDelete
// * - Column
// * - Value
// * - WriteToWAL
// */
// type Mutation struct {
// IsDelete bool "isDelete" // 1
// Column []byte "column" // 2
// Value []byte "value" // 3
// WriteToWAL bool "writeToWAL" // 4
// }
func NewMutation(column string, value []byte) *Hbase.Mutation {
return &Hbase.Mutation{
IsDelete: false,
WriteToWAL: true,
Column: Hbase.Text(column),
Value: Hbase.Text(value),
}
}
// /**
// * A BatchMutation object is used to apply a number of Mutations to a single row.
// *
// * Attributes:
// * - Row
// * - Mutations
// */
// type BatchMutation struct {
// Row []byte "row" // 1
// Mutations []*Mutation "mutations" // 2
// }
func NewBatchMutation(row []byte, mutations []*Hbase.Mutation) *Hbase.BatchMutation {
return &Hbase.BatchMutation{
Row: []byte(row),
Mutations: mutations,
}
}
// /**
// * For increments that are not incrementColumnValue
// * equivalents.
// *
// * Attributes:
// * - Table
// * - Row
// * - Column
// * - Ammount
// */
// type TIncrement struct {
// Table []byte "table" // 1
// Row []byte "row" // 2
// Column []byte "column" // 3
// Ammount int64 "ammount" // 4
// }
func NewTIncrement(table string, row []byte, column string, ammount int64) *Hbase.TIncrement {
return &Hbase.TIncrement{
Table: Hbase.Text(table),
Row: Hbase.Text(row),
Column: Hbase.Text(column),
Ammount: ammount,
}
}
/**
* Holds row name and then a map of columns to cells.
*
* Attributes:
* - Row
* - Columns
*/
// type TRowResult struct {
// Row string "row" // 1
// Columns map[string]*TCell "columns" // 2
// }
/**
* A Scan object is used to specify scanner parameters when opening a scanner.
*
* Attributes:
* - StartRow
* - StopRow
* - Timestamp
* - Columns
* - Caching
* - FilterString
*/
type TScan struct {
StartRow []byte "startRow" // 1
StopRow []byte "stopRow" // 2
Timestamp int64 "timestamp" // 3
Columns []string "columns" // 4
Caching int32 "caching" // 5
FilterString string "filterString" // 6
}
func toHbaseTScan(scan *TScan) *Hbase.TScan {
if scan == nil {
return nil
}
if scan.FilterString == "" {
return &Hbase.TScan{
StartRow: Hbase.Text(scan.StartRow),
StopRow: Hbase.Text(scan.StopRow),
Timestamp: scan.Timestamp,
Columns: toHbaseTextList(scan.Columns),
Caching: scan.Caching,
FilterString: nil,
}
}
return &Hbase.TScan{
StartRow: Hbase.Text(scan.StartRow),
StopRow: Hbase.Text(scan.StopRow),
Timestamp: scan.Timestamp,
Columns: toHbaseTextList(scan.Columns),
Caching: scan.Caching,
FilterString: Hbase.Text(scan.FilterString),
}
}
// /**
// * TCell - Used to transport a cell value (byte[]) and the timestamp it was
// * stored with together as a result for get and getRow methods. This promotes
// * the timestamp of a cell to a first-class value, making it easy to take
// * note of temporal data. Cell is used all the way from HStore up to HTable.
// *
// * Attributes:
// * - Value
// * - Timestamp
// */
// type TCell struct {
// Value []byte "value" // 1
// Timestamp int64 "timestamp" // 2
// }
// /**
// * An IOError exception signals that an error occurred communicating
// * to the Hbase master or an Hbase region server. Also used to return
// * more general Hbase error conditions.
// *
// * Attributes:
// * - Message
// */
// type IOError struct {
// Message string "message" // 1
// }
// /**
// * An IllegalArgument exception indicates an illegal or invalid
// * argument was passed into a procedure.
// *
// * Attributes:
// * - Message
// */
// type IllegalArgument struct {
// Message string "message" // 1
// }
// /**
// * An AlreadyExists exceptions signals that a table with the specified
// * name already exists
// *
// * Attributes:
// * - Message
// */
// type AlreadyExists struct {
// Message string "message" // 1
// }
// func (t *AlreadyExists) String() string {
// if t == nil {
// return "<nil>"
// }
// return t.Message
// }
func name() {
fmt.Println("...")
}