Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add mutex to wait for cadt sync to prevent stack buildup #171

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"esversion": 11
}
20 changes: 17 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "",
"main": "proxy.js",
"scripts": {
"test": "jest --detectOpenHandles",
"test": "jest --forceExit",
"test-ci": "jest --ci",
"start": "node --no-warnings src/server.js",
"prepare-binary": "rm -rf dist && mkdir dist",
Expand All @@ -31,6 +31,7 @@
"dependencies": {
"@chia-carbon/core-registry-config": "^1.0.2",
"@chia-carbon/core-registry-logger": "^1.0.11",
"async-mutex": "^0.4.0",
"body-parser": "^1.20.2",
"chia-datalayer": "^2.0.0",
"chia-root-resolver": "^1.0.0",
Expand Down
137 changes: 74 additions & 63 deletions src/api/registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ const { CONFIG } = require("../config");
const { logger } = require("../logger");
const wallet = require("../chia/wallet");
const utils = require("../utils");
const constants = require("../constants.js");
const { Mutex } = require("async-mutex");

const mutex = new Mutex();

const registryUri = utils.generateUriForHostAndPort(
CONFIG().CADT.PROTOCOL,
Expand Down Expand Up @@ -520,74 +524,81 @@ const getOrgMetaData = async (orgUid) => {
/**
* Waits for the registry data to synchronize.
*
* @param {object} [options] - Function options.
* @param {boolean} [options.throwOnEmptyRegistry=false] - Flag to throw error on empty registry.
* @returns {Promise<void>}
*/
const waitForRegistryDataSync = async () => {
if (process.env.NODE_ENV === "test") {
return;
}

await utils.waitFor(5000);
const dataLayerConfig = {};

if (CONFIG().CHIA.DATALAYER_HOST) {
dataLayerConfig.datalayer_host = CONFIG().CHIA.DATALAYER_HOST;
}

if (CONFIG().CHIA.WALLET_HOST) {
dataLayerConfig.wallet_host = CONFIG().CHIA.WALLET_HOST;
}

if (CONFIG().CHIA.CERTIFICATE_FOLDER_PATH) {
dataLayerConfig.certificate_folder_path =
CONFIG().CHIA.CERTIFICATE_FOLDER_PATH;
}

if (CONFIG().CHIA.ALLOW_SELF_SIGNED_CERTIFICATES) {
dataLayerConfig.allowUnverifiedCert =
CONFIG().CHIA.ALLOW_SELF_SIGNED_CERTIFICATES;
}

const datalayer = new Datalayer(dataLayerConfig);
const homeOrg = await getHomeOrg();

if (!homeOrg) {
logger.warn(
"Can not find the home org from the Registry. Please verify your Registry is running and you have created a Home Organization."
);
return waitForRegistryDataSync();
}

const onChainRegistryRoot = await datalayer.getRoot({
id: homeOrg.registryId,
});

if (!onChainRegistryRoot.confirmed) {
console.log("Waiting for Registry root to confirm");
return waitForRegistryDataSync();
}

if (onChainRegistryRoot.hash !== homeOrg.registryHash) {
console.log("Waiting for Registry to sync with latest regisry root.", {
onChainRoot: onChainRegistryRoot.hash,
homeOrgRegistryRoot: homeOrg.registryHash,
});
return waitForRegistryDataSync();
}
const waitForRegistryDataSync = async (options = {}) => {
await mutex.waitForUnlock();

const onChainOrgRoot = await datalayer.getRoot({ id: homeOrg.orgUid });
if (!mutex.isLocked()) {
const releaseMutex = await mutex.acquire();
try {
const opts = { throwOnEmptyRegistry: false, ...options };

if (!onChainOrgRoot.confirmed) {
console.log("Waiting for Organization root to confirm");
return waitForRegistryDataSync();
}
if (process.env.NODE_ENV === "test") {
return;
}

if (onChainOrgRoot.hash !== homeOrg.orgHash) {
console.log("Waiting for Registry to sync with latest organization root.", {
onChainRoot: onChainOrgRoot.hash,
homeOrgRoot: homeOrg.orgHash,
});
return waitForRegistryDataSync();
while (true) {
await utils.waitFor(5000);

const config = CONFIG().CHIA;
const dataLayerConfig = {
datalayer_host: config.DATALAYER_HOST,
wallet_host: config.WALLET_HOST,
certificate_folder_path: config.CERTIFICATE_FOLDER_PATH,
allowUnverifiedCert: config.ALLOW_SELF_SIGNED_CERTIFICATES,
};

const datalayer = new Datalayer(dataLayerConfig);
const homeOrg = await getHomeOrg();

if (!homeOrg) {
logger.warn("Cannot find the home org from the Registry. Please verify your Registry is running and you have created a Home Organization.");
continue;
}

const onChainRegistryRoot = await datalayer.getRoot({ id: homeOrg.registryId });

if (!onChainRegistryRoot.confirmed) {
console.log("Waiting for Registry root to confirm");
continue;
}

if (onChainRegistryRoot.hash === constants.emptySingletonHash && opts.throwOnEmptyRegistry) {
throw new Error("Registry is empty. Please add some data to run auto retirement task.");
}

if (onChainRegistryRoot.hash !== homeOrg.registryHash) {
console.log("Waiting for Registry to sync with latest registry root.", {
onChainRoot: onChainRegistryRoot.hash,
homeOrgRegistryRoot: homeOrg.registryHash,
});
continue;
}

const onChainOrgRoot = await datalayer.getRoot({ id: homeOrg.orgUid });

if (!onChainOrgRoot.confirmed) {
console.log("Waiting for Organization root to confirm");
continue;
}

if (onChainOrgRoot.hash !== homeOrg.orgHash) {
console.log("Waiting for Registry to sync with latest organization root.", {
onChainRoot: onChainOrgRoot.hash,
homeOrgRoot: homeOrg.orgHash,
});
continue;
}

// Exit the loop if all conditions are met
break;
}
} finally {
releaseMutex();
}
}
};

Expand Down
4 changes: 4 additions & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
emptySingletonHash:
"0x0000000000000000000000000000000000000000000000000000000000000000",
};
3 changes: 2 additions & 1 deletion tests/create-token.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ describe("Create Token Process", () => {
.resolves(true);
});

afterEach(() => {
afterEach(async () => {
sinon.restore();
nock.cleanAll();
await new Promise(resolve => setTimeout(() => resolve(), 1000));
});

afterAll(async () => {
Expand Down
3 changes: 2 additions & 1 deletion tests/tasks/sync-retirements.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ describe("Task: Sync Retirements", () => {
sinon.stub(registry, "waitForRegistryDataSync").resolves();
});

afterEach(() => {
afterEach(async () => {
sinon.restore();
await new Promise(resolve => setTimeout(() => resolve(), 1000));
});

it("skips retirement task if no homeorg can be attained by the registry", async () => {
Expand Down
Loading