Skip to content

Commit

Permalink
feat: implement a reversible state system for modules (#220)
Browse files Browse the repository at this point in the history
Signed-off-by: [email protected]
  • Loading branch information
delehef authored Oct 11, 2023
1 parent 28f4067 commit df4daf2
Show file tree
Hide file tree
Showing 22 changed files with 854 additions and 110 deletions.
8 changes: 6 additions & 2 deletions src/main/java/net/consensys/linea/zktracer/ZkTracer.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,8 @@ public void traceEndTransaction(

@Override
public void tracePreExecution(final MessageFrame frame) {
this.hub.trace(frame);
this.hub.tracePreOpcode(frame);
}
// TODO ADd RlpAddr module in trcaePreExecution

@Override
public void tracePostExecution(MessageFrame frame, Operation.OperationResult operationResult) {
Expand All @@ -136,4 +135,9 @@ public void traceContextEnter(MessageFrame frame) {
public void traceContextExit(MessageFrame frame) {
this.hub.traceContextExit(frame);
}

/** When called, erase all tracing related to the last included transaction. */
public void popTransaction() {
hub.popTransaction();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Copyright ConsenSys AG.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/

package net.consensys.linea.zktracer.container;

/**
* A stacked container must behave as the container it emulates, all the while being able to enter
* nested modification contexts, that can be transparently reverted.
*/
public interface StackedContainer {
/** Enter a new modification context. */
void enter();

/** Erase the modifications brought while in the latest modification context. */
void pop();
}
Loading

0 comments on commit df4daf2

Please sign in to comment.