Skip to content

Commit

Permalink
Include operation information in the Change struct
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikiyer56 committed Nov 20, 2024
1 parent 969db99 commit ba3ad68
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 18 deletions.
16 changes: 13 additions & 3 deletions ingest/change.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,20 @@ import (
// If an entry is created: Pre is nil and Post is not nil.
// If an entry is updated: Pre is not nil and Post is not nil.
// If an entry is removed: Pre is not nil and Post is nil.
// If this change is caused by a operation in a transaction, include the operation information. Wont work when changes are compacted
type Change struct {
Type xdr.LedgerEntryType
Pre *xdr.LedgerEntry
Post *xdr.LedgerEntry
Type xdr.LedgerEntryType
Pre *xdr.LedgerEntry
Post *xdr.LedgerEntry
isOperationChange bool
operationInfo *OperationInfo
}

type OperationInfo struct {
operationIdx uint32
operation *xdr.Operation
operationResult *xdr.OperationResultTr
txEnvelope *xdr.TransactionEnvelope
}

// String returns a best effort string representation of the change.
Expand Down
88 changes: 73 additions & 15 deletions ingest/ledger_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ func (t *LedgerTransaction) GetChanges() ([]Change, error) {
return changes, errors.New("TransactionMeta.V=0 not supported")
case 1:
v1Meta := t.UnsafeMeta.MustV1()
// The var `txChanges` reflect the ledgerEntryChanges that are changed because of the transaction as a whole
txChanges := GetChangesFromLedgerEntryChanges(v1Meta.TxChanges)
changes = append(changes, txChanges...)

Expand All @@ -50,34 +51,54 @@ func (t *LedgerTransaction) GetChanges() ([]Change, error) {
return changes, nil
}

for _, operationMeta := range v1Meta.Operations {
// These changes reflect the ledgerEntry changes that were caused by the operations in the transaction
// Populate the operationInfo for these changes in the `Change` struct

// TODO: Refactor this to use LedgerTransaction.GetOperationChanges
for opIdx, operationMeta := range v1Meta.Operations {
opChanges := GetChangesFromLedgerEntryChanges(
operationMeta.Changes,
)
for _, change := range opChanges {
op, found := t.GetOperation(uint32(opIdx))
if !found {
return []Change{}, errors.New("could not find operation")
}
results, _ := t.Result.OperationResults()
operationResult := results[opIdx].MustTr()
operationInfo := OperationInfo{
operationIdx: uint32(opIdx),
operation: &op,
operationResult: &operationResult,
txEnvelope: &t.Envelope,
}
change.operationInfo = &operationInfo
change.isOperationChange = true
}
changes = append(changes, opChanges...)
}
case 2, 3:
var (
beforeChanges, afterChanges xdr.LedgerEntryChanges
operationMeta []xdr.OperationMeta
txBeforeChanges, txAfterChanges xdr.LedgerEntryChanges
operationMeta []xdr.OperationMeta
)

switch t.UnsafeMeta.V {
case 2:
v2Meta := t.UnsafeMeta.MustV2()
beforeChanges = v2Meta.TxChangesBefore
afterChanges = v2Meta.TxChangesAfter
txBeforeChanges = v2Meta.TxChangesBefore
txAfterChanges = v2Meta.TxChangesAfter
operationMeta = v2Meta.Operations
case 3:
v3Meta := t.UnsafeMeta.MustV3()
beforeChanges = v3Meta.TxChangesBefore
afterChanges = v3Meta.TxChangesAfter
txBeforeChanges = v3Meta.TxChangesBefore
txAfterChanges = v3Meta.TxChangesAfter
operationMeta = v3Meta.Operations
default:
panic("Invalid meta version, expected 2 or 3")
}

txChangesBefore := GetChangesFromLedgerEntryChanges(beforeChanges)
txChangesBefore := GetChangesFromLedgerEntryChanges(txBeforeChanges)
changes = append(changes, txChangesBefore...)

// Ignore operations meta and txChangesAfter if txInternalError
Expand All @@ -86,14 +107,30 @@ func (t *LedgerTransaction) GetChanges() ([]Change, error) {
return changes, nil
}

for _, operationMeta := range operationMeta {
for opIdx, operationMetaChanges := range operationMeta {
opChanges := GetChangesFromLedgerEntryChanges(
operationMeta.Changes,
operationMetaChanges.Changes,
)
for _, change := range opChanges {
op, found := t.GetOperation(uint32(opIdx))
if !found {
return []Change{}, errors.New("could not find operation")
}
results, _ := t.Result.OperationResults()
operationResult := results[opIdx].MustTr()
operationInfo := OperationInfo{
operationIdx: uint32(opIdx),
operation: &op,
operationResult: &operationResult,
txEnvelope: &t.Envelope,
}
change.operationInfo = &operationInfo
change.isOperationChange = true
}
changes = append(changes, opChanges...)
}

txChangesAfter := GetChangesFromLedgerEntryChanges(afterChanges)
txChangesAfter := GetChangesFromLedgerEntryChanges(txAfterChanges)
changes = append(changes, txChangesAfter...)
default:
return changes, errors.New("Unsupported TransactionMeta version")
Expand Down Expand Up @@ -137,18 +174,39 @@ func (t *LedgerTransaction) GetOperationChanges(operationIndex uint32) ([]Change
return changes, errors.New("Unsupported TransactionMeta version")
}

return operationChanges(operationMeta, operationIndex), nil
changes, err := t.operationChanges(operationMeta, operationIndex)
if err != nil {
return []Change{}, err
}
return changes, nil
}

func operationChanges(ops []xdr.OperationMeta, index uint32) []Change {
func (t *LedgerTransaction) operationChanges(ops []xdr.OperationMeta, index uint32) ([]Change, error) {
if int(index) >= len(ops) {
return []Change{}
return []Change{}, errors.New("operation index out of range")
}

operationMeta := ops[index]
return GetChangesFromLedgerEntryChanges(
changes := GetChangesFromLedgerEntryChanges(
operationMeta.Changes,
)
for _, change := range changes {
op, found := t.GetOperation(index)
if !found {
return []Change{}, errors.New("could not find operation")
}
results, _ := t.Result.OperationResults()
operationResult := results[index].MustTr()
operationInfo := OperationInfo{
operationIdx: index,
operation: &op,
operationResult: &operationResult,
txEnvelope: &t.Envelope,
}
change.operationInfo = &operationInfo
change.isOperationChange = true
}
return changes, nil
}

// GetDiagnosticEvents returns all contract events emitted by a given operation.
Expand Down

0 comments on commit ba3ad68

Please sign in to comment.