1. 接口[多态]

​多态性(polymorphisn)是允许你将父对象设置成为和一个或更多的他的子对象相等的技术,赋值之后,父对象就可以根据当前赋值给它的子对象的特性以不同的方式运作。

简而言之,就是允许将子类类型的指针赋值给父类类型的指针。

即一个引用变量倒底会指向哪个类的实例对象,该引用变量发出的方法调用到底是哪个类中实现的方法,必须在由程序运行期间才能决定。不修改程序代码就可以改变程序运行时所绑定的具体代码,让程序可以选择多个运行状态,这就是多态性。多态分为编译时多态(静态多态)和运行时多态(动态多态),编译时多态一般通过方法重载实现,运行时多态一般通过方法重写实现。

1.1 接口概念

接口类型可以看作是类型系统中一种特殊的类型,而实例就是实现了该接口的具体结构体类型。

接口类型与实现了该接口的结构体对象之间的关系好比变量类型与变量之间的关系。

接口即一组方法定义的集合,定义了对象的一组行为,由具体的类型实例实现具体的方法。换句话说,一个接口就是定义(规范或约束),而方法就是实现,接口的作用应该是将定义与实现分离,降低耦合度。习惯用“er”结尾来命名,例如“Reader”。接口与对象的关系是多对多,即一个对象可以实现多个接口,一个接口也可以被多个对象实现。

​ 接口是Go语言整个类型系统的基石,其他语言的接口是不同组件之间的契约的存在,对契约的实现是强制性的,必须显式声明实现了该接口,这类接口称之为“侵入式接口”。而Go语言的接口是隐式存在,只要实现了该接口的所有函数则代表已经实现了该接口,并不需要显式的接口声明

  • 接口的比喻

​ 你的电脑上只有一个USB接口。这个USB接口可以接MP3,数码相机,摄像头,鼠标,键盘等。。。所有的上述硬件都可以公用这个接口,有很好的扩展性,该USB接口定义了一种规范,只要实现了该规范,就可以将不同的设备接入电脑,而设备的改变并不会对电脑本身有什么影响(低耦合)

  • 面向接口编程

接口表示调用者和设计者的一种约定,在多人合作开发同一个项目时,事先定义好相互调用的接口可以大大提高开发的效率。接口是用类来实现的,实现接口的类必须严格按照接口的声明来实现接口提供的所有功能。有了接口,就可以在不影响现有接口声明的情况下,修改接口的内部实现,从而使兼容性问题最小化。

面向接口编程可以分为三方面:制定者(或者叫协调者),实现者(或者叫生产者),调用者(或者叫消费者)

​ 当其他设计者调用了接口后,就不能再随意更改接口的定义,否则项目开发者事先的约定就失去了意义。但是可以在类中修改相应的代码,完成需要改动的内容。

1.2 非侵入式接口

非侵入式接口:一个类只需要实现了接口要求的所有函数就表示实现了该接口,并不需要显式声明

  1. type File struct{
  2. //类的属性
  3. }
  4. //File类的方法
  5. func (f *File) Read(buf []byte) (n int,err error)
  6. func (f *File) Write(buf []byte) (n int,err error)
  7. func (f *File) Seek(off int64,whence int) (pos int64,err error)
  8. func (f *File) Close() error
  9. //接口1:IFile
  10. type IFile interface{
  11. Read(buf []byte) (n int,err error)
  12. Write(buf []byte) (n int,err error)
  13. Seek(off int64,whence int) (pos int64,err error)
  14. Close() error
  15. }
  16. //接口2:IReader
  17. type IReader interface{
  18. Read(buf []byte) (n int,err error)
  19. }
  20. //接口赋值,File类实现了IFile和IReader接口,即接口所包含的所有方法
  21. var file1 IFile = new(File)
  22. var file2 IReader = new(File)

1.3 接口赋值

只要类实现了该接口的所有方法,即可将该类赋值给这个接口,接口主要用于多态化方法。即对接口定义的方法,不同的实现方式。

接口赋值:
1)将对象实例赋值给接口

  1. type IUSB interface{
  2. //定义IUSB的接口方法
  3. }
  4. //方法定义在类外,绑定该类,以下为方便,备注写在类中
  5. type MP3 struct{
  6. //实现IUSB的接口,具体实现方式是MP3的方法
  7. }
  8. type Mouse struct{
  9. //实现IUSB的接口,具体实现方式是Mouse的方法
  10. }
  11. //接口赋值给具体的对象实例MP3
  12. var usb IUSB =new(MP3)
  13. usb.Connect()
  14. usb.Close()
  15. //接口赋值给具体的对象实例Mouse
  16. var usb IUSB =new(Mouse)
  17. usb.Connect()
  18. usb.Close()

2)将接口赋值给另一个接口

  1. 只要两个接口拥有相同的方法列表(与次序无关),即是两个相同的接口,可以相互赋值
  2. 接口赋值只需要接口A的方法列表是接口B的子集(即假设接口A中定义的所有方法,都在接口B中有定义),那么B接口的实例可以赋值给A的对象。反之不成立,即子接口B包含了父接口A,因此可以将子接口的实例赋值给父接口。
  3. 即子接口实例实现了子接口的所有方法,而父接口的方法列表是子接口的子集,则子接口实例自然实现了父接口的所有方法,因此可以将子接口实例赋值给父接口。
  1. type Writer interface{ //父接口
  2. Write(buf []byte) (n int,err error)
  3. }
  4. type ReadWriter interface{ //子接口
  5. Read(buf []byte) (n int,err error)
  6. Write(buf []byte) (n int,err error)
  7. }
  8. var file1 ReadWriter=new(File) //子接口实例
  9. var file2 Writer=file1 //子接口实例赋值给父接口

1.4 接口查询

若要在 switch 外判断一个接口类型是否实现了某个接口,可以使用“逗号 ok ”。

value, ok := Interfacevariable.(implementType)

其中 Interfacevariable 是接口变量(接口值),implementType 为实现此接口的类型,value 返回接口变量实际类型变量的值,如果该类型实现了此接口返回 true。

  1. //判断file1接口指向的对象实例是否是File类型
  2. var file1 Writer=...
  3. if file5,ok:=file1.(File);ok{
  4. ...
  5. }

1.5 接口类型查询

在 Go 中,要判断传递给接口值的变量类型,可以在使用 type switch 得到。(type)只能在 switch 中使用。

  1. // 另一个实现了 I 接口的 R 类型
  2. type R struct { i int }
  3. func (p *R) Get() int { return p.i }
  4. func (p *R) Put(v int) { p.i = v }
  5. func f(p I) {
  6. switch t := p.(type) { // 判断传递给 p 的实际类型
  7. case *S: // 指向 S 的指针类型
  8. case *R: // 指向 R 的指针类型
  9. case S: // S 类型
  10. case R: // R 类型
  11. default: //实现了 I 接口的其他类型
  12. }
  13. }

1.6 接口组合

  1. //接口组合类似类型组合,只不过只包含方法,不包含成员变量
  2. type ReadWriter interface{ //接口组合,避免代码重复
  3. Reader //接口Reader
  4. Writer //接口Writer
  5. }

1.7 Any类型[空接口]

每种类型都能匹配到空接口:interface{}。空接口类型对方法没有任何约束(因为没有方法),它能包含任意类型,也可以实现到其他接口类型的转换。如果传递给该接口的类型变量实现了转换后的接口则可以正常运行,否则出现运行时错误。

  1. //interface{}即为可以指向任何对象的Any类型,类似Java中的Object类
  2. var v1 interface{}=struct{X int}{1}
  3. var v2 interface{}="abc"
  4. func DoSomething(v interface{}) { //该函数可以接收任何类型的参数,因为任何类型都实现了空接口
  5. // ...
  6. }

1.8 接口的代码示例

  1. //接口animal
  2. type Animal interface {
  3. Speak() string
  4. }
  5. //Dog类实现animal接口
  6. type Dog struct {
  7. }
  8. func (d Dog) Speak() string {
  9. return "Woof!"
  10. }
  11. //Cat类实现animal接口
  12. type Cat struct {
  13. }
  14. func (c Cat) Speak() string {
  15. return "Meow!"
  16. }
  17. //Llama实现animal接口
  18. type Llama struct {
  19. }
  20. func (l Llama) Speak() string {
  21. return "?????"
  22. }
  23. //JavaProgrammer实现animal接口
  24. type JavaProgrammer struct {
  25. }
  26. func (j JavaProgrammer) Speak() string {
  27. return "Design patterns!"
  28. }
  29. //主函数
  30. func main() {
  31. animals := []Animal{Dog{}, Cat{}, Llama{}, JavaProgrammer{}} //利用接口实现多态
  32. for _, animal := range animals {
  33. fmt.Println(animal.Speak()) //打印不同实现该接口的类的方法返回值
  34. }
  35. }

2. client-go中接口的使用分析

以下以k8s.io/client-go/kubernetes/typed/core/v1/pod.go的pod对象做分析。

2.1 接口设计与定义

2.1.1 接口组合

  1. // PodsGetter has a method to return a PodInterface.
  2. // A group's client should implement this interface.
  3. type PodsGetter interface {
  4. Pods(namespace string) PodInterface
  5. }

2.1.2 接口定义 {#index1}

  1. // PodInterface has methods to work with Pod resources.
  2. type PodInterface interface {
  3. Create(*v1.Pod) (*v1.Pod, error)
  4. Update(*v1.Pod) (*v1.Pod, error)
  5. UpdateStatus(*v1.Pod) (*v1.Pod, error)
  6. Delete(name string, options *meta_v1.DeleteOptions) error
  7. DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
  8. Get(name string, options meta_v1.GetOptions) (*v1.Pod, error)
  9. List(opts meta_v1.ListOptions) (*v1.PodList, error)
  10. Watch(opts meta_v1.ListOptions) (watch.Interface, error)
  11. Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Pod, err error)
  12. PodExpansion
  13. }

PodInterface接口定义了pod对象所使用的方法,一般为增删改查等。其他kubernetes资源对象的接口定义类似,区别在于入参和出参与对象相关。例如Create(*v1.Pod) (*v1.Pod, error)方法定义的入参出参为*v1.Pod。如果要实现该接口,即实现该接口的所有方法。

2.2 接口的实现 {#index2}

2.2.1 结构体的定义

  1. // pods implements PodInterface
  2. type pods struct {
  3. client rest.Interface
  4. ns string
  5. }

2.2.2 new函数[构造函数]

  1. // newPods returns a Pods
  2. func newPods(c *CoreV1Client, namespace string) *pods {
  3. return &pods{
  4. client: c.RESTClient(),
  5. ns: namespace,
  6. }
  7. }

2.2.3 方法的实现

Get

  1. // Get takes name of the pod, and returns the corresponding pod object, and an error if there is any.
  2. func (c *pods) Get(name string, options meta_v1.GetOptions) (result *v1.Pod, err error) {
  3. result = &v1.Pod{}
  4. err = c.client.Get().
  5. Namespace(c.ns).
  6. Resource("pods").
  7. Name(name).
  8. VersionedParams(&options, scheme.ParameterCodec).
  9. Do().
  10. Into(result)
  11. return
  12. }

List

  1. // List takes label and field selectors, and returns the list of Pods that match those selectors.
  2. func (c *pods) List(opts meta_v1.ListOptions) (result *v1.PodList, err error) {
  3. result = &v1.PodList{}
  4. err = c.client.Get().
  5. Namespace(c.ns).
  6. Resource("pods").
  7. VersionedParams(&opts, scheme.ParameterCodec).
  8. Do().
  9. Into(result)
  10. return
  11. }

Create

  1. // Create takes the representation of a pod and creates it. Returns the server's representation of the pod, and an error, if there is any.
  2. func (c *pods) Create(pod *v1.Pod) (result *v1.Pod, err error) {
  3. result = &v1.Pod{}
  4. err = c.client.Post().
  5. Namespace(c.ns).
  6. Resource("pods").
  7. Body(pod).
  8. Do().
  9. Into(result)
  10. return
  11. }

Update

  1. // Update takes the representation of a pod and updates it. Returns the server's representation of the pod, and an error, if there is any.
  2. func (c *pods) Update(pod *v1.Pod) (result *v1.Pod, err error) {
  3. result = &v1.Pod{}
  4. err = c.client.Put().
  5. Namespace(c.ns).
  6. Resource("pods").
  7. Name(pod.Name).
  8. Body(pod).
  9. Do().
  10. Into(result)
  11. return
  12. }

Delete

  1. // Delete takes name of the pod and deletes it. Returns an error if one occurs.
  2. func (c *pods) Delete(name string, options *meta_v1.DeleteOptions) error {
  3. return c.client.Delete().
  4. Namespace(c.ns).
  5. Resource("pods").
  6. Name(name).
  7. Body(options).
  8. Do().
  9. Error()
  10. }

2.3 接口的调用

示例:

  1. // 创建clientset实例
  2. clientset, err := kubernetes.NewForConfig(config)
  3. // 具体的调用
  4. pods, err := clientset.CoreV1().Pods("").List(metav1.ListOptions{})

clientset实现了接口InterfaceInterface是个接口组合,包含各个client的接口类型。例如CoreV1()方法对应的接口类型是CoreV1Interface

以下是clientset的CoreV1()方法实现:

  1. // CoreV1 retrieves the CoreV1Client
  2. func (c *Clientset) CoreV1() corev1.CoreV1Interface {
  3. return c.coreV1
  4. }

该方法可以理解为是一个构造函数。构造函数的返回值类型是一个接口类型CoreV1Interface,而return的返回值是实现了该接口类型的结构体对象c.coreV1

接口类型是一种特殊的类型,接口类型与结构体对象之间的关系好比变量类型与变量之间的关系。其中的结构体对象必须实现了该接口类型的所有方法。

所以clientset的CoreV1()方法实现是返回一个CoreV1Client结构体对象。该结构体对象实现了CoreV1Interface接口,该接口也是一个接口组合。

  1. type CoreV1Interface interface {
  2. RESTClient() rest.Interface
  3. ComponentStatusesGetter
  4. ConfigMapsGetter
  5. EndpointsGetter
  6. EventsGetter
  7. LimitRangesGetter
  8. NamespacesGetter
  9. NodesGetter
  10. PersistentVolumesGetter
  11. PersistentVolumeClaimsGetter
  12. PodsGetter
  13. PodTemplatesGetter
  14. ReplicationControllersGetter
  15. ResourceQuotasGetter
  16. SecretsGetter
  17. ServicesGetter
  18. ServiceAccountsGetter
  19. }

而实现的Pods()方法是其中的PodsGetter接口。

Pods()CoreV1()一样是个构造函数,构造函数的返回值类型是PodInterface接口,返回值是实现了PodInterface接口的pods结构体对象。

  1. func (c *CoreV1Client) Pods(namespace string) PodInterface {
  2. return newPods(c, namespace)
  3. }

PodInterface接口定义参考接口定义pods对象实现了PodInterface接口的方法,具体参考接口的实现

最终调用了pods对象的List()方法。

  1. pods, err := clientset.CoreV1().Pods("").List(metav1.ListOptions{})

即以上代码就是不断调用实现了某接口的结构体对象的构造函数,生成具体的结构体对象,再调用结构体对象的某个具体方法。

3. 通用接口设计

3.1 接口定义

  1. // ProjectManager manage life cycle of Deployment and Resources
  2. type PodInterface interface {
  3. Create(*v1.Pod) (*v1.Pod, error)
  4. Update(*v1.Pod) (*v1.Pod, error)
  5. UpdateStatus(*v1.Pod) (*v1.Pod, error)
  6. Delete(name string, options *meta_v1.DeleteOptions) error
  7. DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
  8. Get(name string, options meta_v1.GetOptions) (*v1.Pod, error)
  9. List(opts meta_v1.ListOptions) (*v1.PodList, error)
  10. Watch(opts meta_v1.ListOptions) (watch.Interface, error)
  11. Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Pod, err error)
  12. PodExpansion
  13. }

3.2 结构体定义

  1. // pods implements PodInterface
  2. type pods struct {
  3. client rest.Interface
  4. ns string
  5. }

3.3 构造函数

  1. // newPods returns a Pods
  2. func newPods(c *CoreV1Client, namespace string) *pods {
  3. return &pods{
  4. client: c.RESTClient(),
  5. ns: namespace,
  6. }
  7. }

3.4 结构体实现

List()

  1. // List takes label and field selectors, and returns the list of Pods that match those selectors.
  2. func (c *pods) List(opts meta_v1.ListOptions) (result *v1.PodList, err error) {
  3. result = &v1.PodList{}
  4. err = c.client.Get().
  5. Namespace(c.ns).
  6. Resource("pods").
  7. VersionedParams(&opts, scheme.ParameterCodec).
  8. Do().
  9. Into(result)
  10. return
  11. }

3.5 接口调用

  1. pods, err := clientset.CoreV1().Pods("").List(metav1.ListOptions{})

3.6 其他接口设计示例

  1. type XxxManager interface {
  2. Create(args argsType) (*XxxStruct, error)
  3. Get(args argsType) (**XxxStruct, error)
  4. Update(args argsType) (*XxxStruct, error)
  5. Delete(name string, options *DeleleOptions) error
  6. }
  7. type XxxManagerImpl struct {
  8. Name string
  9. Namespace string
  10. kubeCli *kubernetes.Clientset
  11. }
  12. func NewXxxManagerImpl (namespace, name string, kubeCli *kubernetes.Clientset) XxxManager {
  13. return &XxxManagerImpl{
  14. Name name,
  15. Namespace namespace,
  16. kubeCli: kubeCli,
  17. }
  18. }
  19. func (xm *XxxManagerImpl) Create(args argsType) (*XxxStruct, error) {
  20. //具体的方法实现
  21. }