2015-07-24 14:16:31 +00:00
|
|
|
// Copyright 2015 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package bind
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/tools/go/types"
|
|
|
|
)
|
|
|
|
|
2015-07-28 10:26:33 +00:00
|
|
|
type Type interface {
|
|
|
|
GoType() types.Type
|
|
|
|
GoName() string
|
|
|
|
ID() string
|
|
|
|
Doc() string
|
|
|
|
Obj() types.Object
|
|
|
|
}
|
|
|
|
|
2015-07-24 14:16:31 +00:00
|
|
|
func needWrapType(typ types.Type) bool {
|
|
|
|
switch typ.(type) {
|
|
|
|
case *types.Struct:
|
|
|
|
return true
|
|
|
|
case *types.Named:
|
|
|
|
switch typ.Underlying().(type) {
|
|
|
|
case *types.Struct:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func cTypeName(typ types.Type) string {
|
|
|
|
switch typ := typ.(type) {
|
|
|
|
case *types.Basic:
|
|
|
|
kind := typ.Kind()
|
|
|
|
o, ok := typedescr[kind]
|
|
|
|
if ok {
|
|
|
|
return o.ctype
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return typ.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func cgoTypeName(typ types.Type) string {
|
|
|
|
switch typ := typ.(type) {
|
|
|
|
case *types.Basic:
|
|
|
|
kind := typ.Kind()
|
|
|
|
o, ok := typedescr[kind]
|
|
|
|
if ok {
|
|
|
|
return o.cgotype
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return typ.String()
|
|
|
|
}
|
|
|
|
|
2015-07-25 00:05:11 +00:00
|
|
|
func pyTypeName(typ types.Type) string {
|
|
|
|
switch typ := typ.(type) {
|
|
|
|
case *types.Basic:
|
|
|
|
kind := typ.Kind()
|
|
|
|
o, ok := typedescr[kind]
|
|
|
|
if ok {
|
|
|
|
return o.pysig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "object"
|
|
|
|
}
|
|
|
|
|
2015-07-24 14:16:31 +00:00
|
|
|
type typedesc struct {
|
|
|
|
ctype string
|
|
|
|
cgotype string
|
|
|
|
pyfmt string
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig string
|
2015-07-24 14:16:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var typedescr = map[types.BasicKind]typedesc{
|
|
|
|
types.Bool: typedesc{
|
|
|
|
ctype: "_Bool",
|
|
|
|
cgotype: "GoBool",
|
|
|
|
pyfmt: "b",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "bool",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Int: typedesc{
|
|
|
|
ctype: "int",
|
|
|
|
cgotype: "GoInt",
|
|
|
|
pyfmt: "i",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Int8: typedesc{
|
|
|
|
ctype: "int8_t",
|
|
|
|
cgotype: "GoInt8",
|
|
|
|
pyfmt: "c",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Int16: typedesc{
|
|
|
|
ctype: "int16_t",
|
|
|
|
cgotype: "GoInt16",
|
|
|
|
pyfmt: "h",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Int32: typedesc{
|
|
|
|
ctype: "int32_t",
|
|
|
|
cgotype: "GoInt32",
|
|
|
|
pyfmt: "i",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "long",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Int64: typedesc{
|
|
|
|
ctype: "int64_t",
|
|
|
|
cgotype: "GoInt64",
|
|
|
|
pyfmt: "k",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "long",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Uint: typedesc{
|
|
|
|
ctype: "unsigned int",
|
|
|
|
cgotype: "GoUint",
|
|
|
|
pyfmt: "I",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Uint8: typedesc{
|
|
|
|
ctype: "uint8_t",
|
|
|
|
cgotype: "GoUint8",
|
|
|
|
pyfmt: "b",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Uint16: typedesc{
|
|
|
|
ctype: "uint16_t",
|
|
|
|
cgotype: "GoUint16",
|
|
|
|
pyfmt: "H",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "int",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Uint32: typedesc{
|
|
|
|
ctype: "uint32_t",
|
|
|
|
cgotype: "GoUint32",
|
|
|
|
pyfmt: "I",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "long",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Uint64: typedesc{
|
|
|
|
ctype: "uint64_t",
|
|
|
|
cgotype: "GoUint64",
|
|
|
|
pyfmt: "K",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "long",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Float32: typedesc{
|
|
|
|
ctype: "float",
|
|
|
|
cgotype: "float",
|
|
|
|
pyfmt: "f",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "float",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Float64: typedesc{
|
|
|
|
ctype: "double",
|
|
|
|
cgotype: "double",
|
|
|
|
pyfmt: "d",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "float",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Complex64: typedesc{
|
|
|
|
ctype: "float complex",
|
|
|
|
cgotype: "GoComplex64",
|
|
|
|
pyfmt: "D",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "float",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.Complex128: typedesc{
|
|
|
|
ctype: "double complex",
|
|
|
|
cgotype: "GoComplex128",
|
|
|
|
pyfmt: "D",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "float",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.String: typedesc{
|
|
|
|
ctype: "const char*",
|
|
|
|
cgotype: "GoString",
|
|
|
|
pyfmt: "s",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "str",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
types.UnsafePointer: typedesc{
|
|
|
|
ctype: "void*",
|
|
|
|
cgotype: "void*",
|
|
|
|
pyfmt: "?",
|
2015-07-25 00:05:11 +00:00
|
|
|
pysig: "object",
|
2015-07-24 14:16:31 +00:00
|
|
|
},
|
|
|
|
}
|