7579fbfabb24c620c4f064a2a22aa1e1e028c98d
[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          * Creates a new key store of the given type.
79          *
80          * @param keyStoreType
81          *            The type of the key store
82          */
83         public void createKeyStore(String keyStoreType) {
84                 try {
85                         KeyStore keyStore = KeyStore.getInstance(keyStoreType);
86                         coreListenerSupport.fireKeyStoreCreated(keyStore);
87                 } catch (KeyStoreException kse1) {
88                         coreListenerSupport.fireKeyStoreNotCreated(keyStoreType, kse1);
89                 }
90         }
91
92         /**
93          * Loads a keystore from the given file. This method will fire either a
94          * {@link CoreListener#keyStoreLoaded(File, KeyStore)} or a
95          * {@link CoreListener#keyStoreNotLoaded(File)} event, depending on whether
96          * the loading succeeded or failed.
97          *
98          * @param keyStoreFile
99          *            The file to load the keystore from
100          */
101         public void loadKeyStore(File keyStoreFile) {
102                 KeyStore keyStore = loadKeyStore(keyStoreFile, "PKCS12");
103                 if (keyStore == null) {
104                         keyStore = loadKeyStore(keyStoreFile, "JKS");
105                 }
106                 if (keyStore == null) {
107                         coreListenerSupport.fireKeyStoreNotLoaded(keyStoreFile);
108                         return;
109                 }
110                 coreListenerSupport.fireKeyStoreLoaded(keyStoreFile, keyStore);
111         }
112
113         //
114         // PRIVATE METHODS
115         //
116
117         /**
118          * Loads a keystore from the given file, trying to parse it as a keystore of
119          * the given type.
120          *
121          * @param keyStoreFile
122          *            The file to read the keystore from
123          * @param type
124          *            The type of the keystore
125          * @return The loaded keystore, or <code>null</code> if the keystore could
126          *         not be loaded
127          */
128         private KeyStore loadKeyStore(File keyStoreFile, String type) {
129                 FileInputStream keyStoreFileInputStream = null;
130                 try {
131                         KeyStore keyStore = KeyStore.getInstance(type);
132                         keyStoreFileInputStream = new FileInputStream(keyStoreFile);
133                         keyStore.load(keyStoreFileInputStream, null);
134                         keyStores.add(keyStore);
135                         return keyStore;
136                 } catch (IOException ioe1) {
137                         /* swallow. */
138                 } catch (KeyStoreException kse1) {
139                         /* swallow. */
140                 } catch (NoSuchAlgorithmException nsae1) {
141                         /* swallow. */
142                 } catch (CertificateException ce1) {
143                         /* swallow. */
144                 }
145                 return null;
146         }
147
148 }