Warning: session_start(): open(/var/lib/php/sessions/sess_cj3jc2mugb5qb8dbmu5o44male, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
svoid dm_gazelle_matchStatements(L l, O... _) {
for (GazelleTree t : l)
if (t.rule() != null) {
RuleEngine2_MatchedRule mr = t.mr;
LS in = t.rule().in;
int iCond = t.mr.iCond;
print("matchStatements: iCond=" + iCond + " in " + in);
if (l(in) > iCond) {
LS conditions = dropFirst(iCond, in);
print("Remaining conditions for " + t.ruleID() + " with " + t.mr.map + ": " + conditions);
new Matches m;
if (!matchAny("in " + (iCond+1) + " = statement *", t.rule().comments, m))
continue with print("Unwired condition");
S subRuleID = $1;
print("Found subrule: " + subRuleID);
L fulfillments = dm_gazelle_fulfillmentsForRule(subRuleID);
print("Have fulfillments:");
for (O f : fulfillments) {
SS varMap = asCIMap(safeUnstructMap(getString varMap(f)));
printIndent(sfu(varMap));
// self-vars hack to fix John Doe problem
bool selfVarsFix = boolPar selfVarsFix(_, true);
if (selfVarsFix) {
S cond = first(conditions);
for (S x : identifiersOnly(codeTokens(mr.tokenize(cond))))
if (!varMap.containsKey(x)) {
print("Self-linking " + x);
varMap.put(x, x);
}
}
SS newMap = mergeMapsStrictlyIC(asCIMap(t.mr.map), varMap);
if (newMap == null)
continue with printIndent("Can't merge maps");
printIndent("Maps merged! => " + sfu(newMap));
t.mr.map = newMap;
t.mr.iCond++;
t.mr.remainingConditions = dropFirst(t.mr.remainingConditions); // XX: also should rewrite with new vars
t.mr.remainingConditionsWithType = dropFirst(t.mr.remainingConditionsWithType);
t.mr.out = null;
t.line = t.mr.outText();
print("Rewrote " + t.mr.rule.out + " to: " + t.line);
break;
}
}
}
}