123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- '''This file is part of AToMPM - A Tool for Multi-Paradigm Modelling
- Copyright 2011 by the AToMPM team and licensed under the LGPL
- See COPYING.lesser and README.md in the root of this project for full details'''
- from ..util.infinity import INFINITY
- from .arule import ARule
- from ..tcore.rollbacker import Rollbacker
- from ..tcore.resolver import Resolver
- class XRule(ARule):
- '''
- Applies the transformation on one match with roll-back capability.
- '''
- def __init__(self, LHS, RHS, max_iterations=INFINITY):
- '''
- Applies the transformation on one match with roll-back capability.
- @param LHS: The pre-condition pattern (LHS + NACs).
- @param RHS: The post-condition pattern (RHS).
- @param max_iterations: The maximum number of times to apply the transformation.
- @param LHS: The pre-condition pattern (LHS + NACs).
- @param RHS: The post-condition pattern (RHS).
- '''
- # external_matches_only=True because further matches of this rule are only processed after a roll-back
- super(XRule, self).__init__(LHS, RHS)
- self.M.max = max_iterations
- self.I.max_iterations = max_iterations
- self.B = Rollbacker(condition=LHS, max_iterations=max_iterations)
- def packet_in(self, packet):
- self.exception = None
- self.is_success = False
- # Checkpoint the original packet
- self.B.packet_in(packet)
- if not self.B.is_success:
- self.exception = self.B.exception
- return packet
- # Match
- packet = self.M.packet_in(packet)
- if not self.M.is_success:
- packet = self.B.restore(packet)
- if self.M.exception:
- self.exception = self.M.exception
- elif self.B.exception:
- self.exception = self.B.exception
- return packet
- # Choose one match
- packet = self.I.packet_in(packet)
- if not self.I.is_success:
- packet = self.B.restore(packet)
- if self.I.exception:
- self.exception = self.I.exception
- elif self.B.exception:
- self.exception = self.B.exception
- return packet
- # Rewrite
- packet = self.W.packet_in(packet)
- if not self.W.is_success:
- packet = self.B.restore(packet)
- if self.W.exception:
- self.exception = self.W.exception
- elif self.B.exception:
- self.exception = self.B.exception
- return packet
- self.is_success = True
- return packet
- def next_in(self, packet):
- self.exception = None
- self.is_success = False
- packet = self.B.next_in(packet)
- if not self.B.is_success:
- self.exception = self.B.exception
- return packet
- # Choose the next match
- packet = self.I.packet_in(packet)
- if not self.I.is_success:
- packet = self.B.next_in(packet)
- if self.I.exception:
- self.exception = self.I.exception
- elif self.B.exception:
- self.exception = self.B.exception
- return packet
- # Rewrite
- packet = self.W.packet_in(packet)
- if not self.W.is_success:
- packet = self.B.next_in(packet)
- if self.W.exception:
- self.exception = self.W.exception
- elif self.B.exception:
- self.exception = self.B.exception
- return packet
- # Output success packet
- self.is_success = True
- return packet
- class XRule_r(XRule):
- '''
- Applies the transformation on one match with roll-back capability.
- '''
- def __init__(self, LHS, RHS, max_iterations=INFINITY, external_matches_only=False, custom_resolution=lambda packet: False):
- '''
- Applies the transformation on one match with roll-back capability.
- @param LHS: The pre-condition pattern (LHS + NACs).
- @param RHS: The post-condition pattern (RHS).
- @param max_iterations: The maximum number of times to apply the transformation.
- @param external_matches_only: Resolve conflicts ignoring the matches found in this ARule.
- @param custom_resolution: Override the default resolution function.
- '''
- super(XRule_r, self).__init__(LHS, RHS, max_iterations)
- self.R = Resolver(external_matches_only=external_matches_only,
- custom_resolution=custom_resolution)
- def packet_in(self, packet):
- packet = super(XRule_r, self).packet_in(packet)
- # is_success is True
- if self.exception is None:
- # Resolve any conflicts if necessary
- packet = self.R.packet_in(packet)
- if not self.R.is_success:
- self.exception = self.R.exception
- return packet
- # Output success packet
- else:
- self.is_success = False
- return packet
- def next_in(self, packet):
- packet = super(XRule_r, self).next_in(packet)
- # is_success is True
- if self.exception is None:
- # Resolve any conflicts if necessary
- packet = self.R.packet_in(packet)
- if not self.R.is_success:
- self.exception = self.R.exception
- return packet
- # Output success packet
- else:
- self.is_success = False
- return packet
|