Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0fa04aac6205c20df1952509dd2893460b8e51c7 (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
/**
 * 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
 *    Simon McDuff - http://bugs.eclipse.org/213402
 */
package org.eclipse.emf.cdo.internal.common.io;

import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.id.CDOIDAndVersion;
import org.eclipse.emf.cdo.common.id.CDOIDMetaRange;
import org.eclipse.emf.cdo.common.id.CDOIDObject;
import org.eclipse.emf.cdo.common.id.CDOIDObjectFactory;
import org.eclipse.emf.cdo.common.id.CDOID.Type;
import org.eclipse.emf.cdo.common.io.CDODataInput;
import org.eclipse.emf.cdo.common.model.CDOClass;
import org.eclipse.emf.cdo.common.model.CDOClassRef;
import org.eclipse.emf.cdo.common.model.CDOFeature;
import org.eclipse.emf.cdo.common.model.CDOModelUtil;
import org.eclipse.emf.cdo.common.model.CDOPackage;
import org.eclipse.emf.cdo.common.model.CDOPackageManager;
import org.eclipse.emf.cdo.common.model.CDOPackageURICompressor;
import org.eclipse.emf.cdo.common.model.CDOType;
import org.eclipse.emf.cdo.common.revision.CDOList;
import org.eclipse.emf.cdo.common.revision.CDOListFactory;
import org.eclipse.emf.cdo.common.revision.CDORevision;
import org.eclipse.emf.cdo.common.revision.CDORevisionResolver;
import org.eclipse.emf.cdo.common.revision.CDORevisionUtil;
import org.eclipse.emf.cdo.common.revision.delta.CDOFeatureDelta;
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
import org.eclipse.emf.cdo.internal.common.bundle.OM;
import org.eclipse.emf.cdo.internal.common.id.CDOIDAndVersionImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDExternalImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDExternalTempImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDMetaImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDMetaRangeImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDTempMetaImpl;
import org.eclipse.emf.cdo.internal.common.id.CDOIDTempObjectImpl;
import org.eclipse.emf.cdo.internal.common.model.CDOClassImpl;
import org.eclipse.emf.cdo.internal.common.model.CDOClassRefImpl;
import org.eclipse.emf.cdo.internal.common.model.CDOFeatureImpl;
import org.eclipse.emf.cdo.internal.common.model.CDOPackageImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOAddFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOClearFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOContainerFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOListFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOMoveFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDORemoveFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDORevisionDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOSetFeatureDeltaImpl;
import org.eclipse.emf.cdo.internal.common.revision.delta.CDOUnsetFeatureDeltaImpl;
import org.eclipse.emf.cdo.spi.common.id.AbstractCDOID;
import org.eclipse.emf.cdo.spi.common.model.InternalCDOPackage;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDOList;

import org.eclipse.net4j.util.ImplementationError;
import org.eclipse.net4j.util.concurrent.RWLockManager;
import org.eclipse.net4j.util.io.ExtendedDataInput;
import org.eclipse.net4j.util.io.ExtendedIOUtil.ClassResolver;
import org.eclipse.net4j.util.om.trace.ContextTracer;

import java.io.IOException;

/**
 * @author Eike Stepper
 */
public abstract class CDODataInputImpl implements CDODataInput
{
  private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG_PROTOCOL, CDODataInputImpl.class);

  private ExtendedDataInput in;

  public CDODataInputImpl(ExtendedDataInput in)
  {
    this.in = in;
  }

  public ExtendedDataInput getDelegate()
  {
    return in;
  }

  public boolean readBoolean() throws IOException
  {
    return in.readBoolean();
  }

  public byte readByte() throws IOException
  {
    return in.readByte();
  }

  public byte[] readByteArray() throws IOException
  {
    return in.readByteArray();
  }

  public char readChar() throws IOException
  {
    return in.readChar();
  }

  public double readDouble() throws IOException
  {
    return in.readDouble();
  }

  public float readFloat() throws IOException
  {
    return in.readFloat();
  }

  public void readFully(byte[] b, int off, int len) throws IOException
  {
    in.readFully(b, off, len);
  }

  public void readFully(byte[] b) throws IOException
  {
    in.readFully(b);
  }

  public int readInt() throws IOException
  {
    return in.readInt();
  }

  public String readLine() throws IOException
  {
    return in.readLine();
  }

  public long readLong() throws IOException
  {
    return in.readLong();
  }

  public Object readObject() throws IOException
  {
    return in.readObject();
  }

  public Object readObject(ClassLoader classLoader) throws IOException
  {
    return in.readObject(classLoader);
  }

  public Object readObject(ClassResolver classResolver) throws IOException
  {
    return in.readObject(classResolver);
  }

  public short readShort() throws IOException
  {
    return in.readShort();
  }

  public String readString() throws IOException
  {
    return in.readString();
  }

  public int readUnsignedByte() throws IOException
  {
    return in.readUnsignedByte();
  }

  public int readUnsignedShort() throws IOException
  {
    return in.readUnsignedShort();
  }

  public String readUTF() throws IOException
  {
    return in.readUTF();
  }

  public int skipBytes(int n) throws IOException
  {
    return in.skipBytes(n);
  }

  public CDOType readCDOType() throws IOException
  {
    int typeID = readInt();
    return CDOModelUtil.getType(typeID);
  }

  public String readCDOPackageURI() throws IOException
  {
    return getPackageURICompressor().readPackageURI(this);
  }

  public void readCDOPackage(CDOPackage cdoPackage) throws IOException
  {
    ((InternalCDOPackage)cdoPackage).read(this);
  }

  public CDOPackage readCDOPackage() throws IOException
  {
    return new CDOPackageImpl(getPackageManager(), this);
  }

  public CDOClassRef readCDOClassRef() throws IOException
  {
    return new CDOClassRefImpl(this);
  }

  public CDOClass readCDOClassRefAndResolve() throws IOException
  {
    CDOClassRef classRef = readCDOClassRef();
    CDOPackageManager packageManager = getPackageManager();
    CDOClass cdoClass = classRef.resolve(packageManager);
    if (cdoClass == null)
    {
      throw new IllegalStateException("ClassRef unresolveable: " + classRef);
    }

    return cdoClass;
  }

  public CDOClass readCDOClass(CDOPackage containingPackage) throws IOException
  {
    return new CDOClassImpl(containingPackage, this);
  }

  public CDOFeature readCDOFeature(CDOClass containingClass) throws IOException
  {
    return new CDOFeatureImpl(containingClass, this);
  }

  public CDOID readCDOID() throws IOException
  {
    byte ordinal = readByte();
    if (TRACER.isEnabled())
    {
      String type;
      try
      {
        type = Type.values()[ordinal].toString();
      }
      catch (RuntimeException ex)
      {
        type = ex.getMessage();
      }

      TRACER.format("Reading CDOID of type {0} ({1})", ordinal, type);
    }

    Type type = Type.values()[ordinal];
    switch (type)
    {
    case NULL:
      return CDOID.NULL;

    case TEMP_OBJECT:
      return new CDOIDTempObjectImpl(readInt());

    case TEMP_META:
      return new CDOIDTempMetaImpl(readInt());

    case META:
      return new CDOIDMetaImpl(readLong());

    case EXTERNAL_OBJECT:
      return new CDOIDExternalImpl(readString());

    case EXTERNAL_TEMP_OBJECT:
      return new CDOIDExternalTempImpl(readString());

    case OBJECT:
    {
      CDOIDObject id = getIDFactory().createCDOIDObject(this);
      ((AbstractCDOID)id).read(this);
      return id;
    }

    default:
      throw new ImplementationError();
    }
  }

  public CDOIDAndVersion readCDOIDAndVersion() throws IOException
  {
    return new CDOIDAndVersionImpl(this);
  }

  public CDOIDMetaRange readCDOIDMetaRange() throws IOException
  {
    boolean exist = readBoolean();
    if (exist)
    {
      return new CDOIDMetaRangeImpl(readCDOID(), readInt());
    }

    return null;
  }

  public CDORevision readCDORevision() throws IOException
  {
    boolean notNull = readBoolean();
    if (notNull)
    {
      return readCDORevisionData();
    }

    return null;
  }

  public CDOList readCDOList(CDORevision revision, CDOFeature feature) throws IOException
  {
    // TODO Simon: Could most of this stuff be moved into the list?
    // (only if protected methods of this class don't need to become public)
    CDOType type = feature.getType();
    int referenceChunk;
    int size = in.readInt();
    if (size < 0)
    {
      size = -size;
      referenceChunk = in.readInt();
      if (TRACER.isEnabled())
      {
        TRACER.format("Read feature {0}: size={1}, referenceChunk={2}", feature, size, referenceChunk);
      }
    }
    else
    {
      referenceChunk = size;
      if (TRACER.isEnabled())
      {
        TRACER.format("Read feature {0}: size={1}", feature, size);
      }
    }

    InternalCDOList list = (InternalCDOList)getListFactory().createList(size, size, referenceChunk);
    for (int j = 0; j < referenceChunk; j++)
    {
      Object value = type.readValue(this);
      list.set(j, value);
      if (TRACER.isEnabled())
      {
        TRACER.trace("    " + value);
      }
    }

    return list;
  }

  public CDORevisionDelta readCDORevisionDelta() throws IOException
  {
    return new CDORevisionDeltaImpl(this);
  }

  public CDOFeatureDelta readCDOFeatureDelta(CDOClass cdoClass) throws IOException
  {
    int typeOrdinal = readInt();
    CDOFeatureDelta.Type type = CDOFeatureDelta.Type.values()[typeOrdinal];
    switch (type)
    {
    case ADD:
      return new CDOAddFeatureDeltaImpl(this, cdoClass);

    case SET:
      return new CDOSetFeatureDeltaImpl(this, cdoClass);

    case LIST:
      return new CDOListFeatureDeltaImpl(this, cdoClass);

    case MOVE:
      return new CDOMoveFeatureDeltaImpl(this, cdoClass);

    case CLEAR:
      return new CDOClearFeatureDeltaImpl(this, cdoClass);

    case REMOVE:
      return new CDORemoveFeatureDeltaImpl(this, cdoClass);

    case CONTAINER:
      return new CDOContainerFeatureDeltaImpl(this, cdoClass);

    case UNSET:
      return new CDOUnsetFeatureDeltaImpl(this, cdoClass);

    default:
      throw new IOException("Invalid type " + typeOrdinal);
    }
  }

  public Object readCDORevisionOrPrimitive() throws IOException
  {
    CDOType type = readCDOType();
    return type.readValue(this);
  }

  public Object readCDORevisionOrPrimitiveOrClass() throws IOException
  {
    boolean isClass = readBoolean();
    if (isClass)
    {
      return readCDOClassRefAndResolve();
    }

    return readCDORevisionOrPrimitive();
  }

  public RWLockManager.LockType readCDOLockType() throws IOException
  {
    return readBoolean() ? RWLockManager.LockType.WRITE : RWLockManager.LockType.READ;
  }

  protected CDORevision readCDORevisionData() throws IOException
  {
    return CDORevisionUtil.read(this);
  }

  protected abstract CDOPackageManager getPackageManager();

  protected abstract CDOPackageURICompressor getPackageURICompressor();

  protected abstract CDORevisionResolver getRevisionResolver();

  protected abstract CDOIDObjectFactory getIDFactory();

  protected abstract CDOListFactory getListFactory();
}

Back to the top