Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapConnection.java 5.27 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

4b3a296c   Nathanael Jourdane   Implement getServ...
19
import java.util.ArrayList;
fa934e09   Nathanael Jourdane   Add the epntap fa...
20
import java.util.List;
fa934e09   Nathanael Jourdane   Add the epntap fa...
21

cfbb6d07   Nathanael Jourdane   Implement most of...
22
23
24
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...
25
26
27
28
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...
29
import eu.omp.irap.vespa.epntapclient.voresource.model.Resource;
cfbb6d07   Nathanael Jourdane   Implement most of...
30
import eu.omp.irap.vespa.epntapclient.votable.model.VOTABLE;
99642cfe   Nathanael Jourdane   Improve unit test...
31
import eu.omp.irap.vespa.votable.controller.VOTableController;
e669c5d3   Nathanael Jourdane   Improve Javadoc.
32
import eu.omp.irap.vespa.votable.controller.VOTableException;
1f971475   Nathanael Jourdane   Granule parsing: ...
33
import eu.omp.irap.vespa.votable.utils.Debug;
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
45fb4583   Nathanael Jourdane   Sort methods and ...
45
46
	public String getEPNCoreTableName(String ivoid) throws VOTableException {
		return (String) ServiceCtrl.getParameter(ivoid, "table_name");
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
e669c5d3   Nathanael Jourdane   Improve Javadoc.
52
	public VOTABLE getEPNService(String ivoid) throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
53
54
		String query = String.format(Queries.SELECT_ALL_TAP_SERVICES_WHERE_IVOID, ivoid);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
55
56
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
57
	@Override
cfbb6d07   Nathanael Jourdane   Implement most of...
58
	public VOTABLE getEPNService(String ivoid, List<String> attributes)
e669c5d3   Nathanael Jourdane   Improve Javadoc.
59
			throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
60
61
62
		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...
63
64
	}

45fb4583   Nathanael Jourdane   Sort methods and ...
65
	// *** Service ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
66

cfbb6d07   Nathanael Jourdane   Implement most of...
67
	@Override
e669c5d3   Nathanael Jourdane   Improve Javadoc.
68
	public VOTABLE getEPNServices() throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
69
70
71
		String query = String.format(Queries.SELECT_ALL_TAP_SERVICES_WHERE_CORE,
				ServiceCore.EPNCORE);
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
72
73
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
74
	@Override
e669c5d3   Nathanael Jourdane   Improve Javadoc.
75
	public VOTABLE getEPNServices(List<String> attributes) throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
76
77
78
		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...
79
80
	}

45fb4583   Nathanael Jourdane   Sort methods and ...
81
82
	// *** Services ***

fa934e09   Nathanael Jourdane   Add the epntap fa...
83
	@Override
35daa117   Nathanael Jourdane   Improve JUnits te...
84
	public VOTABLE getEPNServices(List<String> keywords, List<String> attributes)
e669c5d3   Nathanael Jourdane   Improve Javadoc.
85
			throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
86
87
88
89
90
		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...
91
		}
35daa117   Nathanael Jourdane   Improve JUnits te...
92
93
		String where = StringJoiner.join(whereList, " OR ");
		String query = String.format(Queries.SELECT_TAP_SERVICES_WHERE_SUBJECT, select, where);
35daa117   Nathanael Jourdane   Improve JUnits te...
94
		return ServiceCtrl.getVoTable(query);
fa934e09   Nathanael Jourdane   Add the epntap fa...
95
96
	}

45fb4583   Nathanael Jourdane   Sort methods and ...
97
98
99
100
101
102
103
104
105
106
107
	@Override
	public Resource getEPNVOresource(String ivoid) throws VOResourceException {
		return VOResourceCtrl.getVOresource(ivoid);
	}

	@Override
	public List<Resource> getEPNVOResources() throws VOResourceException {
		List<String> ivoids = VOResourceCtrl.getIvoidResources(ServiceCore.EPNCORE);
		return VOResourceCtrl.getVOResources(ivoids);
	}

cfbb6d07   Nathanael Jourdane   Implement most of...
108
	// *** Getters ***
fa934e09   Nathanael Jourdane   Add the epntap fa...
109

cfbb6d07   Nathanael Jourdane   Implement most of...
110
	@Override
45fb4583   Nathanael Jourdane   Sort methods and ...
111
112
113
114
	public List<Resource> getEPNVOResources(List<String> keywords)
			throws VOResourceException {
		List<String> ivoids = VOResourceCtrl.getVOResources(ServiceCore.EPNCORE, keywords);
		return VOResourceCtrl.getVOResources(ivoids);
fa934e09   Nathanael Jourdane   Add the epntap fa...
115
116
	}

fa934e09   Nathanael Jourdane   Add the epntap fa...
117
	@Override
e669c5d3   Nathanael Jourdane   Improve Javadoc.
118
	public String getTAPURL(String ivoid) throws VOTableException {
35daa117   Nathanael Jourdane   Improve JUnits te...
119
		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
fd1d4872   Nathanael Jourdane   Immplement unit t...
125
	public List<Granule> sendADQLQuery(String tapURL, String adqlQuery) throws VOTableException {
99642cfe   Nathanael Jourdane   Improve unit test...
126
127
128
129
		VOTableController voTableCtrl = new VOTableController(tapURL, adqlQuery);
		voTableCtrl.readTable();
		VOTableData data = voTableCtrl.getVOTableData();

cfbb6d07   Nathanael Jourdane   Implement most of...
130
		List<Granule> granules;
fd1d4872   Nathanael Jourdane   Immplement unit t...
131
132
		GranuleCtrl gc = new GranuleCtrl(data);
		granules = gc.getGranules();
cfbb6d07   Nathanael Jourdane   Implement most of...
133
134
		return granules;
	}
fa934e09   Nathanael Jourdane   Add the epntap fa...
135

cfbb6d07   Nathanael Jourdane   Implement most of...
136
	@Override
125adfc1   Nathanael Jourdane   Use enumerated qu...
137
	public List<Granule> sendQuery(String tapURL, String schemaName, Query enumeratedQuery)
e669c5d3   Nathanael Jourdane   Improve Javadoc.
138
			throws VOTableException {
125adfc1   Nathanael Jourdane   Use enumerated qu...
139
140
141
142
		String query = String.format(enumeratedQuery.toString(), schemaName);
		VOTableController voTableCtrl = new VOTableController(tapURL, query);
		voTableCtrl.readTable();
		VOTableData data = voTableCtrl.getVOTableData();
1f971475   Nathanael Jourdane   Granule parsing: ...
143
		Debug.writeObject("data", data);
125adfc1   Nathanael Jourdane   Use enumerated qu...
144
145

		List<Granule> granules;
fd1d4872   Nathanael Jourdane   Immplement unit t...
146
147
		GranuleCtrl gc = new GranuleCtrl(data);
		granules = gc.getGranules();
125adfc1   Nathanael Jourdane   Use enumerated qu...
148
		return granules;
fa934e09   Nathanael Jourdane   Add the epntap fa...
149
150
151
	}

}