Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e1618797b29641138286c4eb39fe8b1b3ad903c0 (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
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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:
 *    Stefan Winkler - initial API and implementation
 **************************************************************************/
package org.eclipse.emf.cdo.server.internal.db.jdbc;

import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.id.CDOIDUtil;
import org.eclipse.emf.cdo.common.revision.CDORevision;
import org.eclipse.emf.cdo.server.IStoreChunkReader.Chunk;
import org.eclipse.emf.cdo.server.db.IAttributeMapping;
import org.eclipse.emf.cdo.server.db.IClassMapping;
import org.eclipse.emf.cdo.server.db.IDBStoreChunkReader;
import org.eclipse.emf.cdo.server.db.IJDBCDelegate;
import org.eclipse.emf.cdo.server.db.IReferenceMapping;
import org.eclipse.emf.cdo.server.internal.db.FeatureServerInfo;
import org.eclipse.emf.cdo.spi.common.InternalCDORevision;

import org.eclipse.net4j.db.DBException;
import org.eclipse.net4j.db.DBUtil;
import org.eclipse.net4j.db.IDBConnectionProvider;
import org.eclipse.net4j.util.collection.MoveableList;
import org.eclipse.net4j.util.lifecycle.Lifecycle;
import org.eclipse.net4j.util.om.monitor.OMMonitor;
import org.eclipse.net4j.util.om.monitor.OMMonitor.Async;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Collections;
import java.util.List;

/**
 * This abstract implementation of the {@link IJDBCDelegate} interface is used to translate CDO-related objects to base
 * types (e.g. CDOIDs to long) and then to delegate the database execution part to the doXYZ methods which should be
 * implemented by extenders. The purpose of this is to provide several JDBC strategies (e.g. simple or prepared
 * statement database access) depending on the requirements, but a single point of interpreting and transforming
 * CDO-internal structures. The JDBCDelegate also keeps open one database connection and one statement which can be used
 * to perform operations on the database. Extenders may, but don't have to, use the statement to perform operations.
 * 
 * @author Stefan Winkler
 * @since 2.0
 */
public abstract class AbstractJDBCDelegate extends Lifecycle implements IJDBCDelegate
{
  private IDBConnectionProvider connectionProvider;

  private boolean readOnly;

  private Connection connection;

  private Statement statement;

  public AbstractJDBCDelegate()
  {
  }

  public IDBConnectionProvider getConnectionProvider()
  {
    return connectionProvider;
  }

  public void setConnectionProvider(IDBConnectionProvider connectionProvider)
  {
    checkInactive();
    this.connectionProvider = connectionProvider;
  }

  public boolean isReadOnly()
  {
    return readOnly;
  }

  public void setReadOnly(boolean readOnly)
  {
    checkInactive();
    this.readOnly = readOnly;
  }

  public final Connection getConnection()
  {
    return connection;
  }

  public final Statement getStatement()
  {
    if (statement == null)
    {
      try
      {
        statement = getConnection().createStatement();
      }
      catch (SQLException ex)
      {
        throw new DBException(ex);
      }
    }

    return statement;
  }

  public PreparedStatement getPreparedStatement(String sql)
  {
    try
    {
      return getConnection().prepareStatement(sql);
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
  }

  public final void commit(OMMonitor monitor)
  {
    monitor.begin();
    Async async = monitor.forkAsync();

    try
    {
      getConnection().commit();
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
    finally
    {
      async.stop();
      monitor.done();
    }
  }

  public final void rollback()
  {
    try
    {
      getConnection().rollback();
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
  }

  public final void insertAttributes(CDORevision revision, IClassMapping classMapping)
  {
    doInsertAttributes(classMapping.getTable().getName(), revision, classMapping.getAttributeMappings(), classMapping
        .hasFullRevisionInfo());
  }

  public final void insertReference(CDORevision sourceRevision, int index, CDOID targetId,
      IReferenceMapping referenceMapping)
  {
    doInsertReference(referenceMapping.getTable().getName(), referenceMapping.isWithFeature() ? FeatureServerInfo
        .getDBID(referenceMapping.getFeature()) : 0, CDOIDUtil.getLong(sourceRevision.getID()), sourceRevision
        .getVersion(), index, CDOIDUtil.getLong(targetId));
  }

  public final void updateRevised(CDORevision revision, IClassMapping classMapping)
  {
    doUpdateRevised(classMapping.getTable().getName(), revision.getCreated() - 1, CDOIDUtil.getLong(revision.getID()),
        revision.getVersion() - 1);
  }

  public final void updateRevised(CDOID id, long revised, IClassMapping classMapping)
  {
    doUpdateRevised(classMapping.getTable().getName(), revised, CDOIDUtil.getLong(id));
  }

  public final boolean selectRevisionAttributes(CDORevision revision, IClassMapping classMapping, String where)
  {
    List<IAttributeMapping> attributeMappings = classMapping.getAttributeMappings();
    if (attributeMappings == null)
    {
      attributeMappings = Collections.emptyList();
    }

    boolean withFullRevisionInfo = classMapping.hasFullRevisionInfo();
    ResultSet resultSet = null;
    try
    {
      resultSet = doSelectRevisionAttributes(classMapping.getTable().getName(), CDOIDUtil.getLong(revision.getID()),
          attributeMappings, withFullRevisionInfo, where);

      if (!resultSet.next())
      {
        return false;
      }

      int i = 0;
      if (withFullRevisionInfo)
      {
        InternalCDORevision rev = (InternalCDORevision)revision;
        rev.setVersion(resultSet.getInt(++i));
        rev.setCreated(resultSet.getLong(++i));
        rev.setRevised(resultSet.getLong(++i));
        rev.setResourceID(CDOIDUtil.createLong(resultSet.getLong(++i)));
        rev.setContainerID(CDOIDUtil.createLong(resultSet.getLong(++i)));
        rev.setContainingFeatureID(resultSet.getInt(++i));
      }

      if (attributeMappings != null)
      {
        for (IAttributeMapping attributeMapping : attributeMappings)
        {
          attributeMapping.extractValue(resultSet, ++i, revision);
        }
      }

      return true;
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
    finally
    {
      close(resultSet);
    }
  }

  public void selectRevisionReferences(CDORevision revision, IReferenceMapping referenceMapping, int referenceChunk)
  {
    MoveableList<Object> list = ((InternalCDORevision)revision).getList(referenceMapping.getFeature());

    CDOID source = revision.getID();
    long sourceId = CDOIDUtil.getLong(source);
    int version = revision.getVersion();

    ResultSet resultSet = null;
    try
    {
      resultSet = doSelectRevisionReferences(referenceMapping.getTable().getName(), sourceId, version, referenceMapping
          .isWithFeature() ? FeatureServerInfo.getDBID(referenceMapping.getFeature()) : 0, "");

      while (resultSet.next() && (referenceChunk == CDORevision.UNCHUNKED || --referenceChunk >= 0))
      {
        long target = resultSet.getLong(1);
        list.add(CDOIDUtil.createLong(target));
      }

      // TODO Optimize this?
      while (resultSet.next())
      {
        list.add(InternalCDORevision.UNINITIALIZED);
      }
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
    finally
    {
      close(resultSet);
    }
  }

  public void selectRevisionReferenceChunks(IDBStoreChunkReader chunkReader, List<Chunk> chunks,
      IReferenceMapping referenceMapping, String where)
  {
    CDOID source = chunkReader.getRevision().getID();
    long sourceId = CDOIDUtil.getLong(source);
    int version = chunkReader.getRevision().getVersion();

    ResultSet resultSet = null;

    try
    {
      resultSet = doSelectRevisionReferences(referenceMapping.getTable().getName(), sourceId, version, referenceMapping
          .isWithFeature() ? FeatureServerInfo.getDBID(referenceMapping.getFeature()) : 0, where);

      Chunk chunk = null;
      int chunkSize = 0;
      int chunkIndex = 0;
      int indexInChunk = 0;

      while (resultSet.next())
      {
        long target = resultSet.getLong(1);
        if (chunk == null)
        {
          chunk = chunks.get(chunkIndex++);
          chunkSize = chunk.size();
        }

        chunk.add(indexInChunk++, CDOIDUtil.createLong(target));
        if (indexInChunk == chunkSize)
        {
          chunk = null;
          indexInChunk = 0;
        }
      }
    }
    catch (SQLException ex)
    {
      throw new DBException(ex);
    }
    finally
    {
      close(resultSet);
    }
  }

  @Override
  protected void doActivate() throws Exception
  {
    super.doActivate();
    connection = connectionProvider.getConnection();
    connection.setAutoCommit(readOnly);
  }

  @Override
  protected void doDeactivate() throws Exception
  {
    DBUtil.close(statement);
    statement = null;

    DBUtil.close(connection);
    connection = null;

    super.doDeactivate();
  }

  /**
   * Release a statement which has been used by the doSelectXxx implementations to create the respective ResultSet. This
   * must only be called with statements created by subclasses. Subclasses should override to handle special cases like
   * cached statements which are kept open.
   * 
   * @param stmt
   *          the statement to close
   */
  protected void releaseStatement(Statement stmt)
  {
    DBUtil.close(stmt);
  }

  /**
   * Insert an attribute row.
   */
  protected abstract void doInsertAttributes(String tableName, CDORevision revision,
      List<IAttributeMapping> attributeMappings, boolean withFullRevisionInfo);

  /**
   * Insert a reference row. Note: this is likely to be replaced by an implementation that supports storing multiple
   * references in one batch.
   */
  protected abstract void doInsertReference(String tableName, int dbId, long source, int version, int i, long target);

  /**
   * Set the revised date of all unrevised rows of cdoid
   */
  protected abstract void doUpdateRevised(String tableName, long revised, long cdoid);

  /**
   * Set the revised date of a specific revision's previous version.
   */
  protected abstract void doUpdateRevised(String tableName, long revisedStamp, long cdoid, int version);

  /**
   * Select a revision's attributes. The caller is resposible for closing resultSet and associated statement, if
   * appropriate.
   */
  protected abstract ResultSet doSelectRevisionAttributes(String tableName, long revisionId,
      List<IAttributeMapping> attributeMappings, boolean hasFullRevisionInfo, String where) throws SQLException;

  /**
   * Select a revision's references (or a part thereof) The caller is resposible for closing resultSet and associated
   * statement, if appropriate.
   */
  protected abstract ResultSet doSelectRevisionReferences(String tableName, long sourceId, int version,
      int dbFeatureID, String where) throws SQLException;

  /**
   * Close the given result set and the statement, if this is needed (which is the case, iff the resultSet's statement
   * is not the one which is kept open by this instance).
   */
  private void close(ResultSet resultSet)
  {
    Statement stmt = null;

    try
    {
      stmt = resultSet.getStatement();
    }
    catch (Exception ex)
    {
      // Ignore
    }
    finally
    {
      DBUtil.close(resultSet);
    }

    // if the statement is one that has been created for the operation only
    // release it.
    if (stmt != statement)
    {
      releaseStatement(stmt);
    }
  }
}

Back to the top