TLS support
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / params / xml / ns / yang / openflow / _switch / connection / provider / impl / rev140328 / SwitchConnectionProviderModule.java
1 /**
2 * Generated file
3
4 * Generated from: yang module name: openflow-switch-connection-provider-impl  yang module local name: openflow-switch-connection-provider-impl
5 * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
6 * Generated at: Fri Mar 28 17:50:58 PDT 2014
7 *
8 * Do not modify this file unless it is present under src/main directory
9 */
10 package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow._switch.connection.provider.impl.rev140328;
11
12 import java.net.InetAddress;
13 import java.net.UnknownHostException;
14
15 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionConfiguration;
16 import org.opendaylight.openflowjava.protocol.api.connection.TlsConfiguration;
17 import org.opendaylight.openflowjava.protocol.impl.connection.SwitchConnectionProviderImpl;
18 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.IpAddress;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 import com.google.common.base.Objects;
24
25 /**
26 *
27 */
28 public final class SwitchConnectionProviderModule extends org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow._switch.connection.provider.impl.rev140328.AbstractSwitchConnectionProviderModule
29  {
30     
31     private static Logger LOG = LoggerFactory
32             .getLogger(SwitchConnectionProviderModule.class);
33
34     /**
35      * @param identifier
36      * @param dependencyResolver
37      */
38     public SwitchConnectionProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
39         super(identifier, dependencyResolver);
40     }
41
42     /**
43      * @param identifier
44      * @param dependencyResolver
45      * @param oldModule
46      * @param oldInstance
47      */
48     public SwitchConnectionProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
49             SwitchConnectionProviderModule oldModule, java.lang.AutoCloseable oldInstance) {
50         super(identifier, dependencyResolver, oldModule, oldInstance);
51     }
52
53     @Override
54     protected void customValidation(){
55         // Add custom validation for module attributes here.
56     }
57
58     @Override
59     public java.lang.AutoCloseable createInstance() {
60         LOG.info("SwitchConnectionProvider started.");
61         SwitchConnectionProviderImpl switchConnectionProviderImpl = new SwitchConnectionProviderImpl();
62         try {
63             ConnectionConfiguration connConfiguration = createConnectionConfiguration();
64             switchConnectionProviderImpl.setConfiguration(connConfiguration);
65         } catch (UnknownHostException e) {
66             throw new IllegalArgumentException(e.getMessage(), e);
67         }
68         return switchConnectionProviderImpl;
69     }
70
71     /**
72      * @return instance configuration object
73      * @throws UnknownHostException 
74      */
75     private ConnectionConfiguration createConnectionConfiguration() throws UnknownHostException {
76         final InetAddress address = extractIpAddressBin(getAddress());
77         final Integer port = getPort();
78         final long switchIdleTimeout = getSwitchIdleTimeout();
79         final Tls tlsConfig = getTls();
80         
81         return new ConnectionConfiguration() {
82             @Override
83             public InetAddress getAddress() {
84                 return address;
85             }
86             @Override
87             public int getPort() {
88                 return port;
89             }
90             @Override
91             public Object getTransferProtocol() {
92                 // TODO Auto-generated method stub
93                 return null;
94             }
95             @Override
96             public TlsConfiguration getTlsConfiguration() {
97                 return new TlsConfiguration() {
98                     @Override
99                     public KeystoreType getTlsTruststoreType() {
100                         return Objects.firstNonNull(tlsConfig.getTruststoreType(), null);
101                     }
102                     @Override
103                     public String getTlsTruststore() {
104                         return Objects.firstNonNull(tlsConfig.getTruststore(), null);
105                     }
106                     @Override
107                     public KeystoreType getTlsKeystoreType() {
108                         return Objects.firstNonNull(tlsConfig.getKeystoreType(), null);
109                     }
110                     @Override
111                     public String getTlsKeystore() {
112                         return Objects.firstNonNull(tlsConfig.getKeystore(), null);
113                     }
114                     @Override
115                     public org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType getTlsKeystorePathType() {
116                         return Objects.firstNonNull(tlsConfig.getKeystorePathType(), null);
117                     }
118                     @Override
119                     public org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType getTlsTruststorePathType() {
120                         return Objects.firstNonNull(tlsConfig.getTruststorePathType(), null);
121                     }
122                 };
123             }
124             @Override
125             public long getSwitchIdleTimeout() {
126                 return switchIdleTimeout;
127             }
128             @Override
129             public Object getSslContext() {
130                 // TODO Auto-generated method stub
131                 return null;
132             }
133         };
134     }
135
136     /**
137      * @param address
138      * @return
139      * @throws UnknownHostException 
140      */
141     private static InetAddress extractIpAddressBin(IpAddress address) throws UnknownHostException {
142         byte[] addressBin = null;
143         if (address != null) {
144             if (address.getIpv4Address() != null) {
145                 addressBin = address2bin(address.getIpv4Address().getValue());
146             } else if (address.getIpv6Address() != null) {
147                 addressBin = address2bin(address.getIpv6Address().getValue());
148             }
149         }
150         
151         if (addressBin == null) {
152             return null;
153         } else {
154             return InetAddress.getByAddress(addressBin);
155         }
156     }
157
158     /**
159      * @param value
160      * @return
161      */
162     private static byte[] address2bin(String value) {
163         //TODO: translate ipv4 or ipv6 into byte[]
164         return null;
165     }
166 }