Skip to main content
summaryrefslogtreecommitdiffstats
blob: e07054a306ec52206a5c50cae0d01a3d24f1d312 (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
/*******************************************************************************
 * 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.coverage.model;

import java.io.File;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.eclipse.osee.framework.core.exception.OseeArgumentException;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.jdk.core.util.AHTML;
import org.eclipse.osee.framework.jdk.core.util.Strings;
import org.eclipse.osee.framework.skynet.core.artifact.KeyValueArtifact;
import org.eclipse.osee.framework.ui.skynet.results.XResultData;
import org.eclipse.osee.framework.ui.skynet.widgets.XDate;

/**
 * Single import of coverage information that includes
 * 
 * @author Donald G. Dunne
 */
public class CoverageImport extends CoveragePackageBase implements ICoverage {

   private Date runDate;
   private String location = "";
   private String blamName = "";
   private List<File> importRecordFiles = new ArrayList<File>();
   private String importDirectory = null;

   public CoverageImport(String name) {
      this(name, new Date());
   }

   public CoverageImport(String name, Date runDate) {
      super(name, CoverageOptionManagerDefault.instance());
      this.runDate = runDate;
   }

   public Date getRunDate() {
      return runDate;
   }

   public String getName() {
      return super.getName() + " - " + XDate.getDateStr(runDate, XDate.MMDDYYHHMM) + " - " + getCoverageItems().size() + " Coverage Items";
   }

   @Override
   public void getOverviewHtmlHeader(XResultData xResultData) {
      xResultData.log(AHTML.bold("Coverage Import for " + XDate.getDateStr(getRunDate(), XDate.HHMMSSSS)) + AHTML.newline());
      xResultData.log(AHTML.getLabelValueStr("Location", location));
      if (Strings.isValid(getBlamName())) {
         xResultData.log(AHTML.getLabelValueStr("Blam Name", getBlamName()));
      }
      xResultData.log(AHTML.getLabelValueStr("Run Date", XDate.getDateStr(getRunDate(), XDate.MMDDYYHHMM)));
   }

   public String getLocation() {
      return location;
   }

   public void setLocation(String location) {
      this.location = location;
   }

   public String getBlamName() {
      return blamName;
   }

   public void setBlamName(String blamName) {
      this.blamName = blamName;
   }

   @Override
   public void loadKeyValues(KeyValueArtifact keyValueArtifact) throws OseeCoreException {
      if (Strings.isValid(keyValueArtifact.getValue("location"))) {
         setLocation(keyValueArtifact.getValue("location"));
      }
      if (Strings.isValid(keyValueArtifact.getValue("blamName"))) {
         setBlamName(keyValueArtifact.getValue("blamName"));
      }
   }

   @Override
   public void saveKeyValues(KeyValueArtifact keyValueArtifact) throws OseeCoreException {
      keyValueArtifact.setValue("location", location);
      keyValueArtifact.setValue("blamName", blamName);
   }

   public void setRunDate(Date runDate) {
      this.runDate = runDate;
   }

   @Override
   public Date getDate() {
      return getRunDate();
   }

   public void addImportRecordFile(File file) throws OseeArgumentException {
      if (!file.exists()) throw new OseeArgumentException(String.format("Import Record file [%s] doesn't exist.", file));
      importRecordFiles.add(file);
   }

   public List<File> getImportRecordFiles() {
      return importRecordFiles;
   }

   public String getImportDirectory() {
      return importDirectory;
   }

   public void setImportDirectory(String importDirectory) {
      this.importDirectory = importDirectory;
   }
}

Back to the top