Skip to main content
summaryrefslogtreecommitdiffstats
blob: b6b08792e44ca39b03030564659eb41e6dc0a8d3 (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 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.core.internal.search.callable;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.eclipse.osee.framework.core.util.Conditions;
import org.eclipse.osee.framework.jdk.core.type.MatchLocation;
import org.eclipse.osee.logger.Log;
import org.eclipse.osee.orcs.core.ds.QueryPostProcessor;
import org.eclipse.osee.orcs.data.ArtifactReadable;
import org.eclipse.osee.orcs.data.AttributeReadable;
import org.eclipse.osee.orcs.search.Match;

public class DefaultQueryPostProcessor extends QueryPostProcessor {

   public DefaultQueryPostProcessor(Log logger) {
      super(logger);
   }

   @Override
   public List<Match<ArtifactReadable, AttributeReadable<?>>> innerCall() throws Exception {
      Conditions.checkNotNull(getItemsToProcess(), "Query first pass results");

      List<Match<ArtifactReadable, AttributeReadable<?>>> results =
         new ArrayList<Match<ArtifactReadable, AttributeReadable<?>>>();

      for (final ArtifactReadable art : getItemsToProcess()) {
         checkForCancelled();
         results.add(new Match<ArtifactReadable, AttributeReadable<?>>() {

            @Override
            public boolean hasLocationData() {
               return false;
            }

            @Override
            public ArtifactReadable getItem() {
               return art;
            }

            @Override
            public Collection<AttributeReadable<?>> getElements() {
               return Collections.emptyList();
            }

            @Override
            public List<MatchLocation> getLocation(AttributeReadable<?> element) {
               return Collections.emptyList();
            }
         });
      }
      return results;
   }
}

Back to the top