Coder Social home page Coder Social logo

goffi's Introduction

gofii

Depend on

dlfcn libffi

Windows

install msys2

pacman -S mingw-w64-x86_64-dlfcn
pacman -S mingw-w64-x86_64-libffi

example

package main

/*
typedef int (*opera_fn)(int ,int);
int opera(void* fn, int a, int b){
	opera_fn f = (opera_fn)(fn);
	return f(a, b);
}
*/
import "C"
import (
	"fmt"

	"github.com/jinzhongmin/goffi/pkg/c"
	"github.com/jinzhongmin/goffi/pkg/dlfcn"
	"github.com/jinzhongmin/usf"
)

func main() {

	//###################
	// hello world.
	//###################
	str := c.CStr("hello %s .\n")
	defer usf.Free(str)

	world := c.CStr("world")
	defer usf.Free(world)

	fnPrototype := &c.FuncPrototype{
		Name:    "printf",
		InTypes: []c.Type{c.Pointer, c.Pointer},
		OutType: c.Void,
	}
	fnPrototype.Create(dlfcn.DlsymDefault)
	fnPrototype.Call([]interface{}{&str, &world})

	//###################
	// callback
	//###################

	//define callback prototype
	cbprototype := c.DefineCallbackPrototype(c.AbiDefault, c.I32, []c.Type{c.I32, c.I32})
	defer cbprototype.Free()

	a := C.int(100)
	b := C.int(200)

	add_fun := cbprototype.CreateCallback(func(args []*c.Value, ret *c.Value) {
		a := args[0].I32()
		b := args[1].I32()

		ret.SetI32(a + b)
	})
	add := C.opera(add_fun.CFuncPtr(), a, b)
	fmt.Println("a + b = ", add)
	add_fun.Free()

	//change opera_func to mul
	mul_fun := cbprototype.CreateCallback(func(args []*c.Value, ret *c.Value) {
		a := args[0].I32()
		b := args[1].I32()

		ret.SetI32(a * b)
	})

	mul := C.opera(mul_fun.CFuncPtr(), a, b)
	fmt.Println("a * b = ", mul)
	mul_fun.Free()

}

goffi's People

Contributors

jinzhongmin avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.