Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- "use strict"
- const { Wallets, Gateway } = require("fabric-network")
- const fs = require("fs")
- const path = require("path")
- const net = require("net")
- const blockProcessing = require("./blockProcessing.js")
- const config = require("./config.json")
- const channelid = config.channelid
- const sdkUser = config.sdk_user
- const sdkAddress = config.sdk_address
- const sdkPort = config.sdk_port
- const healthPort = config.healthcheck_port
- const configPath = path.resolve(__dirname, "nextblock.txt")
- class BlockMap {
- constructor() {
- this.list = []
- }
- get(key) {
- key = parseInt(key, 10).toString()
- return this.list[`block${key}`]
- }
- set(key, value) {
- this.list[`block${key}`] = value
- }
- remove(key) {
- key = parseInt(key, 10).toString()
- delete this.list[`block${key}`]
- }
- }
- let ProcessingMap = new BlockMap()
- async function main() {
- try {
- const http = require('http');
- /*const server = http.createServer((req, res)=>{
- console.log(req.url, req.method, req. headers);
- res.write('<html>');
- res.write('<head><title>HLF Event Listener </title></head>');
- res.write(' <body>HLF Event Listener Service is Up!</body>');
- res.write('</html>');
- res.end();
- });
- server.listen(healthPort);*/
- let nextBlock = 1
- if (fs.existsSync(configPath)) {
- nextBlock = fs.readFileSync(configPath, "utf8")
- } else {
- fs.writeFileSync(configPath, parseInt(nextBlock, 10))
- }
- const walletPath = path.join(process.cwd(), "wallet")
- const wallet = await Wallets.newFileSystemWallet(walletPath)
- console.log(`Wallet path: ${walletPath}`)
- const userExists = await wallet.get(sdkUser)
- if (!userExists) {
- console.log(`An identity for the user "${sdkUser}" does not exist in the wallet`)
- console.log("Run the enrollUser.js application before retrying")
- return
- }
- const ccpPath = path.resolve("connection-mtr.json")
- const ccp = JSON.parse(fs.readFileSync(ccpPath, "utf8"))
- const gateway = new Gateway()
- await gateway.connect(ccp, { wallet, identity: sdkUser, discovery: { enabled: true, asLocalhost: false } })
- let network, listener
- for (var i=0; i<channelid.length; i++) {
- let cid = channelid[i]
- console.log(`Adding listener for channel ${cid}`)
- network = await gateway.getNetwork(cid)
- console.log(`await gateway.getNetwork`)
- listener = await network.addBlockListener(
- async (event) => {
- await ProcessingMap.set(event.blockData.header.number, event.blockData)
- console.log(`Added block ${event.blockData.header.number} to ProcessingMap`)
- },
- { startBlock: parseInt(nextBlock, 10) }
- )
- console.log(`await network.addBlockListener`)
- };
- console.log(`Listening for block events, nextblock: ${nextBlock}`)
- processPendingBlocks(ProcessingMap, channelid)
- } catch (error) {
- console.error(`Failed to evaluate transaction: ${error}`)
- process.exit(1)
- }
- }
- async function processPendingBlocks(ProcessingMap, channelid) {
- setTimeout(async () => {
- let nextBlockNumber = fs.readFileSync(configPath, "utf8")
- let processBlock
- do {
- processBlock = ProcessingMap.get(nextBlockNumber)
- if (processBlock == undefined) {
- break
- }
- try {
- await blockProcessing.processBlockEvent(channelid, processBlock, sdkAddress, sdkPort)
- } catch (error) {
- console.error(`Failed to process block: ${error}`)
- }
- ProcessingMap.remove(nextBlockNumber)
- fs.writeFileSync(configPath, parseInt(nextBlockNumber, 10) + 1)
- nextBlockNumber = fs.readFileSync(configPath, "utf8")
- } while (true)
- processPendingBlocks(ProcessingMap)
- }, 250)
- }
- main()
Add Comment
Please, Sign In to add comment