Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | import { E } from '@endo/eventual-send';
import { makeDefaultExo } from '@metamask/kernel-utils/exo';
import type { Baggage } from '@metamask/ocap-kernel';
type BaggageWithDelete = Baggage & {
delete(key: string): void;
};
/**
* Build function for running a test of the vatstore.
*
* @param _vatPowers - Special powers granted to this vat (not used here).
* @param parameters - Initialization parameters from the vat's config object.
* @param parameters.name - The name of the vat.
* @param baggage - Root of vat's persistent state.
* @returns The root object for the new vat.
*/
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export function buildRootObject(
_vatPowers: unknown,
parameters: { name?: string },
baggage: BaggageWithDelete,
) {
const name = parameters?.name ?? 'anonymous';
// eslint-disable-next-line no-console
console.log(`buildRootObject "${name}"`);
const testKey1 = 'thing';
const testKey2 = 'goAway';
return makeDefaultExo('root', {
async bootstrap(vats: { bob: unknown; carol: unknown; alice: unknown }) {
// eslint-disable-next-line no-console
console.log(`vat ${name} is bootstrap`);
if (!baggage.has(testKey1)) {
baggage.init(testKey1, 1);
}
baggage.init(testKey2, 'now you see me');
const pb = E(vats.bob).go(name, vats.alice);
const pc = E(vats.carol).go(name, vats.alice);
// eslint-disable-next-line no-console
console.log(`vat ${name} got "go" answer from Bob: '${await pb}'`);
// eslint-disable-next-line no-console
console.log(`vat ${name} got "go" answer from Carol: '${await pc}'`);
baggage.delete(testKey2);
await E(vats.bob).loopback();
},
bump(bumper: string) {
const value = baggage.get(testKey1) as number;
baggage.set(testKey1, value + 1);
// eslint-disable-next-line no-console
console.log(`${bumper} bumps ${testKey1} from ${value} to ${value + 1}`);
},
go(from: string, bumpee: unknown) {
const message = `vat ${name} got "go" from ${from}`;
// eslint-disable-next-line no-console
console.log(message);
E(bumpee).bump(name);
return message;
},
loopback() {
return undefined;
},
});
}
|