generated from networkservicemesh/cmd-template
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update forwarder to use it with an external vpp
Signed-off-by: Artem Glazychev <artem.glazychev@xored.com>
- Loading branch information
1 parent
16b654b
commit 9701306
Showing
6 changed files
with
211 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// Copyright (c) 2022 Cisco and/or its affiliates. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build linux | ||
|
||
package xconnectns | ||
|
||
import ( | ||
"net/url" | ||
"time" | ||
|
||
"google.golang.org/grpc" | ||
|
||
"github.com/networkservicemesh/api/pkg/api/networkservice" | ||
"github.com/networkservicemesh/sdk/pkg/networkservice/common/cleanup" | ||
|
||
"github.com/networkservicemesh/sdk-vpp/pkg/networkservice/mechanisms/vxlan" | ||
"github.com/networkservicemesh/sdk-vpp/pkg/networkservice/stats" | ||
) | ||
|
||
type xconnOptions struct { | ||
name string | ||
authorizeServer networkservice.NetworkServiceServer | ||
clientURL *url.URL | ||
dialTimeout time.Duration | ||
domain2Device map[string]string | ||
statsOpts []stats.Option | ||
cleanupOpts []cleanup.Option | ||
vxlanOpts []vxlan.Option | ||
dialOpts []grpc.DialOption | ||
} | ||
|
||
// Option is an option pattern for forwarder | ||
type Option func(o *xconnOptions) | ||
|
||
// WithName - set a forwarder name | ||
func WithName(name string) Option { | ||
return func(o *xconnOptions) { | ||
o.name = name | ||
} | ||
} | ||
|
||
// WithAuthorizeServer sets authorization server chain element | ||
func WithAuthorizeServer(authorizeServer networkservice.NetworkServiceServer) Option { | ||
if authorizeServer == nil { | ||
panic("Authorize server cannot be nil") | ||
} | ||
return func(o *xconnOptions) { | ||
o.authorizeServer = authorizeServer | ||
} | ||
} | ||
|
||
// WithClientURL sets clientURL. | ||
func WithClientURL(clientURL *url.URL) Option { | ||
return func(c *xconnOptions) { | ||
c.clientURL = clientURL | ||
} | ||
} | ||
|
||
// WithDialTimeout sets dial timeout for the client | ||
func WithDialTimeout(dialTimeout time.Duration) Option { | ||
return func(o *xconnOptions) { | ||
o.dialTimeout = dialTimeout | ||
} | ||
} | ||
|
||
// WithVlanDomain2Device sets vlan option | ||
func WithVlanDomain2Device(domain2Device map[string]string) Option { | ||
return func(o *xconnOptions) { | ||
o.domain2Device = domain2Device | ||
} | ||
} | ||
|
||
// WithStatsOptions sets stats options | ||
func WithStatsOptions(opts ...stats.Option) Option { | ||
return func(o *xconnOptions) { | ||
o.statsOpts = opts | ||
} | ||
} | ||
|
||
// WithCleanupOptions sets cleanup options | ||
func WithCleanupOptions(opts ...cleanup.Option) Option { | ||
return func(o *xconnOptions) { | ||
o.cleanupOpts = opts | ||
} | ||
} | ||
|
||
// WithVxlanOptions sets vxlan options | ||
func WithVxlanOptions(opts ...vxlan.Option) Option { | ||
return func(o *xconnOptions) { | ||
o.vxlanOpts = opts | ||
} | ||
} | ||
|
||
// WithDialOptions sets dial options | ||
func WithDialOptions(opts ...grpc.DialOption) Option { | ||
return func(o *xconnOptions) { | ||
o.dialOpts = opts | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters