Bump versions to 0.21.8-SNAPSHOT
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / tls / SslKeyStore.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.pcep.impl.tls;
9
10 import com.google.common.base.Preconditions;
11 import java.io.File;
12 import java.io.FileInputStream;
13 import java.io.FileNotFoundException;
14 import java.io.InputStream;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.config.rev230112.pcep.session.tls.PathType;
16 import org.slf4j.Logger;
17 import org.slf4j.LoggerFactory;
18
19 public final class SslKeyStore {
20     private static final Logger LOG = LoggerFactory.getLogger(SslKeyStore.class);
21
22     private SslKeyStore() {
23         // Hidden on purpose
24     }
25
26     /**
27      * InputStream instance of key - key location is on classpath or specific path.
28      *
29      * @param filename
30      *          keystore location
31      * @param pathType
32      *          keystore location type - "classpath" or "path"
33      *
34      * @return key as InputStream
35      */
36     public static InputStream asInputStream(final String filename, final PathType pathType) {
37         InputStream in;
38         switch (pathType) {
39             case CLASSPATH:
40                 in = SslKeyStore.class.getResourceAsStream(filename);
41                 Preconditions.checkArgument(in != null, "KeyStore file not found: %s", filename);
42                 break;
43             case PATH:
44                 LOG.debug("Current dir using System: {}", System.getProperty("user.dir"));
45                 final File keystorefile = new File(filename);
46                 try {
47                     in = new FileInputStream(keystorefile);
48                 } catch (final FileNotFoundException e) {
49                     throw new IllegalStateException("KeyStore file not found: " + filename,e);
50                 }
51                 break;
52             default:
53                 throw new IllegalArgumentException("Unknown path type: " + pathType);
54         }
55         return in;
56     }
57 }
58