Asynchronous ground dataspace

This commit is contained in:
Tony Garnock-Jones 2018-11-01 16:57:07 +00:00
parent 70c2215de8
commit a396432699
3 changed files with 58 additions and 10 deletions

View File

@ -21,6 +21,7 @@ const Immutable = require('immutable');
const Syndicate = require('../src/index.js');
const Skeleton = Syndicate.Skeleton;
const Dataspace = Syndicate.Dataspace;
const Ground = Syndicate.Ground.Ground;
const Struct = Syndicate.Struct;
const __ = Syndicate.__;
const _$ = Syndicate._$;
@ -32,7 +33,7 @@ const N = 100000;
console.time('box-and-client-' + N.toString());
let ds = new Dataspace(() => {
new Ground(() => {
Dataspace.spawn('box', function () {
Dataspace.declareField(this, 'value', 0);
Dataspace.currentFacet().addEndpoint(() => {
@ -73,12 +74,6 @@ let ds = new Dataspace(() => {
return [Syndicate.Observe(BoxState(_$)), handler];
});
});
});
// console.log('--- starting ---');
while (ds.runScripts()) {
// console.log('--- runScripts boundary ---');
}
// console.log('--- done ---');
console.timeEnd('box-and-client-' + N.toString());
}).start().stopHandler = () => {
console.timeEnd('box-and-client-' + N.toString());
};

51
src/ground.js Normal file
View File

@ -0,0 +1,51 @@
"use strict";
const Immutable = require('immutable');
const Dataspace = require('./dataspace.js').Dataspace;
function Ground(bootProc) {
this.stepperId = null;
this.stepping = false;
this.startingFuel = 1000;
this.dataspace = new Dataspace(bootProc);
this.stopHandler = function () {};
}
Ground.prototype.start = function () {
if (!this.stepperId) {
this.stepperId = setTimeout(() => {
this.stepperId = null;
this._step();
}, 0);
}
return this; // allows chaining start() immediately after construction
};
Ground.prototype._step = function () {
this.stepping = true;
try {
let stillBusy = false;
for (var fuel = this.startingFuel; fuel > 0; fuel--) {
stillBusy = this.dataspace.runScripts();
if (!stillBusy) break;
}
if (stillBusy) {
this.start();
} else {
if (this.stopHandler) {
this.stopHandler(this);
}
}
} finally {
this.stepping = false;
}
};
Ground.prototype.stop = function () {
if (this.stepperId) {
clearTimeout(this.stepperId);
this.stepperId = null;
}
};
module.exports.Ground = Ground;

View File

@ -20,6 +20,7 @@
const Struct = require('./struct.js');
const Skeleton = require('./skeleton.js');
const Dataspace = require('./dataspace.js');
const Ground = require('./ground.js');
const Assertions = require('./assertions.js');
module.exports.Immutable = require('immutable');
@ -33,6 +34,7 @@ module.exports._$ = Skeleton._$;
module.exports._Dataspace = Dataspace;
module.exports.Dataspace = Dataspace.Dataspace;
module.exports.Ground = Ground;
module.exports._Assertions = Assertions;
module.exports.Observe = Assertions.Observe;