Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7e4daf6871fad071a728ba12616eb1e4e9f34dae (plain) (blame)
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
/**
 * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.tests;

import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.id.CDOIDUtil;
import org.eclipse.emf.cdo.common.io.CDODataOutput;
import org.eclipse.emf.cdo.common.revision.CDOList;
import org.eclipse.emf.cdo.common.revision.CDOReferenceAdjuster;
import org.eclipse.emf.cdo.common.revision.CDORevision;
import org.eclipse.emf.cdo.common.revision.CDORevisionData;
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
import org.eclipse.emf.cdo.internal.common.revision.cache.lru.DLRevisionHolder;
import org.eclipse.emf.cdo.internal.common.revision.cache.lru.LRURevisionCache;
import org.eclipse.emf.cdo.internal.common.revision.cache.lru.LRURevisionHolder;
import org.eclipse.emf.cdo.internal.common.revision.cache.lru.LRURevisionList;
import org.eclipse.emf.cdo.internal.common.revision.cache.lru.RevisionHolder;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDOList;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevision;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EStructuralFeature;

import java.io.IOException;
import java.util.LinkedList;
import java.util.List;

/**
 * @author Eike Stepper
 */
public class RevisionHolderTest extends AbstractCDOTest
{
  public void testChronology() throws Exception
  {
    LRURevisionCache cache = new LRURevisionCache();
    cache.activate();

    TestRevision r1v1 = new TestRevision(1, 1, 1);
    cache.addRevision(r1v1);
    assertEquals(CDORevision.UNSPECIFIED_DATE, r1v1.getRevised());

    TestRevision r1v2 = new TestRevision(1, 2, 6);
    cache.addRevision(r1v2);
    assertEquals(CDORevision.UNSPECIFIED_DATE, r1v2.getRevised());
    assertEquals(r1v2.getCreated() - 1, r1v1.getRevised());

    TestRevision r1v3 = new TestRevision(1, 3, 11);
    cache.addRevision(r1v3);
    assertEquals(CDORevision.UNSPECIFIED_DATE, r1v3.getRevised());
    assertEquals(r1v3.getCreated() - 1, r1v2.getRevised());
    assertEquals(r1v2.getCreated() - 1, r1v1.getRevised());

    CDOID id = r1v1.getID();

    RevisionHolder h1v3 = cache.getHolder(id);
    assertEquals(r1v3, h1v3.getRevision());

    RevisionHolder h1v2 = h1v3.getNext();
    assertEquals(r1v2, h1v2.getRevision());

    RevisionHolder h1v1 = h1v2.getNext();
    assertEquals(r1v1, h1v1.getRevision());
    assertEquals(null, h1v1.getNext());

    h1v2 = h1v1.getPrev();
    assertEquals(r1v2, h1v2.getRevision());

    h1v3 = h1v2.getPrev();
    assertEquals(r1v3, h1v3.getRevision());
    assertEquals(null, h1v3.getPrev());
  }

  public void testAddHead() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    validateList(list, 0);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addFirst(holder);
      list.addHead(holder);
      validateList(list, i + 1);
      validateList(list, linkedList);
    }
  }

  public void testAddTail() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    validateList(list, 0);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addLast(holder);
      list.addTail(holder);
      validateList(list, i + 1);
      validateList(list, linkedList);
    }
  }

  public void testRemoveHead() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addLast(holder);
      list.addTail(holder);
    }

    validateList(list, 10);
    validateList(list, linkedList);

    LRURevisionHolder holder = linkedList.removeFirst();
    list.remove(holder);
    validateList(list, 9);
    validateList(list, linkedList);
  }

  public void testRemoveTail() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addLast(holder);
      list.addTail(holder);
    }

    validateList(list, 10);
    validateList(list, linkedList);

    LRURevisionHolder holder = linkedList.removeLast();
    list.remove(holder);
    validateList(list, 9);
    validateList(list, linkedList);
  }

  public void testRemoveMiddle() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addLast(holder);
      list.addTail(holder);
    }

    validateList(list, 10);
    validateList(list, linkedList);

    LRURevisionHolder holder = linkedList.remove(5);
    list.remove(holder);
    validateList(list, 9);
    validateList(list, linkedList);
  }

  public void testRemoveAll() throws Exception
  {
    LinkedList<LRURevisionHolder> linkedList = new LinkedList<LRURevisionHolder>();
    LRURevisionList list = new LRURevisionList(100);
    for (int i = 0; i < 10; i++)
    {
      LRURevisionHolder holder = new LRURevisionHolder(new TestRevision(i));
      linkedList.addLast(holder);
      list.addTail(holder);
    }

    validateList(list, 10);
    validateList(list, linkedList);

    for (int i = 10; i > 0; i--)
    {
      LRURevisionHolder holder = linkedList.remove(0);
      list.remove(holder);
      validateList(list, i - 1);
      validateList(list, linkedList);
    }

    validateList(list, 0);
    validateList(list, linkedList);
  }

  public void testRevised() throws Exception
  {
    LRURevisionCache cache = new LRURevisionCache();
    cache.activate();

    TestRevision r1v1 = new TestRevision(1, 1, 1);
    cache.addRevision(r1v1);
    assertEquals(CDORevision.UNSPECIFIED_DATE, r1v1.getRevised());

    TestRevision r1v3 = new TestRevision(1, 3, 11);
    cache.addRevision(r1v3);
    assertEquals(CDORevision.UNSPECIFIED_DATE, r1v3.getRevised());
    assertNotSame(r1v3.getCreated() - 1, r1v1.getRevised());

    CDOID id = r1v1.getID();

    RevisionHolder h1v3 = cache.getHolder(id);
    assertEquals(r1v3, h1v3.getRevision());
  }

  private void validateList(LRURevisionList list, int size)
  {
    assertEquals(size, list.size());
    if (size == 0)
    {
      assertEquals(list.getDLHead(), list.getDLTail());
    }
    else
    {
      assertNotNull(list.getDLHead());
      assertNotNull(list.getDLTail());
    }

    assertEquals(list.getDLHead(), list.getDLHead().getDLNext().getDLPrev());
    assertEquals(list.getDLTail(), list.getDLTail().getDLPrev().getDLNext());

    DLRevisionHolder holder = list.getDLHead();
    for (int i = 0; i < size; i++)
    {
      assertEquals(holder, holder.getDLNext().getDLPrev());
      assertEquals(holder, holder.getDLPrev().getDLNext());
    }
  }

  private void validateList(LRURevisionList list, List<LRURevisionHolder> expected)
  {
    assertEquals(expected.size(), list.size());
    for (int i = 0; i < expected.size(); i++)
    {
      assertEquals(expected.get(i), list.get(i));
    }
  }

  /**
   * @author Eike Stepper
   */
  private static final class TestRevision implements InternalCDORevision
  {
    private CDOID id;

    private int version;

    private long created;

    private long revised;

    public TestRevision(long id, int version, long created, long revised)
    {
      this.id = CDOIDUtil.createLong(id);
      this.version = version;
      this.created = created;
      this.revised = revised;
    }

    public TestRevision(long id, int version, long created)
    {
      this(id, version, created, CDORevision.UNSPECIFIED_DATE);
    }

    public TestRevision(long id)
    {
      this(id, 0, CDORevision.UNSPECIFIED_DATE);
    }

    public CDOID getID()
    {
      return id;
    }

    public void setID(CDOID id)
    {
      this.id = id;
    }

    public int getVersion()
    {
      return version;
    }

    public void setVersion(int version)
    {
      this.version = version;
    }

    public long getCreated()
    {
      return created;
    }

    public void setCreated(long created)
    {
      this.created = created;
    }

    public long getRevised()
    {
      return revised;
    }

    public void setRevised(long revised)
    {
      this.revised = revised;
    }

    public boolean isCurrent()
    {
      return revised == UNSPECIFIED_DATE;
    }

    public boolean isTransactional()
    {
      return version < 0;
    }

    public boolean isValid(long timeStamp)
    {
      return (revised == UNSPECIFIED_DATE || revised >= timeStamp) && timeStamp >= created;
    }

    public EClass getEClass()
    {
      throw new UnsupportedOperationException();
    }

    public CDORevisionData data()
    {
      throw new UnsupportedOperationException();
    }

    public boolean isResourceNode()
    {
      throw new UnsupportedOperationException();
    }

    public boolean isResourceFolder()
    {
      throw new UnsupportedOperationException();
    }

    public boolean isResource()
    {
      throw new UnsupportedOperationException();
    }

    public CDORevisionDelta compare(CDORevision origin)
    {
      throw new UnsupportedOperationException();
    }

    public void merge(CDORevisionDelta delta)
    {
      throw new UnsupportedOperationException();
    }

    public CDORevision copy()
    {
      return new TestRevision(CDOIDUtil.getLong(id), version, created, revised);
    }

    public void write(CDODataOutput out, int referenceChunk) throws IOException
    {
      throw new UnsupportedOperationException();
    }

    public void add(EStructuralFeature feature, int index, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public void adjustReferences(CDOReferenceAdjuster revisionAdjuster)
    {
      throw new UnsupportedOperationException();
    }

    public void clear(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public boolean contains(EStructuralFeature feature, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public Object get(EStructuralFeature feature, int index)
    {
      throw new UnsupportedOperationException();
    }

    public Object getContainerID()
    {
      throw new UnsupportedOperationException();
    }

    public int getContainingFeatureID()
    {
      throw new UnsupportedOperationException();
    }

    public CDOList getList(EStructuralFeature feature, int size)
    {
      throw new UnsupportedOperationException();
    }

    public CDOList getList(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public CDOID getResourceID()
    {
      throw new UnsupportedOperationException();
    }

    public CDORevision revision()
    {
      throw new UnsupportedOperationException();
    }

    public Object getValue(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public int hashCode(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public int indexOf(EStructuralFeature feature, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public boolean isEmpty(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public int lastIndexOf(EStructuralFeature feature, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public Object move(EStructuralFeature feature, int targetIndex, int sourceIndex)
    {
      throw new UnsupportedOperationException();
    }

    public Object remove(EStructuralFeature feature, int index)
    {
      throw new UnsupportedOperationException();
    }

    public Object set(EStructuralFeature feature, int index, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public void setContainerID(Object containerID)
    {
      throw new UnsupportedOperationException();
    }

    public void setContainingFeatureID(int containingFeatureID)
    {
      throw new UnsupportedOperationException();
    }

    public void setListSize(EStructuralFeature feature, int size)
    {
      throw new UnsupportedOperationException();
    }

    public void setResourceID(CDOID resourceID)
    {
      throw new UnsupportedOperationException();
    }

    public int setTransactional()
    {
      throw new UnsupportedOperationException();
    }

    public void setUntransactional()
    {
      throw new UnsupportedOperationException();
    }

    public Object setValue(EStructuralFeature feature, Object value)
    {
      throw new UnsupportedOperationException();
    }

    public int size(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public <T> T[] toArray(EStructuralFeature feature, T[] array)
    {
      throw new UnsupportedOperationException();
    }

    public Object[] toArray(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public void unset(EStructuralFeature feature)
    {
      throw new UnsupportedOperationException();
    }

    public void setList(EStructuralFeature feature, InternalCDOList list)
    {
      throw new UnsupportedOperationException();
    }

    public Object basicGet(EStructuralFeature feature, int index)
    {
      throw new UnsupportedOperationException();
    }

    public Object basicSet(EStructuralFeature feature, int index, Object value)
    {
      throw new UnsupportedOperationException();
    }
  }
}

Back to the top