Coverage Report - net.sf.jmatchparser.template.engine.operation.MatchOperation
 
Classes in this File Line Coverage Branch Coverage Complexity
MatchOperation
93%
28/30
86%
19/22
8
 
 1  
 /*
 2  
  * Copyright (c) 2006 - 2011 Michael Schierl
 3  
  * All rights reserved.
 4  
  * 
 5  
  * This program is free software: you can redistribute it and/or modify
 6  
  * it under the terms of the GNU General Public License as published by
 7  
  * the Free Software Foundation, either version 2 of the License, or
 8  
  * (at your option) any later version.
 9  
  * 
 10  
  * This program is distributed in the hope that it will be useful,
 11  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13  
  * GNU General Public License for more details.
 14  
  * 
 15  
  * You should have received a copy of the GNU General Public License
 16  
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 17  
  */
 18  
 package net.sf.jmatchparser.template.engine.operation;
 19  
 
 20  
 import java.util.regex.Matcher;
 21  
 
 22  
 import net.sf.jmatchparser.template.engine.ParserState;
 23  
 import net.sf.jmatchparser.template.engine.parameter.Parameter;
 24  
 import net.sf.jmatchparser.util.PatternCache;
 25  
 
 26  
 public class MatchOperation extends Operation {
 27  
 
 28  
         private final Parameter parameter;
 29  
         private final boolean checkOnly;
 30  
         private final boolean negateCheck;
 31  
         private final boolean wholeLine;
 32  
 
 33  
         public MatchOperation(String templatePosition, Parameter parameter, boolean checkOnly, boolean negateCheck, boolean wholeLine) {
 34  554
                 super(templatePosition);
 35  554
                 this.parameter = parameter;
 36  554
                 this.checkOnly = checkOnly;
 37  554
                 this.negateCheck = negateCheck;
 38  554
                 this.wholeLine = wholeLine;
 39  554
                 if (negateCheck && !checkOnly)
 40  0
                         throw new RuntimeException();
 41  554
         }
 42  
 
 43  
         @Override
 44  
         public OperationResult execute(ParserState state) {
 45  1026
                 String regex = parameter.getRegex(state);
 46  
                 boolean success;
 47  
                 Matcher m;
 48  1026
                 if (wholeLine) {
 49  387
                         CharSequence rest = state.getFirstLine();
 50  387
                         if (rest == null) {
 51  3
                                 m = null;
 52  3
                                 success = false;
 53  
                         } else {
 54  384
                                 m = PatternCache.compile(regex).matcher(rest);
 55  384
                                 success = m.matches();
 56  
                         }
 57  387
                 } else {
 58  639
                         CharSequence rest = regex.contains("\n") ? state.getRest() : state.getFirstLine();
 59  639
                         m = PatternCache.compile("^" + regex).matcher(rest == null ? "" : rest);
 60  639
                         success = m.find();
 61  
                 }
 62  1026
                 if (success) {
 63  627
                         parameter.applyMatch(state, m);
 64  627
                         if (!checkOnly) {
 65  622
                                 if (m.start() != 0)
 66  0
                                         throw new RuntimeException();
 67  622
                                 int end = m.end() + (wholeLine ? 1 : 0);
 68  622
                                 state.discardCharacters(end);
 69  
                         }
 70  
                 }
 71  1026
                 if (success != negateCheck) {
 72  630
                         return OperationResult.CONTINUE;
 73  
                 } else {
 74  396
                         return OperationResult.FAIL;
 75  
                 }
 76  
         }
 77  
 }