Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapConnection.java 5.25 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
23
import java.util.logging.Logger;

cfbb6d07   Nathanael Jourdane   Implement most of...
24
25
26
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...
27
28
29
30
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...
31
import eu.omp.irap.vespa.epntapclient.voresource.model.Resource;
cfbb6d07   Nathanael Jourdane   Implement most of...
32
import eu.omp.irap.vespa.epntapclient.votable.model.VOTABLE;
cfbb6d07   Nathanael Jourdane   Implement most of...
33
import eu.omp.irap.vespa.votable.controller.CantGetVOTableException;
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
42

	/** The logger for the class EpnTapFacade. */
58950524   Nathanael Jourdane   #2 Rename EpnTapF...
43
	private static final Logger logger = Logger.getLogger(EpnTapConnection.class.getName());
fa934e09   Nathanael Jourdane   Add the epntap fa...
44
45


cfbb6d07   Nathanael Jourdane   Implement most of...
46
47
	// *** Resource ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
48
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
49
50
	public Resource getEPNVOresource(String ivoid) throws VOResourceException {
		return VOResourceCtrl.getVOresource(ivoid);
fa934e09   Nathanael Jourdane   Add the epntap fa...
51
52
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
53
54
	// *** Resources ***

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

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

cfbb6d07   Nathanael Jourdane   Implement most of...
68
	// *** Service ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
69

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

fa934e09   Nathanael Jourdane   Add the epntap fa...
76
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
77
78
	public VOTABLE getEPNService(String ivoid, List<String> attributes)
			throws CantGetVOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
79
80
81
		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...
82
83
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
84
	// *** Services ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
85

cfbb6d07   Nathanael Jourdane   Implement most of...
86
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
87
88
89
90
	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...
91
92
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
93
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
94
95
96
97
	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...
98
99
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
100
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
101
102
103
104
105
106
107
	public VOTABLE getEPNServices(List<String> keywords, List<String> attributes)
			throws CantGetVOTableException {
		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...
108
		}
35daa117   Nathanael Jourdane   Improve JUnits te...
109
110
111
112
		String where = StringJoiner.join(whereList, " OR ");
		String query = String.format(Queries.SELECT_TAP_SERVICES_WHERE_SUBJECT, select, where);
		// TODO: move this code to a new class in ServiceCtrl()
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
113
114
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
115
	// *** Getters ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
116

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

fa934e09   Nathanael Jourdane   Add the epntap fa...
122
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
123
124
	public String getTAPURL(String ivoid) throws CantGetVOTableException {
		return (String) ServiceCtrl.getParameter(ivoid, "access_url");
fa934e09   Nathanael Jourdane   Add the epntap fa...
125
126
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
127
128
	// *** Queries ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
129
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
	public List<Granule> sendADQLQuery(String tapURL, String adqlQuery)
			throws CantGetVOTableException {
		EpnTapController epnTapCtrl = new EpnTapController();
		epnTapCtrl.sendQuery(adqlQuery, tapURL);
		VOTableData data = epnTapCtrl.getResultsController().getVOTableData();
		List<Granule> granules;
		try {
			GranuleCtrl gc = new GranuleCtrl(data);
			granules = gc.getGranulesFromVOTable();
		} catch (ParseException e) {
			throw new CantGetVOTableException("Parsing error on a granule.", e);
		}
		return granules;
	}
fa934e09   Nathanael Jourdane   Add the epntap fa...
144

cfbb6d07   Nathanael Jourdane   Implement most of...
145
146
147
148
	@Override
	public List<Granule> sendQuery(String tapURL, String schemaName, String query) {
		// TODO TBC
		return null;
fa934e09   Nathanael Jourdane   Add the epntap fa...
149
150
151
	}

}