Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/votable/VOTableApp.java 2.84 KB
eb1414bb   Nathanael Jourdane   Minor style modif...
1
/*
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
2
3
4
5
 * 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.
1e543ea0   Nathanael Jourdane   Code clean-up
6
 *
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
7
8
9
10
11
12
13
14
15
16
17
18
 * 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.votable;

4268557f   Nathanael Jourdane   Fix some Sonar is...
19
import java.util.logging.Level;
5d3c344e   Nathanael Jourdane   Use Java logging ...
20
21
import java.util.logging.Logger;

84dce244   Nathanael Jourdane   Add VOTableApp.ja...
22
23
24
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

84dce244   Nathanael Jourdane   Add VOTableApp.ja...
25
26
import com.google.gson.Gson;

84dce244   Nathanael Jourdane   Add VOTableApp.ja...
27
import eu.omp.irap.vespa.epntapclient.votable.controller.VOTableController;
b6627be6   Nathanael Jourdane   Improve Exceptions
28
import eu.omp.irap.vespa.epntapclient.votable.controller.VOTableException;
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
29
30
31
32
33
34
35

/**
 * Simple class to have a main function to display a voTable from a XML file.
 *
 * @author N. Jourdane
 */
public class VOTableApp {
aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
36

5d3c344e   Nathanael Jourdane   Use Java logging ...
37
	/** The logger for the class VOTableApp. */
869d1749   Nathanael Jourdane   remove unused log...
38
	protected static final Logger logger = Logger.getLogger(VOTableApp.class.getName());
7706bfa4   Nathanael Jourdane   Use log4j as logg...
39

aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
40

4268557f   Nathanael Jourdane   Fix some Sonar is...
41
42
43
44
	/** Private constructor to hide the implicit public one. */
	private VOTableApp() {
	}

84dce244   Nathanael Jourdane   Add VOTableApp.ja...
45
46
	/**
	 * Main function to start the application as standalone.
1e543ea0   Nathanael Jourdane   Code clean-up
47
	 *
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
48
49
	 * @param args The program arguments
	 */
42819b99   Nathanael Jourdane   Make EpnTAPClient...
50
	public static void main(final String[] args) {
7dc89332   Nathanael Jourdane   remove TODOs, use...
51
		VOTableApp.logger.info("Lauching VOTable app with arguments: " + new Gson().toJson(args));
42819b99   Nathanael Jourdane   Make EpnTAPClient...
52
		SwingUtilities.invokeLater(new Runnable() {
aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
53

42819b99   Nathanael Jourdane   Make EpnTAPClient...
54
55
			@Override
			public void run() {
4268557f   Nathanael Jourdane   Fix some Sonar is...
56
				VOTableController voTableControl;
42819b99   Nathanael Jourdane   Make EpnTAPClient...
57
				if (args.length == 1) {
b6627be6   Nathanael Jourdane   Improve Exceptions
58
59
60
61
					try {
						voTableControl = new VOTableController(args[0]);
					} catch (VOTableException e) {
						System.console().writer().println("Error: " + e.getMessage());
1e543ea0   Nathanael Jourdane   Code clean-up
62
						VOTableApp.logger.log(Level.WARNING, e.getMessage(), e);
53d49e83   Nathanael Jourdane   Fix all Eclipse w...
63
						return;
b6627be6   Nathanael Jourdane   Improve Exceptions
64
					}
42819b99   Nathanael Jourdane   Make EpnTAPClient...
65
66
67
68
69
70
71
				} else if (args.length == 3) {
					voTableControl = new VOTableController(args[0], args[1], args[2]);
				} else {
					System.console().writer().println("Usage: VOtableApp path/to/VOTable.xml\n"
							+ "OR: VOtableApp http://url.to.service/or/registry type language \"YOUR QUERY\"");
					return;
				}
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
72

42819b99   Nathanael Jourdane   Make EpnTAPClient...
73
74
75
76
77
78
79
				JFrame frame = new JFrame(args[0]);
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
				frame.setContentPane(voTableControl.getView());
				frame.setVisible(true);
				frame.setSize(800, 600);
				frame.setLocationRelativeTo(null);
			}
84dce244   Nathanael Jourdane   Add VOTableApp.ja...
80
81
82
		});
	}
}