forked from ScottOaks/JavaPerformanceTuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockStockPriceEntityManagerFactory.java
More file actions
457 lines (375 loc) · 14.5 KB
/
Copy pathMockStockPriceEntityManagerFactory.java
File metadata and controls
457 lines (375 loc) · 14.5 KB
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
* Copyright (c) 2013 Scott Oaks. All rights reserved.
*/
package net.sdo.stockimpl;
import java.math.BigDecimal;
import java.util.Calendar;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;
import javax.persistence.*;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaDelete;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.CriteriaUpdate;
import javax.persistence.metamodel.Metamodel;
public class MockStockPriceEntityManagerFactory implements EntityManagerFactory {
static private EntityTransaction dummyTransaction = new EntityTransaction() {
@Override
public void begin() {}
@Override
public void commit() {}
@Override
public void rollback() {}
@Override
public void setRollbackOnly() {}
@Override
public boolean getRollbackOnly() { return false; }
@Override
public boolean isActive() { return false; }
};
@Override
public EntityManager createEntityManager(SynchronizationType st) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public EntityManager createEntityManager(SynchronizationType st, Map map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void addNamedQuery(String string, Query query) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T unwrap(Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> void addNamedEntityGraph(String string, EntityGraph<T> eg) {
throw new UnsupportedOperationException("Not supported.");
}
private static class DataHolder {
public Random random = ThreadLocalRandom.current();
public String symbol;
public BigDecimal lastClose;
public Calendar calendar = Calendar.getInstance();
}
private static ThreadLocal<DataHolder> tlDataHolder =
new ThreadLocal<DataHolder>() {
@Override
public DataHolder initialValue() {
return new DataHolder();
}
};
class MockEntityManager implements EntityManager {
@Override
public void persist(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T merge(T t) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void remove(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T find(Class<T> type, Object o) {
return findWithHistory(tlDataHolder.get(), o);
}
protected <T> T findWithHistory(DataHolder dh, Object o) {
StockPricePK pk = (StockPricePK) o;
StockPriceEagerLazyImpl sp = new StockPriceEagerLazyImpl(pk);
dh.calendar.setTime(pk.getDate());
if (dh.calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY ||
dh.calendar.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY) {
return null;
}
if (dh.symbol == null || !dh.symbol.equals(pk.getSymbol())) {
dh.symbol = pk.getSymbol();
sp.setOpeningPrice(
new BigDecimal(
dh.random.nextDouble() * 100).
setScale(2, BigDecimal.ROUND_HALF_UP));
}
else {
sp.setOpeningPrice(dh.lastClose);
}
double pctChange = dh.random.nextDouble() * dh.random.nextDouble();
pctChange *= (dh.random.nextDouble() < 0.6) ? 0.1 : -0.1;
pctChange += 1.0;
sp.setClosingPrice(sp.getOpeningPrice().
multiply(new BigDecimal(pctChange).
setScale(2, BigDecimal.ROUND_HALF_UP)).
setScale(2, BigDecimal.ROUND_HALF_UP));
if (sp.getClosingPrice().compareTo(BigDecimal.ZERO) < 0) {
sp.setClosingPrice(BigDecimal.ZERO);
}
pctChange = dh.random.nextDouble() * dh.random.nextDouble() * 0.1;
sp.setHigh(sp.getOpeningPrice().
multiply(new BigDecimal(pctChange * dh.random.nextDouble())).
setScale(2, BigDecimal.ROUND_HALF_UP));
if (sp.getHigh().compareTo(sp.getClosingPrice()) < 0) {
sp.setHigh(sp.getClosingPrice());
}
if (sp.getHigh().compareTo(sp.getOpeningPrice()) < 0) {
sp.setHigh(sp.getOpeningPrice());
}
pctChange = dh.random.nextDouble() * dh.random.nextDouble() * 0.1;
BigDecimal dailyLoss = sp.getClosingPrice().
multiply(new BigDecimal(pctChange).
setScale(2, BigDecimal.ROUND_HALF_UP)).
setScale(2, BigDecimal.ROUND_HALF_UP);
sp.setLow(sp.getOpeningPrice().subtract(dailyLoss));
if (sp.getLow().compareTo(sp.getClosingPrice()) > 0) {
sp.setLow(sp.getClosingPrice());
}
dh.lastClose = sp.getClosingPrice();
return (T) sp;
}
@Override
public <T> T find(Class<T> type, Object o, Map<String, Object> map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T find(Class<T> type, Object o, LockModeType lmt) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T find(Class<T> type, Object o,
LockModeType lmt, Map<String, Object> map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T getReference(Class<T> type, Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void flush() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void setFlushMode(FlushModeType fmt) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public FlushModeType getFlushMode() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void lock(Object o, LockModeType lmt) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void lock(Object o, LockModeType lmt, Map<String, Object> map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void refresh(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void refresh(Object o, Map<String, Object> map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void refresh(Object o, LockModeType lmt) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void refresh(Object o, LockModeType lmt, Map<String, Object> map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void clear() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void detach(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public boolean contains(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public LockModeType getLockMode(Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void setProperty(String string, Object o) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Map<String, Object> getProperties() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createQuery(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> TypedQuery<T> createQuery(CriteriaQuery<T> cq) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> TypedQuery<T> createQuery(String string, Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createNamedQuery(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> TypedQuery<T> createNamedQuery(String string, Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createNativeQuery(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createNativeQuery(String string, Class type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createNativeQuery(String string, String string1) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void joinTransaction() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> T unwrap(Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Object getDelegate() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void close() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public boolean isOpen() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public EntityTransaction getTransaction() {
return dummyTransaction;
}
@Override
public EntityManagerFactory getEntityManagerFactory() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public CriteriaBuilder getCriteriaBuilder() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Metamodel getMetamodel() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createQuery(CriteriaUpdate cu) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Query createQuery(CriteriaDelete cd) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public StoredProcedureQuery createNamedStoredProcedureQuery(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public StoredProcedureQuery createStoredProcedureQuery(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public StoredProcedureQuery createStoredProcedureQuery(String string, Class... types) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public StoredProcedureQuery createStoredProcedureQuery(String string, String... strings) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public boolean isJoinedToTransaction() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> EntityGraph<T> createEntityGraph(Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public EntityGraph<?> createEntityGraph(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public EntityGraph<?> getEntityGraph(String string) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public <T> List<EntityGraph<? super T>> getEntityGraphs(Class<T> type) {
throw new UnsupportedOperationException("Not supported.");
}
}
class StdRandomMockEntityManager extends MockEntityManager {
@Override
public <T> T find(Class<T> type, Object o) {
DataHolder dh = tlDataHolder.get();
dh.random = new Random();
dh.calendar = Calendar.getInstance();
return findWithHistory(dh, o);
}
}
private String className;
public MockStockPriceEntityManagerFactory(String s) {
className = s;
}
@Override
public EntityManager createEntityManager() {
switch(className) {
case "MockEntityManager": return new MockEntityManager();
case "StdRandomMockEntityManager": return new StdRandomMockEntityManager();
default: throw new IllegalArgumentException("No class defined for " + className);
}
}
@Override
public EntityManager createEntityManager(Map map) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public CriteriaBuilder getCriteriaBuilder() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Metamodel getMetamodel() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public boolean isOpen() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public void close() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Map<String, Object> getProperties() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public Cache getCache() {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public PersistenceUnitUtil getPersistenceUnitUtil() {
throw new UnsupportedOperationException("Not supported.");
}
}