go-waku/library/api.go

144 lines
4.7 KiB
Go
Raw Normal View History

2022-03-21 23:15:53 +00:00
package main
/*
#include <stdlib.h>
#include <stddef.h>
*/
import "C"
import (
"unsafe"
mobile "github.com/status-im/go-waku/mobile"
2022-03-21 23:15:53 +00:00
"github.com/status-im/go-waku/waku/v2/protocol"
)
func main() {}
2022-04-03 00:22:42 +00:00
//export waku_new
2022-03-21 23:15:53 +00:00
// Initialize a waku node. Receives a JSON string containing the configuration
// for the node. It can be NULL. Example configuration:
// ```
// {"host": "0.0.0.0", "port": 60000, "advertiseAddr": "1.2.3.4", "nodeKey": "0x123...567", "keepAliveInterval": 20, "relay": true}
// ```
// All keys are optional. If not specified a default value will be set:
// - host: IP address. Default 0.0.0.0
// - port: TCP port to listen. Default 60000. Use 0 for random
// - advertiseAddr: External IP
// - nodeKey: secp256k1 private key. Default random
// - keepAliveInterval: interval in seconds to ping all peers
// - relay: Enable WakuRelay. Default `true`
2022-04-03 00:22:42 +00:00
func waku_new(configJSON *C.char) *C.char {
response := mobile.NewNode(C.GoString(configJSON))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_start
2022-03-21 23:15:53 +00:00
// Starts the waku node
2022-04-03 00:22:42 +00:00
func waku_start() *C.char {
response := mobile.Start()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_stop
2022-03-21 23:15:53 +00:00
// Stops a waku node
2022-04-03 00:22:42 +00:00
func waku_stop() *C.char {
response := mobile.Stop()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_peerid
2022-03-21 23:15:53 +00:00
// Obtain the peer ID of the waku node
2022-04-03 00:22:42 +00:00
func waku_peerid() *C.char {
response := mobile.PeerID()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_listen_addresses
2022-03-21 23:15:53 +00:00
// Obtain the multiaddresses the wakunode is listening to
2022-04-03 00:22:42 +00:00
func waku_listen_addresses() *C.char {
response := mobile.ListenAddresses()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_add_peer
2022-03-21 23:15:53 +00:00
// Add node multiaddress and protocol to the wakunode peerstore
2022-04-03 00:22:42 +00:00
func waku_add_peer(address *C.char, protocolID *C.char) *C.char {
response := mobile.AddPeer(C.GoString(address), C.GoString(protocolID))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_connect
// Connect to peer at multiaddress. if ms > 0, cancel the function execution if it takes longer than N milliseconds
func waku_connect(address *C.char, ms C.int) *C.char {
response := mobile.Connect(C.GoString(address), int(ms))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_connect_peerid
// Connect to known peer by peerID. if ms > 0, cancel the function execution if it takes longer than N milliseconds
func waku_connect_peerid(peerID *C.char, ms C.int) *C.char {
response := mobile.Connect(C.GoString(peerID), int(ms))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_disconnect
2022-03-21 23:15:53 +00:00
// Close connection to a known peer by peerID
2022-04-03 00:22:42 +00:00
func waku_disconnect(peerID *C.char) *C.char {
response := mobile.Disconnect(C.GoString(peerID))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_peer_cnt
2022-03-21 23:15:53 +00:00
// Get number of connected peers
2022-04-03 00:22:42 +00:00
func waku_peer_cnt() *C.char {
response := mobile.PeerCnt()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_content_topic
2022-03-21 23:15:53 +00:00
// Create a content topic string according to RFC 23
2022-04-03 00:22:42 +00:00
func waku_content_topic(applicationName *C.char, applicationVersion C.uint, contentTopicName *C.char, encoding *C.char) *C.char {
return C.CString(protocol.NewContentTopic(C.GoString(applicationName), uint(applicationVersion), C.GoString(contentTopicName), C.GoString(encoding)).String())
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_pubsub_topic
2022-03-21 23:15:53 +00:00
// Create a pubsub topic string according to RFC 23
2022-04-03 00:22:42 +00:00
func waku_pubsub_topic(name *C.char, encoding *C.char) *C.char {
return C.CString(mobile.PubsubTopic(C.GoString(name), C.GoString(encoding)))
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_default_pubsub_topic
2022-03-21 23:15:53 +00:00
// Get the default pubsub topic used in waku2: /waku/2/default-waku/proto
2022-04-03 00:22:42 +00:00
func waku_default_pubsub_topic() *C.char {
return C.CString(mobile.DefaultPubsubTopic())
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_set_event_callback
2022-03-21 23:15:53 +00:00
// Register callback to act as signal handler and receive application signal
// (in JSON) which are used o react to asynchronous events in waku. The function
2022-03-21 23:15:53 +00:00
// signature for the callback should be `void myCallback(char* signalJSON)`
2022-04-03 00:22:42 +00:00
func waku_set_event_callback(cb unsafe.Pointer) {
mobile.SetEventCallback(cb)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_peers
// Retrieve the list of peers known by the waku node
2022-04-03 00:22:42 +00:00
func waku_peers() *C.char {
response := mobile.Peers()
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_decode_symmetric
// Decode a waku message using a 32 bytes symmetric key. The key must be a hex encoded string with "0x" prefix
func waku_decode_symmetric(messageJSON *C.char, symmetricKey *C.char) *C.char {
response := mobile.DecodeSymmetric(C.GoString(messageJSON), C.GoString(symmetricKey))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}
2022-04-03 00:22:42 +00:00
//export waku_decode_asymmetric
// Decode a waku message using a secp256k1 private key. The key must be a hex encoded string with "0x" prefix
func waku_decode_asymmetric(messageJSON *C.char, privateKey *C.char) *C.char {
response := mobile.DecodeAsymmetric(C.GoString(messageJSON), C.GoString(privateKey))
return C.CString(response)
2022-03-21 23:15:53 +00:00
}