2019-05-17 06:27:02 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-10-02 14:10:37 +00:00
|
|
|
package super_node
|
2019-05-17 06:27:02 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-06-06 03:50:12 +00:00
|
|
|
|
2019-05-17 06:27:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2019-06-18 17:28:57 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2019-08-14 18:49:30 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/streamer"
|
2019-06-18 17:28:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/config"
|
2019-09-13 19:41:50 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
2019-05-17 06:27:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// APIName is the namespace used for the state diffing service API
|
2019-10-02 14:10:37 +00:00
|
|
|
const APIName = "vdb"
|
2019-05-17 06:27:02 +00:00
|
|
|
|
|
|
|
// APIVersion is the version of the state diffing service API
|
|
|
|
const APIVersion = "0.0.1"
|
|
|
|
|
2019-10-02 14:10:37 +00:00
|
|
|
// PublicSuperNodeAPI is the public api for the super node
|
|
|
|
type PublicSuperNodeAPI struct {
|
2019-08-26 02:13:40 +00:00
|
|
|
sni NodeInterface
|
2019-05-17 06:27:02 +00:00
|
|
|
}
|
|
|
|
|
2019-10-02 14:10:37 +00:00
|
|
|
// NewPublicSuperNodeAPI creates a new PublicSuperNodeAPI with the provided underlying SyncPublishScreenAndServe process
|
|
|
|
func NewPublicSuperNodeAPI(superNodeInterface NodeInterface) *PublicSuperNodeAPI {
|
|
|
|
return &PublicSuperNodeAPI{
|
|
|
|
sni: superNodeInterface,
|
2019-05-17 06:27:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 03:50:12 +00:00
|
|
|
// Stream is the public method to setup a subscription that fires off SyncPublishScreenAndServe payloads as they are created
|
2019-10-02 14:10:37 +00:00
|
|
|
func (api *PublicSuperNodeAPI) Stream(ctx context.Context, streamFilters config.Subscription) (*rpc.Subscription, error) {
|
2019-05-17 06:27:02 +00:00
|
|
|
// ensure that the RPC connection supports subscriptions
|
|
|
|
notifier, supported := rpc.NotifierFromContext(ctx)
|
|
|
|
if !supported {
|
|
|
|
return nil, rpc.ErrNotificationsUnsupported
|
|
|
|
}
|
|
|
|
|
|
|
|
// create subscription and start waiting for statediff events
|
|
|
|
rpcSub := notifier.CreateSubscription()
|
|
|
|
|
|
|
|
go func() {
|
2019-06-06 03:50:12 +00:00
|
|
|
// subscribe to events from the SyncPublishScreenAndServe service
|
2019-10-02 14:10:37 +00:00
|
|
|
payloadChannel := make(chan streamer.SuperNodePayload, payloadChanBufferSize)
|
2019-06-07 02:09:27 +00:00
|
|
|
quitChan := make(chan bool, 1)
|
2019-08-26 02:13:40 +00:00
|
|
|
go api.sni.Subscribe(rpcSub.ID, payloadChannel, quitChan, streamFilters)
|
2019-05-17 06:27:02 +00:00
|
|
|
|
|
|
|
// loop and await state diff payloads and relay them to the subscriber with then notifier
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case packet := <-payloadChannel:
|
2019-06-07 13:42:10 +00:00
|
|
|
if notifyErr := notifier.Notify(rpcSub.ID, packet); notifyErr != nil {
|
|
|
|
log.Error("Failed to send state diff packet", "err", notifyErr)
|
2019-08-26 02:13:40 +00:00
|
|
|
api.sni.Unsubscribe(rpcSub.ID)
|
2019-06-07 13:42:10 +00:00
|
|
|
return
|
2019-05-17 06:27:02 +00:00
|
|
|
}
|
|
|
|
case <-rpcSub.Err():
|
2019-08-26 02:13:40 +00:00
|
|
|
api.sni.Unsubscribe(rpcSub.ID)
|
2019-05-17 06:27:02 +00:00
|
|
|
return
|
|
|
|
case <-quitChan:
|
2019-06-06 03:50:12 +00:00
|
|
|
// don't need to unsubscribe, SyncPublishScreenAndServe service does so before sending the quit signal
|
2019-05-17 06:27:02 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return rpcSub, nil
|
2019-06-06 03:50:12 +00:00
|
|
|
}
|
2019-09-13 19:41:50 +00:00
|
|
|
|
2019-10-02 14:10:37 +00:00
|
|
|
// Node is a public rpc method to allow transformers to fetch the Geth node info for the super node
|
|
|
|
func (api *PublicSuperNodeAPI) Node() core.Node {
|
2019-09-13 19:41:50 +00:00
|
|
|
return api.sni.Node()
|
|
|
|
}
|