* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
87 lines
2.5 KiB
Go
87 lines
2.5 KiB
Go
// Package introspect provides some utilities for dealing with the DBus
|
|
// introspection format.
|
|
package introspect
|
|
|
|
import "encoding/xml"
|
|
|
|
// The introspection data for the org.freedesktop.DBus.Introspectable interface.
|
|
var IntrospectData = Interface{
|
|
Name: "org.freedesktop.DBus.Introspectable",
|
|
Methods: []Method{
|
|
{
|
|
Name: "Introspect",
|
|
Args: []Arg{
|
|
{"out", "s", "out"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
// XML document type declaration of the introspection format version 1.0
|
|
const IntrospectDeclarationString = `
|
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
|
|
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
|
`
|
|
|
|
// The introspection data for the org.freedesktop.DBus.Introspectable interface,
|
|
// as a string.
|
|
const IntrospectDataString = `
|
|
<interface name="org.freedesktop.DBus.Introspectable">
|
|
<method name="Introspect">
|
|
<arg name="out" direction="out" type="s"/>
|
|
</method>
|
|
</interface>
|
|
`
|
|
|
|
// Node is the root element of an introspection.
|
|
type Node struct {
|
|
XMLName xml.Name `xml:"node"`
|
|
Name string `xml:"name,attr,omitempty"`
|
|
Interfaces []Interface `xml:"interface"`
|
|
Children []Node `xml:"node,omitempty"`
|
|
}
|
|
|
|
// Interface describes a DBus interface that is available on the message bus.
|
|
type Interface struct {
|
|
Name string `xml:"name,attr"`
|
|
Methods []Method `xml:"method"`
|
|
Signals []Signal `xml:"signal"`
|
|
Properties []Property `xml:"property"`
|
|
Annotations []Annotation `xml:"annotation"`
|
|
}
|
|
|
|
// Method describes a Method on an Interface as retured by an introspection.
|
|
type Method struct {
|
|
Name string `xml:"name,attr"`
|
|
Args []Arg `xml:"arg"`
|
|
Annotations []Annotation `xml:"annotation"`
|
|
}
|
|
|
|
// Signal describes a Signal emitted on an Interface.
|
|
type Signal struct {
|
|
Name string `xml:"name,attr"`
|
|
Args []Arg `xml:"arg"`
|
|
Annotations []Annotation `xml:"annotation"`
|
|
}
|
|
|
|
// Property describes a property of an Interface.
|
|
type Property struct {
|
|
Name string `xml:"name,attr"`
|
|
Type string `xml:"type,attr"`
|
|
Access string `xml:"access,attr"`
|
|
Annotations []Annotation `xml:"annotation"`
|
|
}
|
|
|
|
// Arg represents an argument of a method or a signal.
|
|
type Arg struct {
|
|
Name string `xml:"name,attr,omitempty"`
|
|
Type string `xml:"type,attr"`
|
|
Direction string `xml:"direction,attr,omitempty"`
|
|
}
|
|
|
|
// Annotation is an annotation in the introspection format.
|
|
type Annotation struct {
|
|
Name string `xml:"name,attr"`
|
|
Value string `xml:"value,attr"`
|
|
}
|