2
0
mirror of synced 2025-02-24 15:28:28 +00:00
mobile/bind/testdata/vars.go.golden
Elias Naur 7df33f4a5c mobile/bind: allow bound packages to refer to imported bound packages
Multiple packages are already supported, but only as if each packages
were bound in isolation. This CL lets a bound package refer to other
bound packages in its exported functions, types and fields.

In Java, the JNI class jclass and constructor jmethodID are exported
so other packages can construct proxies of other packages' interfaces.

In ObjC, the class @interface declarations are moved from the package
.m file to its .h file to allow other packages to constructs its
interface proxies.

Add a supporting test package, secondpkg, and add Java and ObjC tests
for the new cross package functionality. Also add simplepkg for
testing corner cases where the generated Go file must not include its
bound package.

While we're here, stop generating Go proxy types for struct types;
only Go interfaces can be implemented in the foreign language.

Change-Id: Icbfa739c893703867d38a9100ed0928fbd7a660d
Reviewed-on: https://go-review.googlesource.com/20575
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2016-03-12 06:23:01 +00:00

200 lines
3.5 KiB
Plaintext

// Package gomobile_bind is an autogenerated binder stub for package vars.
// gobind -lang=go vars
//
// File is generated by gobind. Do not edit.
package gomobile_bind
/*
#include <stdlib.h>
#include <stdint.h>
#include "seq.h"
#include "vars.h"
*/
import "C"
import (
_seq "golang.org/x/mobile/bind/seq"
"vars"
)
// suppress the error if seq ends up unused
var _ = _seq.FromRefNum
type proxyvars_I _seq.Ref
//export var_setvars_ABool
func var_setvars_ABool(v C.char) {
_v := v != 0
vars.ABool = _v
}
//export var_getvars_ABool
func var_getvars_ABool() C.char {
v := vars.ABool
var _v C.char = 0
if v {
_v = 1
}
return _v
}
//export var_setvars_AFloat
func var_setvars_AFloat(v C.double) {
_v := float64(v)
vars.AFloat = _v
}
//export var_getvars_AFloat
func var_getvars_AFloat() C.double {
v := vars.AFloat
_v := C.double(v)
return _v
}
//export var_setvars_AFloat32
func var_setvars_AFloat32(v C.float) {
_v := float32(v)
vars.AFloat32 = _v
}
//export var_getvars_AFloat32
func var_getvars_AFloat32() C.float {
v := vars.AFloat32
_v := C.float(v)
return _v
}
//export var_setvars_AFloat64
func var_setvars_AFloat64(v C.double) {
_v := float64(v)
vars.AFloat64 = _v
}
//export var_getvars_AFloat64
func var_getvars_AFloat64() C.double {
v := vars.AFloat64
_v := C.double(v)
return _v
}
//export var_setvars_AString
func var_setvars_AString(v C.nstring) {
_v := decodeString(v)
vars.AString = _v
}
//export var_getvars_AString
func var_getvars_AString() C.nstring {
v := vars.AString
_v := encodeString(v)
return _v
}
//export var_setvars_AStructPtr
func var_setvars_AStructPtr(v C.int32_t) {
// Must be a Go object
_v_ref := _seq.FromRefNum(int32(v))
_v := _v_ref.Get().(*vars.S)
vars.AStructPtr = _v
}
//export var_getvars_AStructPtr
func var_getvars_AStructPtr() C.int32_t {
v := vars.AStructPtr
var _v C.int32_t = _seq.NullRefNum
if v != nil {
_v = C.int32_t(_seq.ToRefNum(v))
}
return _v
}
//export var_setvars_AnInt
func var_setvars_AnInt(v C.nint) {
_v := int(v)
vars.AnInt = _v
}
//export var_getvars_AnInt
func var_getvars_AnInt() C.nint {
v := vars.AnInt
_v := C.nint(v)
return _v
}
//export var_setvars_AnInt16
func var_setvars_AnInt16(v C.int16_t) {
_v := int16(v)
vars.AnInt16 = _v
}
//export var_getvars_AnInt16
func var_getvars_AnInt16() C.int16_t {
v := vars.AnInt16
_v := C.int16_t(v)
return _v
}
//export var_setvars_AnInt32
func var_setvars_AnInt32(v C.int32_t) {
_v := int32(v)
vars.AnInt32 = _v
}
//export var_getvars_AnInt32
func var_getvars_AnInt32() C.int32_t {
v := vars.AnInt32
_v := C.int32_t(v)
return _v
}
//export var_setvars_AnInt64
func var_setvars_AnInt64(v C.int64_t) {
_v := int64(v)
vars.AnInt64 = _v
}
//export var_getvars_AnInt64
func var_getvars_AnInt64() C.int64_t {
v := vars.AnInt64
_v := C.int64_t(v)
return _v
}
//export var_setvars_AnInt8
func var_setvars_AnInt8(v C.int8_t) {
_v := int8(v)
vars.AnInt8 = _v
}
//export var_getvars_AnInt8
func var_getvars_AnInt8() C.int8_t {
v := vars.AnInt8
_v := C.int8_t(v)
return _v
}
//export var_setvars_AnInterface
func var_setvars_AnInterface(v C.int32_t) {
var _v vars.I
_v_ref := _seq.FromRefNum(int32(v))
if _v_ref != nil {
if _v_ref.Num < 0 { // go object
_v = _v_ref.Get().(vars.I)
} else { // foreign object
_v = (*proxyvars_I)(_v_ref)
}
}
vars.AnInterface = _v
}
//export var_getvars_AnInterface
func var_getvars_AnInterface() C.int32_t {
v := vars.AnInterface
var _v C.int32_t = _seq.NullRefNum
if v != nil {
_v = C.int32_t(_seq.ToRefNum(v))
}
return _v
}