diff -r 41e91ea94acb -r ec0e970e0830 src/main/java/cz/frantovo/rozsireneatributy/Startér.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/cz/frantovo/rozsireneatributy/Startér.java Sat Dec 16 20:13:13 2023 +0100 @@ -0,0 +1,111 @@ +/** + * Rozšířené atributy – program na správu rozšířených atributů souborů + * Copyright © 2012 František Kučera (frantovo.cz) + * + * 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. + * + * 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 . + */ +package cz.frantovo.rozsireneatributy; + +import cz.frantovo.rozsireneatributy.gui.Model; +import cz.frantovo.rozsireneatributy.gui.Panel; +import java.awt.BorderLayout; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.awt.event.KeyEvent; +import java.io.File; +import java.text.MessageFormat; +import java.util.ResourceBundle; +import java.util.logging.Level; +import java.util.logging.Logger; +import javax.swing.JComponent; +import javax.swing.JFrame; +import javax.swing.JOptionPane; +import javax.swing.KeyStroke; + +/** + * Spouštěč programu + * + * http://freedesktop.org/wiki/CommonExtendedAttributes + * http://download.oracle.com/javase/tutorial/essential/io/fileAttr.html#user + * http://today.java.net/pub/a/today/2008/07/03/jsr-203-new-file-apis.html + * #so-what-is-a-path-really + * + * $ setfattr -n "user.franta.pozdrav" -v 'Dobrý den!' pokus.txt (v javě pak + * pracujeme s klíči bez předpony „user.“) + * + * @author Ing. František Kučera (frantovo.cz) + */ +public class Startér { + + private static final Logger log = Logger + .getLogger(Startér.class.getSimpleName()); + private static final ResourceBundle překlady = ResourceBundle + .getBundle(Atribut.class.getPackageName() + ".Překlady"); + + /** + * @param args název souboru + */ + public static void main(String[] args) { + + try { + // TODO: načítat konfiguraci i z XML souboru + CLIParser parser = new CLIParser(); + Konfigurace konfigurace = parser.parsujParametry(args); + + File soubor = konfigurace.getSoubor(); + + if (soubor.exists()) { + log.log(Level.INFO, "Pracuji se souborem: {0}", soubor); + + Model model = new Model(konfigurace); + + final JFrame f = new JFrame(); + Panel p = new Panel(model); + + f.setLayout(new BorderLayout()); + f.add(p, BorderLayout.CENTER); + + // Ukončení programu klávesou Escape: + f.getRootPane().registerKeyboardAction(new ActionListener() { + + @Override + public void actionPerformed(ActionEvent ae) { + f.dispose(); + } + }, + KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), + JComponent.WHEN_IN_FOCUSED_WINDOW); + + f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); + f.setTitle(MessageFormat + .format(překlady.getString("titulek"), soubor)); + f.setSize(640, 240); + f.setLocationRelativeTo(null); + f.setVisible(true); + } else { + ukončiChybou(MessageFormat.format(překlady + .getString("chyba.souborNeexistuje"), soubor)); + } + } catch (Exception e) { + log.log(Level.SEVERE, překlady.getString("chyba"), e); + ukončiChybou(e.getLocalizedMessage()); + } + } + + private static void ukončiChybou(String hláška) { + log.log(Level.SEVERE, hláška); + JOptionPane.showMessageDialog(null, hláška, překlady + .getString("chyba.titulek"), JOptionPane.ERROR_MESSAGE); + System.exit(1); + } +}