Skip to content

Commit ef0608a

Browse files
author
Vipin Jain
committed
move containerIf out of core
1 parent 275d306 commit ef0608a

File tree

5 files changed

+64
-51
lines changed

5 files changed

+64
-51
lines changed

core/core.go

-21
Original file line numberDiff line numberDiff line change
@@ -106,24 +106,3 @@ type StateDriver interface {
106106
unmarshal func([]byte, interface{}) error) error
107107
ClearState(key string) error
108108
}
109-
110-
type ContainerEpContext struct {
111-
NewContName string
112-
CurrContName string
113-
InterfaceId string
114-
IpAddress string
115-
SubnetLen uint
116-
DefaultGw string
117-
}
118-
119-
type ContainerIf interface {
120-
// Container driver provides a mechanism to interface with container
121-
// runtime to handle events create, start, die, stop, pause, etc.
122-
Driver
123-
Init(config *Config) error
124-
Deinit()
125-
AttachEndpoint(ctx *ContainerEpContext) error
126-
DetachEndpoint(ctx *ContainerEpContext) error
127-
GetContainerId(contName string) string
128-
GetContainerName(contName string) (string, error)
129-
}

crt/crt.go

+8-16
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ import (
2020
"errors"
2121
"reflect"
2222

23-
"github.com/contiv/netplugin/core"
24-
"github.com/contiv/netplugin/crt/docker"
23+
"github.com/contiv/netplugin/crtclient"
24+
"github.com/contiv/netplugin/crtclient/docker"
2525
)
2626

2727
type Crt struct {
28-
ContainerIf core.ContainerIf
28+
ContainerIf crtclient.ContainerIf
2929
}
3030

3131
type CrtConfig struct {
@@ -46,20 +46,12 @@ var ContainerIfRegistry = map[string]ContainerIfTypes{
4646
},
4747
}
4848

49-
type ContainerEpContext struct {
50-
NewContName string
51-
CurrContName string
52-
InterfaceId string
53-
IpAddress string
54-
SubnetLen uint
55-
DefaultGw string
56-
}
57-
58-
func (c *Crt) AttachEndpoint(contEpContext *core.ContainerEpContext) error {
49+
func (c *Crt) AttachEndpoint(
50+
contEpContext *crtclient.ContainerEpContext) error {
5951
return c.ContainerIf.AttachEndpoint(contEpContext)
6052
}
6153

62-
func (c *Crt) DetachEndpoint(contEpContext *core.ContainerEpContext) error {
54+
func (c *Crt) DetachEndpoint(contEpContext *crtclient.ContainerEpContext) error {
6355
return c.ContainerIf.DetachEndpoint(contEpContext)
6456
}
6557

@@ -94,10 +86,10 @@ func (c *Crt) Init(configStr string) error {
9486
return err
9587
}
9688

97-
config := &core.Config{V: crtConfig}
89+
config := &crtclient.Config{V: crtConfig}
9890
crtType := ContainerIfRegistry[cfg.Crt.Type].CrtType
9991
crtif := reflect.New(crtType).Interface()
100-
c.ContainerIf = crtif.(core.ContainerIf)
92+
c.ContainerIf = crtif.(crtclient.ContainerIf)
10193
err = c.ContainerIf.Init(config)
10294
if err != nil {
10395
return err

crtclient/crtclient.go

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/***
2+
Copyright 2014 Cisco Systems Inc. All rights reserved.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.
14+
*/
15+
16+
package crtclient
17+
18+
// container runtime client interface implementations
19+
20+
type Config struct {
21+
// Config object parsed from a json styled config
22+
V interface{}
23+
}
24+
25+
type ContainerEpContext struct {
26+
NewContName string
27+
CurrContName string
28+
InterfaceId string
29+
IpAddress string
30+
SubnetLen uint
31+
DefaultGw string
32+
}
33+
34+
type ContainerIf interface {
35+
Init(config *Config) error
36+
Deinit()
37+
AttachEndpoint(ctx *ContainerEpContext) error
38+
DetachEndpoint(ctx *ContainerEpContext) error
39+
GetContainerId(contName string) string
40+
GetContainerName(contName string) (string, error)
41+
}

crt/docker/docker.go crtclient/docker/docker.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"path"
2626
"strconv"
2727

28-
"github.com/contiv/netplugin/core"
28+
"github.com/contiv/netplugin/crtclient"
2929
"github.com/vishvananda/netlink"
3030
// "github.com/vishvananda/netns"
3131
)
@@ -40,15 +40,15 @@ type Docker struct {
4040
Client *dockerclient.DockerClient
4141
}
4242

43-
func (d *Docker) Init(config *core.Config) error {
43+
func (d *Docker) Init(config *crtclient.Config) error {
4444
if config == nil {
4545
return errors.New("null config!")
4646
}
4747

4848
cfg, ok := config.V.(*DockerConfig)
4949

5050
if !ok {
51-
return &core.Error{Desc: "Invalid config type passed!"}
51+
return errors.New("Invalid config type passed!")
5252
}
5353

5454
if cfg.Docker.Socket == "" {
@@ -157,7 +157,7 @@ func (d *Docker) cleanupNetns(contName string) error {
157157
}
158158

159159
/*
160-
func (d *Docker) configureIfAddress(ctx *core.ContainerEpContext) error {
160+
func (d *Docker) configureIfAddress(ctx *crtclient.ContainerEpContext) error {
161161
162162
log.Printf("configuring ip: addr -%s/%d- on if %s for container %s\n",
163163
ctx.IpAddress, ctx.SubnetLen, ctx.InterfaceId, ctx.NewContName)
@@ -232,7 +232,7 @@ func (d *Docker) configureIfAddress(ctx *core.ContainerEpContext) error {
232232
return err
233233
}
234234
*/
235-
func (d *Docker) configureIfAddress(ctx *core.ContainerEpContext) error {
235+
func (d *Docker) configureIfAddress(ctx *crtclient.ContainerEpContext) error {
236236

237237
log.Printf("configuring ip: addr -%s/%d- on if %s for container %s\n",
238238
ctx.IpAddress, ctx.SubnetLen, ctx.InterfaceId, ctx.NewContName)
@@ -272,7 +272,7 @@ func (d *Docker) configureIfAddress(ctx *core.ContainerEpContext) error {
272272

273273
// performs funtion to configure the network access and policies
274274
// before the container becomes active
275-
func (d *Docker) AttachEndpoint(ctx *core.ContainerEpContext) error {
275+
func (d *Docker) AttachEndpoint(ctx *crtclient.ContainerEpContext) error {
276276

277277
err := d.moveIfToContainer(ctx.InterfaceId, ctx.NewContName)
278278
if err != nil {
@@ -293,7 +293,7 @@ func (d *Docker) AttachEndpoint(ctx *core.ContainerEpContext) error {
293293
}
294294

295295
// uninstall the policies and configuration during container attach
296-
func (d *Docker) DetachEndpoint(ctx *core.ContainerEpContext) error {
296+
func (d *Docker) DetachEndpoint(ctx *crtclient.ContainerEpContext) error {
297297
var err error
298298

299299
// log.Printf("Detached called for container %s with %s interface\n",

netd.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ import (
2525

2626
"github.com/contiv/netplugin/core"
2727
"github.com/contiv/netplugin/crt"
28-
"github.com/contiv/netplugin/crt/docker"
28+
"github.com/contiv/netplugin/crtclient"
29+
"github.com/contiv/netplugin/crtclient/docker"
2930
"github.com/contiv/netplugin/drivers"
3031
"github.com/contiv/netplugin/gstate"
3132
"github.com/contiv/netplugin/netutils"
@@ -192,8 +193,8 @@ func processNetEvent(netPlugin *plugin.NetPlugin, key, preValue string,
192193
}
193194

194195
func getEndpointContainerContext(state *core.StateDriver, epId string) (
195-
*core.ContainerEpContext, error) {
196-
var epCtx core.ContainerEpContext
196+
*crtclient.ContainerEpContext, error) {
197+
var epCtx crtclient.ContainerEpContext
197198
var err error
198199

199200
epCfg := &drivers.OvsCfgEndpointState{StateDriver: *state}
@@ -224,16 +225,16 @@ func getEndpointContainerContext(state *core.StateDriver, epId string) (
224225
}
225226

226227
func getContainerEpContextByContName(state *core.StateDriver, contName string) (
227-
epCtxs []core.ContainerEpContext, err error) {
228-
var epCtx *core.ContainerEpContext
228+
epCtxs []crtclient.ContainerEpContext, err error) {
229+
var epCtx *crtclient.ContainerEpContext
229230

230231
contName = strings.TrimPrefix(contName, "/")
231232
epCfgs, err := drivers.ReadAllEpsCfg(state)
232233
if err != nil {
233234
return
234235
}
235236

236-
epCtxs = make([]core.ContainerEpContext, len(epCfgs))
237+
epCtxs = make([]crtclient.ContainerEpContext, len(epCfgs))
237238
idx := 0
238239
for _, epCfg := range epCfgs {
239240
if epCfg.ContName != contName {
@@ -386,7 +387,7 @@ func handleEtcdEvents(netPlugin *plugin.NetPlugin, crt *crt.Crt,
386387
func handleContainerStart(netPlugin *plugin.NetPlugin, crt *crt.Crt,
387388
contId string) error {
388389
var err error
389-
var epContexts []core.ContainerEpContext
390+
var epContexts []crtclient.ContainerEpContext
390391

391392
contName, err := crt.GetContainerName(contId)
392393
if err != nil {

0 commit comments

Comments
 (0)