Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapConnection.java 5.52 KB
fa934e09   Nathanael Jourdane   Add the epntap fa...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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/>.
 */

5e72363b   Nathanael Jourdane   Change project ar...
17
package eu.omp.irap.vespa.epntapclient;
fa934e09   Nathanael Jourdane   Add the epntap fa...
18

cfbb6d07   Nathanael Jourdane   Implement most of...
19
import java.text.ParseException;
4b3a296c   Nathanael Jourdane   Implement getServ...
20
import java.util.ArrayList;
fa934e09   Nathanael Jourdane   Add the epntap fa...
21
import java.util.List;
fa934e09   Nathanael Jourdane   Add the epntap fa...
22

cfbb6d07   Nathanael Jourdane   Implement most of...
23
24
25
import eu.omp.irap.vespa.epntapclient.granule.Granule;
import eu.omp.irap.vespa.epntapclient.granule.GranuleCtrl;
import eu.omp.irap.vespa.epntapclient.service.Queries;
cfbb6d07   Nathanael Jourdane   Implement most of...
26
27
28
29
import eu.omp.irap.vespa.epntapclient.service.ServiceCore;
import eu.omp.irap.vespa.epntapclient.service.ServiceCtrl;
import eu.omp.irap.vespa.epntapclient.voresource.VOResourceCtrl;
import eu.omp.irap.vespa.epntapclient.voresource.VOResourceException;
fa934e09   Nathanael Jourdane   Add the epntap fa...
30
import eu.omp.irap.vespa.epntapclient.voresource.model.Resource;
cfbb6d07   Nathanael Jourdane   Implement most of...
31
import eu.omp.irap.vespa.epntapclient.votable.model.VOTABLE;
cfbb6d07   Nathanael Jourdane   Implement most of...
32
import eu.omp.irap.vespa.votable.controller.CantGetVOTableException;
99642cfe   Nathanael Jourdane   Improve unit test...
33
import eu.omp.irap.vespa.votable.controller.VOTableController;
9144ee77   Nathanael Jourdane   Implement Service...
34
import eu.omp.irap.vespa.votable.utils.StringJoiner;
cfbb6d07   Nathanael Jourdane   Implement most of...
35
import eu.omp.irap.vespa.votable.votabledata.VOTableData;
fa934e09   Nathanael Jourdane   Add the epntap fa...
36
37
38
39

/**
 * @author N. Jourdane
 */
58950524   Nathanael Jourdane   #2 Rename EpnTapF...
40
public class EpnTapConnection implements EpnTapInterface {
fa934e09   Nathanael Jourdane   Add the epntap fa...
41

cfbb6d07   Nathanael Jourdane   Implement most of...
42
43
	// *** Resource ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
44
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
45
46
	public Resource getEPNVOresource(String ivoid) throws VOResourceException {
		return VOResourceCtrl.getVOresource(ivoid);
fa934e09   Nathanael Jourdane   Add the epntap fa...
47
48
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
49
50
	// *** Resources ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
51
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
52
	public List<Resource> getEPNVOResources() throws VOResourceException {
35daa117   Nathanael Jourdane   Improve JUnits te...
53
54
		List<String> ivoids = VOResourceCtrl.getVOResources(ServiceCore.EPNCORE);
		return VOResourceCtrl.getVOResources(ivoids);
fa934e09   Nathanael Jourdane   Add the epntap fa...
55
56
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
57
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
58
	public List<Resource> getEPNVOResources(List<String> keywords)
cfbb6d07   Nathanael Jourdane   Implement most of...
59
			throws VOResourceException {
35daa117   Nathanael Jourdane   Improve JUnits te...
60
61
		List<String> ivoids = VOResourceCtrl.getVOResources(ServiceCore.EPNCORE, keywords);
		return VOResourceCtrl.getVOResources(ivoids);
fa934e09   Nathanael Jourdane   Add the epntap fa...
62
63
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
64
	// *** Service ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
65

fa934e09   Nathanael Jourdane   Add the epntap fa...
66
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
67
	public VOTABLE getEPNService(String ivoid) throws CantGetVOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
68
69
		String query = String.format(Queries.SELECT_ALL_TAP_SERVICES_WHERE_IVOID, ivoid);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
70
71
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
72
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
73
74
	public VOTABLE getEPNService(String ivoid, List<String> attributes)
			throws CantGetVOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
75
76
77
		String select = StringJoiner.join(attributes);
		String query = String.format(Queries.SELECT_TAP_SERVICES_WHERE_IVOID, select, ivoid);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
78
79
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
80
	// *** Services ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
81

cfbb6d07   Nathanael Jourdane   Implement most of...
82
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
83
84
85
86
	public VOTABLE getEPNServices() throws CantGetVOTableException {
		String query = String.format(Queries.SELECT_ALL_TAP_SERVICES_WHERE_CORE,
				ServiceCore.EPNCORE);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
87
88
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
89
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
90
91
92
93
	public VOTABLE getEPNServices(List<String> attributes) throws CantGetVOTableException {
		String select = StringJoiner.join(attributes);
		String query = String.format(Queries.SELECT_TAP_SERVICES, select);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
94
95
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
96
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
97
98
	public VOTABLE getEPNServices(List<String> keywords, List<String> attributes)
			throws CantGetVOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
99
100
101
102
103
		attributes.add("res_subject");
		String select = StringJoiner.join(attributes);
		List<String> whereList = new ArrayList<>();
		for (String keyword : keywords) {
			whereList.add("res_subject = '" + keyword + "'");
8ae5b6c8   Nathanael Jourdane   Implement getServ...
104
		}
35daa117   Nathanael Jourdane   Improve JUnits te...
105
106
		String where = StringJoiner.join(whereList, " OR ");
		String query = String.format(Queries.SELECT_TAP_SERVICES_WHERE_SUBJECT, select, where);
35daa117   Nathanael Jourdane   Improve JUnits te...
107
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
108
109
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
110
	// *** Getters ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
111

cfbb6d07   Nathanael Jourdane   Implement most of...
112
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
113
114
	public String getEPNCoreTableName(String ivoid) throws CantGetVOTableException {
		return (String) ServiceCtrl.getParameter(ivoid, "table_name");
fa934e09   Nathanael Jourdane   Add the epntap fa...
115
116
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
117
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
118
119
	public String getTAPURL(String ivoid) throws CantGetVOTableException {
		return (String) ServiceCtrl.getParameter(ivoid, "access_url");
fa934e09   Nathanael Jourdane   Add the epntap fa...
120
121
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
122
123
	// *** Queries ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
124
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
125
126
	public List<Granule> sendADQLQuery(String tapURL, String adqlQuery)
			throws CantGetVOTableException {
99642cfe   Nathanael Jourdane   Improve unit test...
127
128
129
130
		VOTableController voTableCtrl = new VOTableController(tapURL, adqlQuery);
		voTableCtrl.readTable();
		VOTableData data = voTableCtrl.getVOTableData();

cfbb6d07   Nathanael Jourdane   Implement most of...
131
132
133
		List<Granule> granules;
		try {
			GranuleCtrl gc = new GranuleCtrl(data);
30e4599b   Nathanael Jourdane   Add Javadoc
134
			granules = gc.getGranules();
cfbb6d07   Nathanael Jourdane   Implement most of...
135
136
137
138
139
		} catch (ParseException e) {
			throw new CantGetVOTableException("Parsing error on a granule.", e);
		}
		return granules;
	}
fa934e09   Nathanael Jourdane   Add the epntap fa...
140

cfbb6d07   Nathanael Jourdane   Implement most of...
141
	@Override
125adfc1   Nathanael Jourdane   Use enumerated qu...
142
143
144
145
146
147
148
149
150
151
	public List<Granule> sendQuery(String tapURL, String schemaName, Query enumeratedQuery)
			throws CantGetVOTableException {
		String query = String.format(enumeratedQuery.toString(), schemaName);
		VOTableController voTableCtrl = new VOTableController(tapURL, query);
		voTableCtrl.readTable();
		VOTableData data = voTableCtrl.getVOTableData();

		List<Granule> granules;
		try {
			GranuleCtrl gc = new GranuleCtrl(data);
30e4599b   Nathanael Jourdane   Add Javadoc
152
			granules = gc.getGranules();
125adfc1   Nathanael Jourdane   Use enumerated qu...
153
154
155
156
		} catch (ParseException e) {
			throw new CantGetVOTableException("Parsing error on a granule.", e);
		}
		return granules;
fa934e09   Nathanael Jourdane   Add the epntap fa...
157
158
159
	}

}