62a22025bc1de088553f381c95fecbd5c8c8eba3
[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 com.google.common.annotations.VisibleForTesting;
11 import com.google.common.base.Preconditions;
12
13 import io.netty.channel.Channel;
14 import io.netty.util.concurrent.Promise;
15
16 import org.opendaylight.protocol.pcep.PCEPSessionListener;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.Open;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.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, final Open localPrefs) {
26         super(promise, channel);
27         this.maxUnknownMessages = maxUnknownMessages;
28         this.myLocalPrefs = new OpenBuilder().setKeepalive(localPrefs.getKeepalive()).setDeadTimer(localPrefs.getDeadTimer()).setSessionId(
29                 sessionId).setTlvs(localPrefs.getTlvs()).build();
30         this.listener = Preconditions.checkNotNull(listener);
31     }
32
33     private final Open myLocalPrefs;
34
35     @Override
36     protected Open getInitialProposal() {
37         return this.myLocalPrefs;
38     }
39
40     @Override
41     @VisibleForTesting
42     public PCEPSessionImpl createSession(final Channel channel, final Open localPrefs, final Open remotePrefs) {
43         return new PCEPSessionImpl(this.listener, this.maxUnknownMessages, channel, localPrefs, remotePrefs);
44     }
45
46     @Override
47     protected boolean isProposalAcceptable(final Open open) {
48         return true;
49     }
50
51     @Override
52     protected Open getCounterProposal(final Open open) {
53         return null;
54     }
55
56     @Override
57     protected Open getRevisedProposal(final Open suggestion) {
58         return this.myLocalPrefs;
59     }
60 }