Add new revision for pcep types model
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / DefaultPCEPSessionNegotiator.java
1 /*
2  * Copyright (c) 2013 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;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.VisibleForTesting;
13 import io.netty.channel.Channel;
14 import io.netty.util.concurrent.Promise;
15 import org.opendaylight.protocol.pcep.PCEPSessionListener;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.pcep.app.config.rev160707.pcep.dispatcher.config.Tls;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.open.object.Open;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.open.object.OpenBuilder;
19
20 public final class DefaultPCEPSessionNegotiator extends AbstractPCEPSessionNegotiator {
21     private final PCEPSessionListener listener;
22     private final int maxUnknownMessages;
23
24     public DefaultPCEPSessionNegotiator(final Promise<PCEPSessionImpl> promise, final Channel channel,
25             final PCEPSessionListener listener, final short sessionId, final int maxUnknownMessages,
26             final Open localPrefs, final Tls tlsConfiguration) {
27         super(promise, channel);
28         super.setTlsConfiguration(tlsConfiguration);
29         this.maxUnknownMessages = maxUnknownMessages;
30         this.myLocalPrefs = new OpenBuilder().setKeepalive(localPrefs.getKeepalive())
31                 .setDeadTimer(localPrefs.getDeadTimer()).setSessionId(
32                 sessionId).setTlvs(localPrefs.getTlvs()).build();
33         this.listener = requireNonNull(listener);
34     }
35
36     public DefaultPCEPSessionNegotiator(final Promise<PCEPSessionImpl> promise, final Channel channel,
37             final PCEPSessionListener listener, final short sessionId, final int maxUnknownMessages, final Open localPrefs) {
38         this(promise, channel, listener, sessionId, maxUnknownMessages, localPrefs, null);
39     }
40
41     private final Open myLocalPrefs;
42
43     @Override
44     protected Open getInitialProposal() {
45         return this.myLocalPrefs;
46     }
47
48     @Override
49     @VisibleForTesting
50     public PCEPSessionImpl createSession(final Channel channel, final Open localPrefs, final Open remotePrefs) {
51         return new PCEPSessionImpl(this.listener, this.maxUnknownMessages, channel, localPrefs, remotePrefs);
52     }
53
54     @Override
55     protected boolean isProposalAcceptable(final Open open) {
56         return true;
57     }
58
59     @Override
60     protected Open getCounterProposal(final Open open) {
61         return null;
62     }
63
64     @Override
65     protected Open getRevisedProposal(final Open suggestion) {
66         return this.myLocalPrefs;
67     }
68 }