Add jkeytool application core.
[jkeytool.git] / src / net / pterodactylus / jkeytool / core / Core.java
1 /*
2  * jkeytool - Core.java -
3  * Copyright © 2009 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jkeytool.core;
21
22 import java.io.File;
23 import java.io.FileInputStream;
24 import java.io.IOException;
25 import java.security.KeyStore;
26 import java.security.KeyStoreException;
27 import java.security.NoSuchAlgorithmException;
28 import java.security.cert.CertificateException;
29 import java.util.HashSet;
30 import java.util.Set;
31
32 /**
33  * The jkeytool core.
34  *
35  * @author David Roden <droden@gmail.com>
36  */
37 public class Core {
38
39         /** Support for {@link CoreListener}s. */
40         private CoreListenerSupport coreListenerSupport = new CoreListenerSupport(this);
41
42         /** All loaded keystores. */
43         private Set<KeyStore> keyStores = new HashSet<KeyStore>();
44
45         //
46         // EVENT MANAGEMENT
47         //
48
49         /**
50          * Adds a core listener to the list of registered listeners.
51          *
52          * @param coreListener
53          *            The listener to add
54          */
55         public void addCoreListener(CoreListener coreListener) {
56                 coreListenerSupport.addListener(coreListener);
57         }
58
59         /**
60          * Removes a core listener from the list of registered listeners.
61          *
62          * @param coreListener
63          *            The listener to remove
64          */
65         public void removeCoreListener(CoreListener coreListener) {
66                 coreListenerSupport.removeListener(coreListener);
67         }
68
69         //
70         // ACCESSORS
71         //
72
73         //
74         // ACTIONS
75         //
76
77         /**
78          * Loads a keystore from the given file. This method will fire either a
79          * {@link CoreListener#keyStoreLoaded(File, KeyStore)} or a
80          * {@link CoreListener#keyStoreNotLoaded(File)} event, depending on whether
81          * the loading succeeded or failed.
82          *
83          * @param keyStoreFile
84          *            The file to load the keystore from
85          */
86         public void loadKeyStore(File keyStoreFile) {
87                 KeyStore keyStore = loadKeyStore(keyStoreFile, "PKCS12");
88                 if (keyStore == null) {
89                         keyStore = loadKeyStore(keyStoreFile, "JKS");
90                 }
91                 if (keyStore == null) {
92                         coreListenerSupport.fireKeyStoreNotLoaded(keyStoreFile);
93                         return;
94                 }
95                 coreListenerSupport.fireKeyStoreLoaded(keyStoreFile, keyStore);
96         }
97
98         //
99         // PRIVATE METHODS
100         //
101
102         /**
103          * Loads a keystore from the given file, trying to parse it as a keystore of
104          * the given type.
105          *
106          * @param keyStoreFile
107          *            The file to read the keystore from
108          * @param type
109          *            The type of the keystore
110          * @return The loaded keystore, or <code>null</code> if the keystore could
111          *         not be loaded
112          */
113         private KeyStore loadKeyStore(File keyStoreFile, String type) {
114                 FileInputStream keyStoreFileInputStream = null;
115                 try {
116                         KeyStore keyStore = KeyStore.getInstance(type);
117                         keyStoreFileInputStream = new FileInputStream(keyStoreFile);
118                         keyStore.load(keyStoreFileInputStream, null);
119                         keyStores.add(keyStore);
120                         return keyStore;
121                 } catch (IOException ioe1) {
122                         /* swallow. */
123                 } catch (KeyStoreException kse1) {
124                         /* swallow. */
125                 } catch (NoSuchAlgorithmException nsae1) {
126                         /* swallow. */
127                 } catch (CertificateException ce1) {
128                         /* swallow. */
129                 }
130                 return null;
131         }
132
133 }