BUG-7608: restructure exception throws 05/50705/1
authorRobert Varga <rovarga@cisco.com>
Fri, 20 Jan 2017 10:45:18 +0000 (11:45 +0100)
committerRobert Varga <rovarga@cisco.com>
Fri, 20 Jan 2017 10:45:18 +0000 (11:45 +0100)
This cleans up the try-catch block so that we do not have
to re-throw exceptions.

Change-Id: I8c876f12b7a9e9108eb8dcca7a602927a78bec2c
Signed-off-by: Robert Varga <rovarga@cisco.com>
opendaylight/blueprint/src/main/java/org/opendaylight/controller/blueprint/ext/RpcServiceMetadata.java

index 030a6840a8263099bea60ee0120806b1b6c0599a..90ebeb253c1647d86907ec8465f673da2cb71d62 100644 (file)
@@ -43,30 +43,30 @@ class RpcServiceMetadata extends AbstractDependentComponentFactoryMetadata {
     private volatile ListenerRegistration<DOMRpcAvailabilityListener> rpcListenerReg;
     private volatile Class<RpcService> rpcInterface;
 
     private volatile ListenerRegistration<DOMRpcAvailabilityListener> rpcListenerReg;
     private volatile Class<RpcService> rpcInterface;
 
-    RpcServiceMetadata(String id, String interfaceName) {
+    RpcServiceMetadata(final String id, final String interfaceName) {
         super(id);
         this.interfaceName = interfaceName;
     }
 
     @SuppressWarnings({ "checkstyle:IllegalCatch", "unchecked" })
     @Override
         super(id);
         this.interfaceName = interfaceName;
     }
 
     @SuppressWarnings({ "checkstyle:IllegalCatch", "unchecked" })
     @Override
-    public void init(ExtendedBlueprintContainer container) {
+    public void init(final ExtendedBlueprintContainer container) {
         super.init(container);
 
         super.init(container);
 
+        final Class<?> interfaceClass;
         try {
         try {
-            Class<?> interfaceClass = container().getBundleContext().getBundle().loadClass(interfaceName);
-            if (!RpcService.class.isAssignableFrom(interfaceClass)) {
-                throw new ComponentDefinitionException(String.format(
-                        "%s: The specified interface %s is not an RpcService", logName(), interfaceName));
-            }
-
-            rpcInterface = (Class<RpcService>)interfaceClass;
-        } catch (ComponentDefinitionException e) {
-            throw e;
+            interfaceClass = container().getBundleContext().getBundle().loadClass(interfaceName);
         } catch (Exception e) {
             throw new ComponentDefinitionException(String.format("%s: Error obtaining interface class %s",
                     logName(), interfaceName), e);
         }
         } catch (Exception e) {
             throw new ComponentDefinitionException(String.format("%s: Error obtaining interface class %s",
                     logName(), interfaceName), e);
         }
+
+        if (!RpcService.class.isAssignableFrom(interfaceClass)) {
+            throw new ComponentDefinitionException(String.format(
+                "%s: The specified interface %s is not an RpcService", logName(), interfaceName));
+        }
+
+        rpcInterface = (Class<RpcService>)interfaceClass;
     }
 
     @Override
     }
 
     @Override
@@ -77,7 +77,7 @@ class RpcServiceMetadata extends AbstractDependentComponentFactoryMetadata {
             service -> retrievedSchemaContext(((SchemaService)service).getGlobalContext()));
     }
 
             service -> retrievedSchemaContext(((SchemaService)service).getGlobalContext()));
     }
 
-    private void retrievedSchemaContext(SchemaContext schemaContext) {
+    private void retrievedSchemaContext(final SchemaContext schemaContext) {
         LOG.debug("{}: retrievedSchemaContext", logName());
 
         QNameModule moduleName = BindingReflections.getQNameModule(rpcInterface);
         LOG.debug("{}: retrievedSchemaContext", logName());
 
         QNameModule moduleName = BindingReflections.getQNameModule(rpcInterface);
@@ -100,23 +100,23 @@ class RpcServiceMetadata extends AbstractDependentComponentFactoryMetadata {
             service -> retrievedDOMRpcService((DOMRpcService)service));
     }
 
             service -> retrievedDOMRpcService((DOMRpcService)service));
     }
 
-    private void retrievedDOMRpcService(DOMRpcService domRpcService) {
+    private void retrievedDOMRpcService(final DOMRpcService domRpcService) {
         LOG.debug("{}: retrievedDOMRpcService", logName());
 
         setDependendencyDesc("Available DOM RPC for binding RPC: " + rpcInterface);
         rpcListenerReg = domRpcService.registerRpcListener(new DOMRpcAvailabilityListener() {
             @Override
         LOG.debug("{}: retrievedDOMRpcService", logName());
 
         setDependendencyDesc("Available DOM RPC for binding RPC: " + rpcInterface);
         rpcListenerReg = domRpcService.registerRpcListener(new DOMRpcAvailabilityListener() {
             @Override
-            public void onRpcAvailable(Collection<DOMRpcIdentifier> rpcs) {
+            public void onRpcAvailable(final Collection<DOMRpcIdentifier> rpcs) {
                 onRpcsAvailable(rpcs);
             }
 
             @Override
                 onRpcsAvailable(rpcs);
             }
 
             @Override
-            public void onRpcUnavailable(Collection<DOMRpcIdentifier> rpcs) {
+            public void onRpcUnavailable(final Collection<DOMRpcIdentifier> rpcs) {
             }
         });
     }
 
             }
         });
     }
 
-    protected void onRpcsAvailable(Collection<DOMRpcIdentifier> rpcs) {
+    protected void onRpcsAvailable(final Collection<DOMRpcIdentifier> rpcs) {
         for (DOMRpcIdentifier identifier : rpcs) {
             if (rpcSchemaPaths.contains(identifier.getType())) {
                 LOG.debug("{}: onRpcsAvailable - found SchemaPath {}", logName(), identifier.getType());
         for (DOMRpcIdentifier identifier : rpcs) {
             if (rpcSchemaPaths.contains(identifier.getType())) {
                 LOG.debug("{}: onRpcsAvailable - found SchemaPath {}", logName(), identifier.getType());
@@ -163,7 +163,7 @@ class RpcServiceMetadata extends AbstractDependentComponentFactoryMetadata {
     }
 
     @Override
     }
 
     @Override
-    public void destroy(Object instance) {
+    public void destroy(final Object instance) {
         super.destroy(instance);
         closeRpcListenerReg();
     }
         super.destroy(instance);
         closeRpcListenerReg();
     }