mirror of
https://github.com/GOSTSec/gostexplr
synced 2025-01-30 08:24:23 +00:00
Acquire lock before running syncBlockchain
This commit is contained in:
parent
96e73a862e
commit
906b94061f
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@ node_modules
|
||||
package-lock.json
|
||||
config/config.json
|
||||
todo
|
||||
sync.lock
|
@ -1,4 +1,6 @@
|
||||
var http = require('http');
|
||||
const fs = require('fs-ext');
|
||||
|
||||
var models = require('../models');
|
||||
var rpcConfig = require('../config/config')['rpc'];
|
||||
|
||||
@ -150,19 +152,38 @@ async function getSyncedHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
async function syncBlockchain() {
|
||||
let syncedHeight = await getSyncedHeight();
|
||||
console.log('\x1b[36m%s\x1b[0m', 'syncedHeight is', syncedHeight);
|
||||
|
||||
let currentHeight = await getCurrentHeight();
|
||||
console.log('\x1b[36m%s\x1b[0m', 'currentHeight is', currentHeight);
|
||||
async function acquireLock() {
|
||||
let fd = fs.openSync('sync.lock', 'w');
|
||||
try {
|
||||
fs.flockSync(fd, 'exnb');
|
||||
} catch(ex) {
|
||||
if (ex.code === 'EAGAIN') {
|
||||
console.log('Synchronization is already running');
|
||||
} else {
|
||||
console.log('Could\'nt lock file', ex);
|
||||
}
|
||||
throw ex;
|
||||
}
|
||||
}
|
||||
|
||||
async function syncBlockchain() {
|
||||
|
||||
try {
|
||||
|
||||
await acquireLock();
|
||||
|
||||
let syncedHeight = await getSyncedHeight();
|
||||
console.log('\x1b[36m%s\x1b[0m', 'syncedHeight is', syncedHeight);
|
||||
|
||||
let currentHeight = await getCurrentHeight();
|
||||
console.log('\x1b[36m%s\x1b[0m', 'currentHeight is', currentHeight);
|
||||
|
||||
while (syncedHeight < currentHeight) {
|
||||
syncedHeight = await syncNextBlock(syncedHeight);
|
||||
console.log('\x1b[36m%s\x1b[0m', 'syncedHeight: ', syncedHeight)
|
||||
}
|
||||
} catch (e) {
|
||||
console.log('=====', e);
|
||||
console.log(e);
|
||||
} finally {
|
||||
models.sequelize.close().then(() => process.exit(0));
|
||||
}
|
||||
|
@ -21,8 +21,9 @@
|
||||
"body-parser": "~1.18.2",
|
||||
"cookie-parser": "~1.4.3",
|
||||
"debug": "~2.6.9",
|
||||
"express": "~4.15.5",
|
||||
"express": "^4.16.3",
|
||||
"forever": "^0.15.3",
|
||||
"fs-ext": "^1.2.1",
|
||||
"morgan": "~1.9.0",
|
||||
"mysql": "^2.15.0",
|
||||
"mysql2": "^1.5.1",
|
||||
|
Loading…
x
Reference in New Issue
Block a user