2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.sal.binding.codegen;
10 import org.opendaylight.controller.sal.binding.spi.DelegateProxy;
11 import org.opendaylight.controller.sal.binding.spi.NotificationInvokerFactory;
12 import org.opendaylight.controller.sal.binding.spi.RpcRouter;
13 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
14 import org.opendaylight.yangtools.yang.binding.RpcService;
15 import org.opendaylight.yangtools.yang.binding.annotations.RoutingContext;
17 public interface RuntimeCodeGenerator {
20 * Returns an instance of provided RpcService type which delegates all calls
26 * <li>implements provided subclass of RpcService type and
27 * {@link DelegateProxy} interface.
30 * delegates all invocations of methods, which are defined in RpcService
31 * subtype to delegate which is defined by
32 * {@link DelegateProxy#setDelegate(Object)}.
34 * If delegate is not defined (<code>getDelegate() == null</code>)
35 * implementation throws {@link IllegalStateException}
36 * <li>{@link DelegateProxy#getDelegate()} - returns the delegate to which
37 * all calls are delegated.
38 * <li>{@link DelegateProxy#setDelegate(Object)} - sets the delegate for
44 * - Subclass of RpcService for which direct proxy is to be
46 * @return Instance of RpcService of provided serviceType which implements
47 * and {@link DelegateProxy}
48 * @throws IllegalArgumentException
51 <T extends RpcService> T getDirectProxyFor(Class<T> serviceType) throws IllegalArgumentException;
54 * Returns an instance of provided RpcService type which routes all calls to
55 * other instances selected on particular input field.
62 * <li>{@link DelegateProxy}
63 * <li>{@link RpcRouter}
66 * routes all invocations of methods, which are defined in RpcService
67 * subtype based on method arguments and routing information defined in the
68 * RpcRoutingTables for this instance
69 * {@link RpcRouter#getRoutingTable(Class)}.
73 * {@link RpcRouter#getService(Class, InstanceIdentifier)} method to
74 * retrieve particular instance to which call will be routed.
76 * Instance of {@link InstanceIdentifier} is determined by first argument of
77 * method and is retrieved via method which is annotated with
78 * {@link RoutingContext}. Class representing Routing Context Identifier is
79 * retrieved by {@link RoutingContext}.
80 * <li>If first argument is not defined / {@link RoutingContext} annotation
81 * is not present on any field invocation will be delegated to default
82 * service {@link RpcRouter#getDefaultService()}.
86 * - Subclass of RpcService for which Router is to be generated.
87 * @return Instance of RpcService of provided serviceType which implements
88 * also {@link RpcRouter}<T> and {@link DelegateProxy}
90 <T extends RpcService> RpcRouter<T> getRouterFor(Class<T> serviceType) throws IllegalArgumentException;
92 NotificationInvokerFactory getInvokerFactory();