Skip to main content
summaryrefslogtreecommitdiffstats
blob: a5ec34da710826a5f5d174bfdb0bff917ae9ca10 (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
/*******************************************************************************
 * 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.database.core.IOseeStatement;
import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
import org.eclipse.osee.orcs.core.ds.Options;
import org.eclipse.osee.orcs.core.ds.OrcsDataHandler;
import org.eclipse.osee.orcs.data.HasLocalId;
import org.eclipse.osee.orcs.db.internal.loader.data.OrcsDataFactory;

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

   private final F factory;

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

   public final int processResultSet(OrcsDataHandler<D> handler, IOseeStatement chStmt, Options options) throws OseeCoreException {
      int rowCount = 0;
      Object conditions = createPreConditions();
      while (chStmt.next()) {
         rowCount++;
         D data = createData(conditions, factory, chStmt, options);
         if (data != null) {
            handler.onData(data);
         }
      }
      return rowCount;
   }

   protected Object createPreConditions() {
      return null;
   }

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

}

Back to the top