Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8ad2f746d9ab792c3e0fe433091ec5d307aae862 (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
/*******************************************************************************
 * Copyright (c) 2012 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.orcs.db.internal.loader.processor;

import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
import org.eclipse.osee.jdbc.JdbcStatement;
import org.eclipse.osee.orcs.core.ds.Options;
import org.eclipse.osee.orcs.core.ds.OrcsDataHandler;
import org.eclipse.osee.orcs.db.internal.loader.data.OrcsDataFactory;

/**
 * @author Roberto E. Escobar
 */
public abstract class LoadProcessor<D, F extends OrcsDataFactory> extends AbstractLoadProcessor<OrcsDataHandler<D>> {

   private final F factory;

   public LoadProcessor(F factory) {
      this.factory = factory;
   }

   @Override
   protected final void onRow(OrcsDataHandler<D> handler, JdbcStatement chStmt, Options options, Object conditions) {
      D data = createData(conditions, factory, chStmt, options);
      if (data != null) {
         handler.onData(data);
      }
   }

   protected abstract D createData(Object conditions, F factory, JdbcStatement chStmt, Options options) throws OseeCoreException;

}

Back to the top