Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/granule/GranuleCtrl.java 6.66 KB
cfbb6d07   Nathanael Jourdane   Implement most of...
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
/*
 * This file is a part of EpnTAPClient.
 * This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
 * See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
 * Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
 *
 * This program is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or (at your option) any later
 * version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See the GNU General Public License for more details. You should have received a copy of
 * the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

package eu.omp.irap.vespa.epntapclient.granule;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.logging.Logger;

import eu.omp.irap.vespa.votable.utils.Debug;
import eu.omp.irap.vespa.votable.votabledata.VOTableData;

/**
 * @author N. Jourdane
 */
public class GranuleCtrl {

	/** The logger for the class GranuleCtrl. */
	private static final Logger logger = Logger.getLogger(GranuleCtrl.class.getName());

	private VOTableData data;


	public GranuleCtrl(VOTableData data) {
		this.data = data;
	}

	private String parseString(int rowId, GranuleEnum granuleEnum) {
b021ed9a   Jean-Michel Glorian   catch the excepti...
45
46
47
48
49
50
51
52
		String res = "";
		try {
			res = (String) data.getCell(rowId, granuleEnum.toString());
		} catch (Exception e) {
			logger.warning(granuleEnum + "not found in the rowId" + rowId + 
					": return an empty string");
		}
		return res;
cfbb6d07   Nathanael Jourdane   Implement most of...
53
54
55
56
	}

	private Date parseDate(int rowId, GranuleEnum granuleEnum) throws ParseException {
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd");
b021ed9a   Jean-Michel Glorian   catch the excepti...
57
58
59
60
61
62
63
64
65
		Date date = new Date();
		try {
			date = sdf.parse((String) data.getCell(rowId, granuleEnum.toString()));
		} catch (Exception e) {
			logger.warning(granuleEnum + "not found in the rowId" + rowId + 
					": return an empty Date");
		}
		
		return date;
cfbb6d07   Nathanael Jourdane   Implement most of...
66
67
68
	}

	private Double parseDouble(int rowId, GranuleEnum granuleEnum) {
b021ed9a   Jean-Michel Glorian   catch the excepti...
69
70
71
72
73
74
75
76
		Double d = null;
		try {
			d = (Double) data.getCell(rowId, granuleEnum.toString());
		} catch (Exception e) {
			logger.warning(granuleEnum + "not found in the rowId" + rowId + 
					": return a Double.NaN");
		}
		
cfbb6d07   Nathanael Jourdane   Implement most of...
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
123
124
125
126
127
		return d == null ? Double.NaN : d;
	}

	public Granule getGranuleFromVOTableRow(int rowId) throws ParseException {

		// TODO: parser colonne par colonne pour éviter de faire des comparer les noms de colone à
		// chaque ligne.
		Debug.writeObject("data", data);

		//@noformat
		Granule g = new Granule(parseString(rowId, GranuleEnum.GRANULE_UID));
		g.granuleGid = parseString(rowId, GranuleEnum.GRANULE_GID);
		g.obsId = parseString(rowId, GranuleEnum.OBS_ID);
		g.dataproductType = parseString(rowId, GranuleEnum.DATAPRODUCT_TYPE);
		g.targetName = parseString(rowId, GranuleEnum.TARGET_NAME);
		g.targetClass = parseString(rowId, GranuleEnum.TARGET_CLASS);
		g.timeMin = parseDouble(rowId, GranuleEnum.TIME_MIN);
		g.timeMax = parseDouble(rowId, GranuleEnum.TIME_MAX);
		g.timeSamplingStepMin = parseDouble(rowId, GranuleEnum.TIME_SAMPLING_STEP_MIN);
		g.timeSamplingStepMax = parseDouble(rowId, GranuleEnum.TIME_SAMPLING_STEP_MAX);
		g.timeExpMin = parseDouble(rowId, GranuleEnum.TIME_EXP_MIN);
		g.timeExpMax = parseDouble(rowId, GranuleEnum.TIME_EXP_MAX);
		g.spectralRangeMin = parseDouble(rowId, GranuleEnum.SPECTRAL_RANGE_MIN);
		g.spectralRangeMax = parseDouble(rowId, GranuleEnum.SPECTRAL_RANGE_MAX);
		g.timeSamplingStepMin = parseDouble(rowId, GranuleEnum.TIME_SAMPLING_STEP_MIN);
		g.timeSamplingStepMax = parseDouble(rowId, GranuleEnum.TIME_SAMPLING_STEP_MAX);
		g.spectralResolutionMin = parseDouble(rowId, GranuleEnum.SPECTRAL_RESOLUTION_MIN);
		g.spectralResolutionMax = parseDouble(rowId, GranuleEnum.SPECTRAL_RESOLUTION_MAX);
		g.c1Min = parseDouble(rowId, GranuleEnum.C1MIN);
		g.c1Max = parseDouble(rowId, GranuleEnum.C1MAX);
		g.c2Min = parseDouble(rowId, GranuleEnum.C2MIN);
		g.c2Max = parseDouble(rowId, GranuleEnum.C2MAX);
		g.c3Min = parseDouble(rowId, GranuleEnum.C3MIN);
		g.c3Max = parseDouble(rowId, GranuleEnum.C3MAX);
		g.sRegion = parseString(rowId, GranuleEnum.S_REGION);
		g.c1ResolMin = parseDouble(rowId, GranuleEnum.C1_RESOL_MIN);
		g.c1ResolMax = parseDouble(rowId, GranuleEnum.C1_RESOL_MAX);
		g.c2ResolMin = parseDouble(rowId, GranuleEnum.C2_RESOL_MIN);
		g.c2ResolMax = parseDouble(rowId, GranuleEnum.C2_RESOL_MAX);
		g.c3ResolMin = parseDouble(rowId, GranuleEnum.C3_RESOL_MIN);
		g.c3ResolMax = parseDouble(rowId, GranuleEnum.C3_RESOL_MAX);
		g.spatialFrameType = parseString(rowId, GranuleEnum.SPATIAL_FRAME_TYPE);
		g.incidenceMin = parseDouble(rowId, GranuleEnum.INCIDENCE_MIN);
		g.incidenceMax = parseDouble(rowId, GranuleEnum.INCIDENCE_MAX);
		g.emergenceMin = parseDouble(rowId, GranuleEnum.EMERGENCE_MIN);
		g.emergenceMax = parseDouble(rowId, GranuleEnum.EMERGENCE_MAX);
		g.phaseMin = parseDouble(rowId, GranuleEnum.PHASE_MIN);
		g.phaseMax = parseDouble(rowId, GranuleEnum.PHASE_MAX);
		g.instrumentHostName = parseString(rowId, GranuleEnum.INSTRUMENT_HOST_NAME);
		g.instrumentName = parseString(rowId, GranuleEnum.INSTRUMENT_NAME);
		g.measurementType = parseString(rowId, GranuleEnum.MEASUREMENT_TYPE);
b021ed9a   Jean-Michel Glorian   catch the excepti...
128
		g.processingLevel = parseInteger(rowId);
cfbb6d07   Nathanael Jourdane   Implement most of...
129
130
131
132
133
134
135
		g.creationDate = parseDate(rowId, GranuleEnum.CREATION_DATE);
		g.modificationDate = parseDate(rowId, GranuleEnum.MODIFICATION_DATE) ;
		g.releaseDate = parseDate(rowId, GranuleEnum.RELEASE_DATE) ;
		g.serviceTitle = parseString(rowId, GranuleEnum.SERVICE_TITLE);
		//@format

		if (!g.isValid()) {
cfbb6d07   Nathanael Jourdane   Implement most of...
136
137
138
139
140
			throw new IllegalArgumentException("One or more EPN parameter is null.");
		}
		return g;
	}

b021ed9a   Jean-Michel Glorian   catch the excepti...
141
142
143
144
145
146
147
148
149
150
151
152
153
154
	/**
	 * @param rowId
	 * @return
	 */
	public Integer parseInteger(int rowId) {
		Integer val = 0;
		try {
			val = (Integer) data.getCell(rowId, GranuleEnum.PROCESSING_LEVEL.toString());
		} catch (Exception e) {
			// TODO: handle exception
		}
		return val;
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
155
	public static boolean isV2(VOTableData data) {
35daa117   Nathanael Jourdane   Improve JUnits te...
156
		return !data.isContainingColumnName("index");
cfbb6d07   Nathanael Jourdane   Implement most of...
157
158
159
160
161
162
163
164
165
166
167
	}

	public List<Granule> getGranulesFromVOTable() throws ParseException {
		Debug.writeObject("data", data);

		if (!GranuleCtrl.isV2(data)) {
			throw new IllegalArgumentException(
					"The EPN-CORE is not v2, which is the only suported version");
		}
		List<Granule> granules = new ArrayList<>();

b021ed9a   Jean-Michel Glorian   catch the excepti...
168
169
170
171
		if (data != null){
			for (int rowId = 0; rowId < data.getNbRows(); rowId++) {
				granules.add(getGranuleFromVOTableRow(rowId));
			}
cfbb6d07   Nathanael Jourdane   Implement most of...
172
173
174
175
176
		}
		return granules;
	}

}