Skip to main content
summaryrefslogtreecommitdiffstats
blob: db5c6ad861da4f67020bc8dd4dfb1ab327a9d753 (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
/*
 * Copyright (c) 2004 - 2012 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:
 *    Andre Dietisheim - initial API and implementation
 *    Eike Stepper - maintenance
 */
package org.eclipse.emf.cdo.tests.revisioncache;

import org.eclipse.emf.cdo.common.db.CDOCommonDBUtil;
import org.eclipse.emf.cdo.common.revision.CDOListFactory;
import org.eclipse.emf.cdo.common.revision.CDORevisionCache;
import org.eclipse.emf.cdo.session.CDOSession;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevisionCache;

import org.eclipse.net4j.db.DBUtil;
import org.eclipse.net4j.db.IDBAdapter;
import org.eclipse.net4j.util.lifecycle.LifecycleUtil;

import org.eclipse.emf.spi.cdo.InternalCDOSession;

import javax.sql.DataSource;

import java.sql.Connection;
import java.sql.SQLException;

/**
 * @author Andre Dietisheim
 */
public abstract class AbstractDBRevisionCacheTest extends AbstractCDORevisionCacheTest
{
  private DataSource dataSource;

  @Override
  protected InternalCDORevisionCache createRevisionCache(CDOSession session) throws Exception
  {
    DataSource dataSource = getDataSource();

    clearDb(dataSource);

    CDORevisionCache revisionCache = CDOCommonDBUtil.createDBCache(//
        getAdapter() //
        , DBUtil.createConnectionProvider(dataSource)//
        , CDOListFactory.DEFAULT//
        , session.getPackageRegistry() //
        , ((InternalCDOSession)session).getRevisionManager().getFactory());
    LifecycleUtil.activate(revisionCache);
    return (InternalCDORevisionCache)revisionCache;
  }

  private DataSource getDataSource()
  {
    if (dataSource == null)
    {
      dataSource = createDataSource();
    }

    return dataSource;
  }

  private void clearDb(DataSource dataSource) throws SQLException
  {
    Connection connection = dataSource.getConnection();
    try
    {
      dropAllTables(connection);
    }
    finally
    {
      DBUtil.close(connection);
    }
  }

  protected abstract DataSource createDataSource();

  protected abstract void dropAllTables(Connection connection);

  protected abstract IDBAdapter getAdapter();
}

Back to the top