评估来自gomobile bind的nil值

时间:2015-09-17 17:57:59

标签: android go mobile gomobile

从Android Java中 Go 函数评估 nil 返回值的正确方法是什么?

以下是我尝试的内容:

// ExportedGoFunction returns a pointer to a GoStruct or nil in case of fail
func ExportedGoFunction() *GoStruct {
  return nil
}

然后我使用:

通过gomobile生成一个.aar文件

gomobile bind -v --target=android

在我的Java代码中,我尝试将 nil 评估为 null ,但它无效。 Java代码:

GoLibrary.GoStruct goStruct = GoLibrary.ExportedGoFunction();
if (goStruct != null) {
   // This block should not be executed, but it is
   Log.d("GoLog", "goStruct is not null");
}

免责声明:go库中的其他方法完美无缺

2 个答案:

答案 0 :(得分:1)

查看go mobile的测试包,看起来你需要将null值转换为类型。

来自SeqTest.java文件:

 public void testNilErr() throws Exception {
    Testpkg.Err(null); // returns nil, no exception
  }

编辑:一个非例外的例子:

byte[] got = Testpkg.BytesAppend(null, null);
assertEquals("Bytes(null+null) should match", (byte[])null, got);
got = Testpkg.BytesAppend(new byte[0], new byte[0]);
assertEquals("Bytes(empty+empty) should match", (byte[])null, got);

可能很简单:

GoLibrary.GoStruct goStruct = GoLibrary.ExportedGoFunction();
if (goStruct != (GoLibrary.GoStruct)null) {
   // This block should not be executed, but it is
   Log.d("GoLog", "goStruct is not null");
}

编辑:对实用方法的建议:

您可以向库中添加一个实用程序函数,为您提供键入的nil值。

func NullVal() *GoStruct {
    return nil
}

仍然有点hacky,但它应该比多个包装器和异常处理更少开销。

答案 1 :(得分:1)

可能的未来参考,从 09/2015 开始,我提出了两种处理问题的方法。

第一个是从 Go 代码返回错误,尝试/捕获 Java 中的错误。这是一个例子:

// ExportedGoFunction returns a pointer to a GoStruct or nil in case of fail
func ExportedGoFunction() (*GoStruct, error) {
   result := myUnexportedGoStruct()
   if result == nil {
      return nil, errors.New("Error: GoStruct is Nil")
   }

   return result, nil
}

然后尝试/捕获 Java

中的错误
try {
   GoLibrary.GoStruct myStruct = GoLibrary.ExportedGoFunction();
} 
catch (Exception e) {
   e.printStackTrace(); // myStruct is nil   
}

这种方法既是惯用的 Go 又是 Java ,但即使它可以防止程序崩溃,它最终会使用try / catch语句膨胀代码,导致更多的开销。

因此,基于用户@SnoProblem回答解决问题的非惯用方法并正确处理我提出的空值:

// NullGoStruct returns false if value is nil or true otherwise
func NullGoStruct(value *GoStruct) bool {
    return (value == nil) 
}

然后检查 Java 中的代码,如:

GoLibrary.GoStruct value = GoLibrary.ExportedGoFunction();
if (GoLibrary.NullGoStruct(value)) {
   // This block is executed only if value has nil value in Go
   Log.d("GoLog", "value is null");
}