Skip to content

Commit

Permalink
feat(public-vm): avm journal (AztecProtocol#3945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 authored Jan 18, 2024
1 parent 4f8326b commit 2b176b4
Show file tree
Hide file tree
Showing 5 changed files with 302 additions and 49 deletions.
5 changes: 3 additions & 2 deletions yarn-project/acir-simulator/src/avm/avm_state_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class AvmStateManager {
* @returns Avm State Manager
*/
public static rootStateManager(blockHeader: BlockHeader, hostStorage: HostStorage): AvmStateManager {
const journal = new AvmJournal(hostStorage);
const journal = AvmJournal.rootJournal(hostStorage);
return new AvmStateManager(blockHeader, journal);
}

Expand All @@ -39,6 +39,7 @@ export class AvmStateManager {
* @returns
*/
public static forkStateManager(parent: AvmStateManager): AvmStateManager {
return new AvmStateManager(parent.blockHeader, parent.journal);
const journal = AvmJournal.branchParent(parent.journal);
return new AvmStateManager(parent.blockHeader, journal);
}
}
8 changes: 8 additions & 0 deletions yarn-project/acir-simulator/src/avm/journal/errors.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* Error thrown when a base journal is attempted to be merged.
*/
export class RootJournalCannotBeMerged extends Error {
constructor() {
super('Root journal cannot be merged');
}
}
13 changes: 8 additions & 5 deletions yarn-project/acir-simulator/src/avm/journal/host_storage.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import { CommitmentsDB, PublicContractsDB, PublicStateDB } from '../../index.js';

/** - */
/**
* Host storage
*
* A wrapper around the node dbs
*/
export class HostStorage {
/** - */
public readonly stateDb: PublicStateDB;
public readonly publicStateDb: PublicStateDB;
/** - */
public readonly contractsDb: PublicContractsDB;

/** - */
public readonly commitmentsDb: CommitmentsDB;

constructor(stateDb: PublicStateDB, contractsDb: PublicContractsDB, commitmentsDb: CommitmentsDB) {
this.stateDb = stateDb;
constructor(publicStateDb: PublicStateDB, contractsDb: PublicContractsDB, commitmentsDb: CommitmentsDB) {
this.publicStateDb = publicStateDb;
this.contractsDb = contractsDb;
this.commitmentsDb = commitmentsDb;
}
Expand Down
157 changes: 154 additions & 3 deletions yarn-project/acir-simulator/src/avm/journal/journal.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,158 @@
import { Fr } from '@aztec/foundation/fields';

import { MockProxy, mock } from 'jest-mock-extended';

import { CommitmentsDB, PublicContractsDB, PublicStateDB } from '../../index.js';
import { HostStorage } from './host_storage.js';
import { AvmJournal, JournalData } from './journal.js';

describe('journal', () => {
it('Should write to storage', () => {});
let publicDb: MockProxy<PublicStateDB>;
let journal: AvmJournal;

beforeEach(() => {
publicDb = mock<PublicStateDB>();
const commitmentsDb = mock<CommitmentsDB>();
const contractsDb = mock<PublicContractsDB>();

const hostStorage = new HostStorage(publicDb, contractsDb, commitmentsDb);
journal = new AvmJournal(hostStorage);
});

describe('Public Storage', () => {
it('Should cache write to storage', () => {
// When writing to storage we should write to the storage writes map
const contractAddress = new Fr(1);
const key = new Fr(2);
const value = new Fr(3);

journal.writeStorage(contractAddress, key, value);

const journalUpdates: JournalData = journal.flush();
expect(journalUpdates.storageWrites.get(contractAddress)?.get(key)).toEqual(value);
});

it('When reading from storage, should check the parent first', async () => {
// Store a different value in storage vs the cache, and make sure the cache is returned
const contractAddress = new Fr(1);
const key = new Fr(2);
const storedValue = new Fr(420);
const parentValue = new Fr(69);
const cachedValue = new Fr(1337);

publicDb.storageRead.mockResolvedValue(Promise.resolve(storedValue));

const childJournal = new AvmJournal(journal.hostStorage, journal);

// Get the cache miss
const cacheMissResult = await childJournal.readStorage(contractAddress, key);
expect(cacheMissResult).toEqual(storedValue);

// Write to storage
journal.writeStorage(contractAddress, key, parentValue);
const parentResult = await childJournal.readStorage(contractAddress, key);
expect(parentResult).toEqual(parentValue);

// Get the parent value
childJournal.writeStorage(contractAddress, key, cachedValue);

// Get the storage value
const cachedResult = await childJournal.readStorage(contractAddress, key);
expect(cachedResult).toEqual(cachedValue);
});

it('When reading from storage, should check the cache first', async () => {
// Store a different value in storage vs the cache, and make sure the cache is returned
const contractAddress = new Fr(1);
const key = new Fr(2);
const storedValue = new Fr(420);
const cachedValue = new Fr(69);

publicDb.storageRead.mockResolvedValue(Promise.resolve(storedValue));

// Get the cache first
const cacheMissResult = await journal.readStorage(contractAddress, key);
expect(cacheMissResult).toEqual(storedValue);

// Write to storage
journal.writeStorage(contractAddress, key, cachedValue);

// Get the storage value
const cachedResult = await journal.readStorage(contractAddress, key);
expect(cachedResult).toEqual(cachedValue);
});
});

describe('UTXOs', () => {
it('Should maintain commitments', () => {
const utxo = new Fr(1);
journal.writeCommitment(utxo);

const journalUpdates = journal.flush();
expect(journalUpdates.newCommitments).toEqual([utxo]);
});

it('Should maintain l1 messages', () => {
const utxo = new Fr(1);
journal.writeL1Message(utxo);

const journalUpdates = journal.flush();
expect(journalUpdates.newL1Messages).toEqual([utxo]);
});

it('Should maintain nullifiers', () => {
const utxo = new Fr(1);
journal.writeNullifier(utxo);

const journalUpdates = journal.flush();
expect(journalUpdates.newNullifiers).toEqual([utxo]);
});
});

it('Should merge two journals together', async () => {
// Fundamentally checking that insert ordering of public storage is preserved upon journal merge
// time | journal | op | value
// t0 -> journal0 -> write | 1
// t1 -> journal1 -> write | 2
// merge journals
// t2 -> journal0 -> read | 2

const contractAddress = new Fr(1);
const key = new Fr(2);
const value = new Fr(1);
const valueT1 = new Fr(2);
const commitment = new Fr(10);
const commitmentT1 = new Fr(20);

journal.writeStorage(contractAddress, key, value);
journal.writeCommitment(commitment);
journal.writeL1Message(commitment);
journal.writeNullifier(commitment);

const journal1 = new AvmJournal(journal.hostStorage, journal);
journal.writeStorage(contractAddress, key, valueT1);
journal.writeCommitment(commitmentT1);
journal.writeL1Message(commitmentT1);
journal.writeNullifier(commitmentT1);

journal1.mergeWithParent();

// Check that the storage is merged by reading from the journal
const result = await journal.readStorage(contractAddress, key);
expect(result).toEqual(valueT1);

// Check that the UTXOs are merged
const journalUpdates: JournalData = journal.flush();
expect(journalUpdates.newCommitments).toEqual([commitment, commitmentT1]);
expect(journalUpdates.newL1Messages).toEqual([commitment, commitmentT1]);
expect(journalUpdates.newNullifiers).toEqual([commitment, commitmentT1]);
});

it('Should read from storage', () => {});
it('Cannot merge a root journal, but can merge a child journal', () => {
const rootJournal = AvmJournal.rootJournal(journal.hostStorage);
const childJournal = AvmJournal.branchParent(rootJournal);

it('Should merge two journals together', () => {});
expect(() => rootJournal.mergeWithParent()).toThrow();
expect(() => childJournal.mergeWithParent());
});
});
Loading

0 comments on commit 2b176b4

Please sign in to comment.