forked from thriftrw/thriftrw-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.js
123 lines (114 loc) · 4.18 KB
/
set.js
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
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
'use strict';
var util = require('util');
var assert = require('assert');
var ThriftList = require('./list').ThriftList;
var TYPE = require('./TYPE');
function ThriftSet(valueType, annotations) {
ThriftList.call(this, valueType, annotations);
this.mode = annotations && annotations['js.type'] || 'array';
this.form = null;
this.surface = null;
if (this.mode === 'object') {
if (valueType.name === 'string') {
this.rw.form = this.objectStringForm;
// istanbul ignore else
} else if (
valueType.name === 'byte' ||
valueType.name === 'i16' ||
valueType.name === 'i32'
) {
this.rw.form = this.objectNumberForm;
} else {
assert.fail('sets with js.type of \'object\' must have a value type ' +
'of \'string\', \'byte\', \'i16\', or \'i32\'');
}
this.surface = Object;
// istanbul ignore else
} else if (this.mode === 'array') {
this.rw.form = this.arrayForm;
this.surface = Array;
} else {
assert.fail('set must have js.type of object or array (default)');
}
this.annotations = annotations;
}
util.inherits(ThriftSet, ThriftList);
ThriftSet.prototype.name = 'set';
ThriftSet.prototype.typeid = TYPE.SET;
// Lists are indistinguishable on the wire apart from the typeid.
// A prior version of thriftrw was writing sets with the list typeid.
// Allowing an alternate typeid eases migration temporarily.
ThriftSet.prototype.altTypeid = TYPE.LIST;
ThriftSet.prototype.models = 'type';
ThriftSet.prototype.arrayForm = {
create: function create() {
return [];
},
add: function add(values, value) {
values.push(value);
},
toArray: function toArray(values) {
assert(Array.isArray(values), 'set must be expressed as an array');
return values;
}
};
ThriftSet.prototype.objectNumberForm = {
create: function create() {
return {};
},
add: function add(values, value) {
values[value] = true;
},
toArray: function toArray(object) {
assert(object && typeof object === 'object', 'set must be expressed as an object');
var keys = Object.keys(object);
var values = [];
for (var index = 0; index < keys.length; index++) {
// istanbul ignore else
if (object[keys[index]]) {
values.push(+keys[index]);
}
}
return values;
}
};
ThriftSet.prototype.objectStringForm = {
create: function create() {
return {};
},
add: function add(values, value) {
values[value] = true;
},
toArray: function toArray(object) {
assert(object && typeof object === 'object', 'set must be expressed as an object');
var keys = Object.keys(object);
var values = [];
for (var index = 0; index < keys.length; index++) {
// istanbul ignore else
if (object[keys[index]]) {
values.push(keys[index]);
}
}
return values;
}
};
module.exports.ThriftSet = ThriftSet;