nimbus-eth1/wrappers/wrapper_whisper_example.go

120 lines
3.1 KiB
Go
Raw Normal View History

2019-09-12 16:32:07 +00:00
package main
import (
"fmt"
"runtime"
"time"
"unsafe"
"encoding/hex"
2019-09-12 16:32:07 +00:00
)
/*
#include <stdlib.h>
#include <stdbool.h>
2019-09-12 16:32:07 +00:00
#cgo LDFLAGS: -Wl,-rpath,'$ORIGIN' -L${SRCDIR}/../build -lnimbus -lm
#include "libnimbus.h"
void receiveHandler_cgo(received_message * msg, void* udata); // Forward declaration.
2019-09-12 16:32:07 +00:00
*/
import "C"
// Arrange that main.main runs on main thread.
func init() {
runtime.LockOSThread()
}
func poll() {
for {
fmt.Println("POLLING")
time.Sleep(1 * time.Microsecond)
C.nimbus_poll()
}
}
//export receiveHandler
func receiveHandler(msg *C.received_message, udata unsafe.Pointer) {
receivedMsg := C.GoBytes(unsafe.Pointer(msg.decoded), C.int(msg.decodedLen))
fmt.Printf("[nim-status] received message %s\n", string(receivedMsg))
2019-09-12 16:32:07 +00:00
fmt.Printf("[nim-status] source public key %x\n", msg.source)
msgCount := (*int)(udata)
*msgCount += 1
fmt.Printf("[nim-status] message count %d\n", *msgCount)
2019-09-12 16:32:07 +00:00
}
func Start() {
C.NimMain()
fmt.Println("[nim-status] Start Nimbus")
privKeyHex := "a2b50376a79b1a8c8a3296485572bdfbf54708bb46d3c25d73d2723aaaf6a617"
data, err := hex.DecodeString(privKeyHex)
if err != nil {
panic(err)
}
privKey := (*C.uint8_t)(C.CBytes(data))
defer C.free(unsafe.Pointer(privKey))
if C.nimbus_start(30306, true, false, 0.002, privKey) == false {
panic("Can't start nimbus")
}
2019-09-12 16:32:07 +00:00
}
func StatusListenAndPost(channel string) {
fmt.Println("[nim-status] Status Public ListenAndPost")
channelC := C.CString(channel)
defer C.free(unsafe.Pointer(channelC))
symKeyId := C.GoString(C.nimbus_add_symkey_from_password(channelC))
2019-09-12 16:32:07 +00:00
asymKeyId := C.GoString(C.nimbus_new_keypair())
var msgCount int = 0
2019-09-12 16:32:07 +00:00
options := C.filter_options{symKeyID: C.CString(symKeyId),
minPow: 0.002,
topic: C.nimbus_channel_to_topic(channelC).topic}
filterId := C.GoString(C.nimbus_subscribe_filter(&options,
(C.received_msg_handler)(unsafe.Pointer(C.receiveHandler_cgo)),
unsafe.Pointer(&msgCount)))
fmt.Printf("[nim-status] filter subscribed, id: %s\n", filterId)
2019-09-12 16:32:07 +00:00
symKeyIdC := C.CString(symKeyId)
defer C.free(unsafe.Pointer(symKeyIdC))
asymKeyIdC := C.CString(asymKeyId)
defer C.free(unsafe.Pointer(asymKeyIdC))
postMessage := C.post_message{symKeyID: symKeyIdC,
sourceID: asymKeyIdC,
2019-09-12 16:32:07 +00:00
ttl: 20,
topic: C.nimbus_channel_to_topic(channelC).topic,
2019-09-12 16:32:07 +00:00
powTarget: 0.002,
powTime: 1.0}
i := 0
for {
C.nimbus_poll()
t := time.Now().UnixNano() / int64(time.Millisecond)
i = i + 1
time.Sleep(1 * time.Microsecond)
message := fmt.Sprintf("[\"~#c4\",[\"Message:%d\",\"text/plain\",\"~:public-group-user-message\",%d,%d,[\"^ \",\"~:chat-id\",\"%s\",\"~:text\",\"Message:%d\"]]]", i, t*100, t, channel, i)
if i%1000 == 0 {
fmt.Printf("[nim-status] posting msg number %d: %s\n", msgCount, message)
postMessage.payload = (*C.uint8_t)(C.CBytes([]byte(message)))
postMessage.payloadLen = (C.size_t)(len([]byte(message)))
defer C.free(unsafe.Pointer(postMessage.payload))
if C.nimbus_post(&postMessage) == false {
fmt.Println("[nim-status] message could not be added to queue")
}
2019-09-12 16:32:07 +00:00
}
}
}
func main() {
nprocs := runtime.GOMAXPROCS(0)
fmt.Println("GOMAXPROCS ", nprocs)
Start()
StatusListenAndPost("status-test-go")
}