hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
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
410
411
412
413
414
415
416
417
418
419
package frame.object.data;
 
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
 
import chat.server.call.IJSONWriter;
import chat.server.call.IJsonProvider;
import frame.object.meta.EntityMeta;
import frame.util.Util;
import frame.variant.IVariantsConsumer;
import frame.variant.IVariantsProvider;
import frame.variant.ValueType;
import frame.variant.VariantLink;
import frame.variant.translator.ITranslator;
import frame.variant.translator.StringTranslator;
import frame.variant.translator.Translator;
 
 
public class Entity implements IVariantsConsumer, IVariantsProvider, IJsonProvider {
 
    private boolean deleted = false;
    private EntityMeta entityMeta;
    private Object[] dataArray;
 
    
    public Entity(EntityMeta tableMeta) {
        this.entityMeta = tableMeta;
        dataArray = new Object[tableMeta.getFieldCount()];
    }
 
    public void set(int i, Object object) {
        dataArray[i] = object;
    }
 
    public Entity set(String name, Object value) throws Exception {
        Integer idx = entityMeta.getIndex(name);
        
        if (idx == null) {
            return this;
        }
        
        if (value == null) {
            dataArray[idx] = null;
        }
        else {
            ITranslator translator = entityMeta.getTranslator(idx);
            Object obj = Translator.toTranslatorTypeValue(value, translator.getDataClass());
            dataArray[idx] = obj;
        }
        
        return this;
    }
 
    public ID getID() {
        return new ID(getVarinatValue("id"));
    }
    
    public void setID(ID id) throws Exception {
        set("id", id.getValue());
    }
 
    public Object getVarinatValue(String field) {
        int idx = entityMeta.getIndex(field);
        return dataArray[idx];
    }
    
    public ValueType getValueType(int idx) {
        return entityMeta.getValueType(idx);
    }
    
    public Object getValue(int idx) {
        return dataArray[idx];
    }
    
    public Object getValue(String fieldName) {
        Integer idx = entityMeta.getIndex(fieldName);
        
        if (idx == null) {
            return null;
        }
        
        return dataArray[idx];
    }
 
    public String getString(String fieldName) {
        Integer idx = entityMeta.getIndex(fieldName);
        
        if (idx == null) {
            return null;
        }
        
        return getString(idx, null);
    }
 
    public String getString(String fieldName, String defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getString(idx, defaultValue);
    }
 
    public String getString(int idx, String defaultValue) {
        try {
            Object value = dataArray[idx];
            ITranslator translator = entityMeta.getTranslator(idx);
            return translator.toString(value);
        }
        catch (Exception e) {
            return "error";
        }
    }
    
    public String getQuotedString(String fieldName) {
        int idx = entityMeta.getIndex(fieldName);
        return getQuotedString(idx, null);
    }
 
    public String getQuotedString(String fieldName, String defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getQuotedString(idx, defaultValue);
    }
    
    public String getQuotedString(int idx, String defaultValue) {
        String result = getString(idx, defaultValue);
        return Util.quotedStr(result);
    }
    
    public String getJSONString(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getJSONString(idx);
    }
    
    public String getJSONString(String fieldName, String defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getJSONString(idx, defaultValue);
    }
    
    public String getJSONString(int idx, String defaultValue) {
        try {
            return getJSONString(idx);
        }
        catch (Exception e) {
            e.printStackTrace();
            return "\"error\"";
        }
    }
    
    public String getJSONString(int idx) throws Exception {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        if (translator == null) {
            translator = new StringTranslator();
        }
        return translator.toJSONString(value);
    }
    
    public String getSQLString(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getSQLString(idx);
    }
    
    public String getSQLString(int idx) throws Exception {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toSqlString(value);
    }
    
    public String getSQLString(int idx, String defaultValue) {
        try {
            String result = getSQLString(idx);
            return result;
        }
        catch(Exception e) {
            return defaultValue;
        }
    }
 
    public String getSchemaString(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getSchemaString(idx);
    }
    
    public String getSchemaString(int idx) throws Exception {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toSchemaString(value);
    }
 
    public boolean getBoolean(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getBoolean(idx, false);
    }
    
    public boolean getBoolean(String fieldName, boolean defaultValue) {
        Integer idx = entityMeta.getIndex(fieldName);
        
        if (idx == null) {
            return defaultValue;
        }
        
        return getBoolean(idx, defaultValue);
    }    
    
    public boolean getBoolean(int idx, boolean defaultValue) {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toBoolean(value, defaultValue);
    }
    
    public Date getDate(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getDate(idx, null);
    }
    
    public Date getDate(String fieldName, Date defaultValue) {
        Integer idx = entityMeta.getIndex(fieldName);
        
        if (idx == null) {
            return defaultValue;
        }
        
        try {
            return getDate(idx, defaultValue);
        }
        catch (Exception e) {
            return defaultValue;
        }
    }    
    
    public Date getDate(int idx, Date defaultValue) throws Exception {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toDate(value, defaultValue);
    }
 
    public Integer getInteger(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getInteger(idx, 0);
    }
    
    public Integer getInteger(String fieldName, int defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getInteger(idx, defaultValue);        
    }
    
    public Integer getInteger(int idx, int defaultValue) {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toInteger(value, defaultValue);
    }
    
    public BigDecimal getBigDecimal(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getBigDecimal(idx, BigDecimal.ZERO);
    }
    
    public BigDecimal getBigDecimal(String fieldName, BigDecimal defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getBigDecimal(idx, defaultValue);
    }
    
    public BigDecimal getBigDecimal(int idx, BigDecimal defaultValue) {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toBigDecimal(value, defaultValue);
    }
    
    public double getDouble(String fieldName) throws Exception {
        int idx = entityMeta.getIndex(fieldName);
        return getDouble(idx, 0);
    }
    
    public double getDouble(String fieldName, double defaultValue) {
        int idx = entityMeta.getIndex(fieldName);
        return getDouble(idx, defaultValue);
    }
    
    public double getDouble(int idx, double defaultValue) {
        Object value = dataArray[idx];
        ITranslator translator = entityMeta.getTranslator(idx);
        return translator.toDouble(value, defaultValue);
    }
 
    public String getSQLTypeCode(String typeField, String lengthField) {
        Object type = getValue(typeField);
        Object length = getValue(lengthField);
        
        return Translator.toSQLTypeCode(type, length);
    }
 
    public String getSQLNullCode(String fieldName) {
        Object nullable = getValue(fieldName);
        return Translator.toSQLNullCode(nullable);
    }
    
    public int getFieldCount() {
        return entityMeta.getFieldCount();
    }
 
    public String[] getLowerNames() {
        return entityMeta.getLowerNames();
    }
 
    public EntityMeta getEntityMeta() {
        return entityMeta;
    }
 
    public boolean isEmptyValue(String fieldName) {
        Integer idx = entityMeta.getIndex(fieldName);
        
        if (idx == null) {
            return true;
        }
        
        return isEmptyValue(idx);
    }
    
    public boolean isEmptyValue(int idx) {
        return dataArray[idx] == null;
    }
 
    @Override
    public List<String> getVariantNameList() {
        String[] lowerNames = entityMeta.getLowerNames();
        return Arrays.asList(lowerNames);
    }
 
    @Override
    public boolean containsVariant(String name) {
        return entityMeta.contains(name);
    }
 
    public void setVariant(String name, Object value) throws Exception {
        set(name, value);
    }
    
    public boolean valueEquals(String field, Object anotherValue) {
        Object value = getVarinatValue(field);
        
        if (value == null) {
            if (anotherValue == null) {
                return true;
            }
            
            return false;
        }
        
        if (anotherValue == null) {
            return false;
        }
        
        if (value.getClass().equals(anotherValue.getClass())) {
            return value.equals(anotherValue);
        }
        
        String valueStr = Translator.toString(value, "");
        String anotherStr = Translator.toString(anotherValue, "");
        return valueStr.equals(anotherStr);
    }
 
    public boolean isEmpty() {
        for (int i = 0; i < dataArray.length; i++) {
            if (dataArray[i] != null) {
                return false;
            }
        }
        
        return true;
    }
 
    public void setDeleted() {
        deleted = true;
    }
 
    public boolean isDeleted() {
        return deleted;
    }
    
    public String getTableName() {
        return entityMeta.getTableName();
    }
 
    @Override
    public void writeJSONObject(IJSONWriter writer) {
        writer.beginObject();
        writeJSONData(writer);
        writer.endObject();        
    }
 
    @Override
    public void writeJSONData(IJSONWriter writer) {
        String[] propertyNames = entityMeta.getLowerNames();
        int cnt = propertyNames.length;
        
        for (int i = 0; i < cnt; i++) {
            writer.writeJSON(propertyNames[i], getJSONString(i, "\"error\""));
        }        
    }
 
    @Override
    public void setVariants(IVariantsProvider... providers) throws Exception {
        VariantLink.moveOnConsumer(this, providers);
    }
 
    @Override
    public Object getVariantValue(String name) {
        return getValue(name);
    }
 
    @Override
    public boolean isVariantNull(String name) {
        return isEmptyValue(name);
    }
 
    public boolean fieldExists(String fieldName) {
        return entityMeta.contains(fieldName);
    }
 
}