mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-24 06:25:55 +00:00
77 lines
3.2 KiB
Go
77 lines
3.2 KiB
Go
package rpcclient
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/app/appmessage"
|
|
"github.com/kaspanet/kaspad/app/rpc/rpccontext"
|
|
routerpkg "github.com/kaspanet/kaspad/infrastructure/network/netadapter/router"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// RegisterForVirtualSelectedParentChainChangedNotifications sends an RPC request respective to the function's name and returns the RPC server's response.
|
|
// Additionally, it starts listening for the appropriate notification using the given handler function
|
|
func (c *RPCClient) RegisterForVirtualSelectedParentChainChangedNotifications(includeAcceptedTransactionIDs bool,
|
|
onChainChanged func(notification *appmessage.VirtualSelectedParentChainChangedNotificationMessage)) error {
|
|
|
|
err := c.rpcRouter.outgoingRoute().Enqueue(
|
|
appmessage.NewNotifyVirtualSelectedParentChainChangedRequestMessage(includeAcceptedTransactionIDs, rpccontext.DefaultNotificationID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
response, err := c.route(appmessage.CmdNotifyVirtualSelectedParentChainChangedResponseMessage).DequeueWithTimeout(c.timeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
notifyChainChangedResponse := response.(*appmessage.NotifyVirtualSelectedParentChainChangedResponseMessage)
|
|
if notifyChainChangedResponse.Error != nil {
|
|
return c.convertRPCError(notifyChainChangedResponse.Error)
|
|
}
|
|
spawn("RegisterForVirtualSelectedParentChainChangedNotifications", func() {
|
|
for {
|
|
notification, err := c.route(appmessage.CmdVirtualSelectedParentChainChangedNotificationMessage).Dequeue()
|
|
if err != nil {
|
|
if errors.Is(err, routerpkg.ErrRouteClosed) {
|
|
break
|
|
}
|
|
panic(err)
|
|
}
|
|
ChainChangedNotification := notification.(*appmessage.VirtualSelectedParentChainChangedNotificationMessage)
|
|
onChainChanged(ChainChangedNotification)
|
|
}
|
|
})
|
|
return nil
|
|
}
|
|
|
|
// RegisterForVirtualSelectedParentChainChangedNotificationsWithID does the same as
|
|
// RegisterForVirtualSelectedParentChainChangedNotifications, but allows the client to specify an id
|
|
func (c *RPCClient) RegisterForVirtualSelectedParentChainChangedNotificationsWithID(includeAcceptedTransactionIDs bool,
|
|
onChainChanged func(notification *appmessage.VirtualSelectedParentChainChangedNotificationMessage), id string) error {
|
|
|
|
err := c.rpcRouter.outgoingRoute().Enqueue(
|
|
appmessage.NewNotifyVirtualSelectedParentChainChangedRequestMessage(includeAcceptedTransactionIDs, id))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
response, err := c.route(appmessage.CmdNotifyVirtualSelectedParentChainChangedResponseMessage).DequeueWithTimeout(c.timeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
notifyChainChangedResponse := response.(*appmessage.NotifyVirtualSelectedParentChainChangedResponseMessage)
|
|
if notifyChainChangedResponse.Error != nil {
|
|
return c.convertRPCError(notifyChainChangedResponse.Error)
|
|
}
|
|
spawn("RegisterForVirtualSelectedParentChainChangedNotificationsWithID", func() {
|
|
for {
|
|
notification, err := c.route(appmessage.CmdVirtualSelectedParentChainChangedNotificationMessage).Dequeue()
|
|
if err != nil {
|
|
if errors.Is(err, routerpkg.ErrRouteClosed) {
|
|
break
|
|
}
|
|
panic(err)
|
|
}
|
|
ChainChangedNotification := notification.(*appmessage.VirtualSelectedParentChainChangedNotificationMessage)
|
|
onChainChanged(ChainChangedNotification)
|
|
}
|
|
})
|
|
return nil
|
|
}
|