1 20 21 22 23 package cpmake; 24 25 import java.util.regex.*; 26 import java.io.*; 27 28 class PatternRule implements Rule 29 { 30 private Pattern m_pattern; 31 private String m_strPattern; 32 private String m_replacement; 34 private String m_scriptCall; 35 private CPMake m_make; 36 private boolean m_verify; 37 38 public PatternRule(CPMake make, String pattern, String replacement, 39 String scriptCall, boolean verify) 40 { 41 m_make = make; 42 m_strPattern = pattern; 43 m_pattern = Pattern.compile(pattern); 45 m_replacement = replacement; 47 m_scriptCall = scriptCall; 48 m_verify = verify; 49 } 50 51 public boolean matchTarget(String target) 52 { 53 return (m_pattern.matcher(target.replace('\\', '/')).matches()); 54 } 55 56 public String [] getPrerequisites(String target) 57 { 58 target = target.replace('\\', '/'); 59 String [] s = new String [1]; 60 63 File f; 64 65 s[0] = target.replaceFirst(m_strPattern, m_replacement); 66 if ((f = m_make.locateFile(s[0])) != null) 67 { 68 s[0] = m_make.getPath(f); 69 } 70 71 return (s); 72 } 73 74 public String getScriptCall() 75 { 76 return (m_scriptCall); 77 } 78 79 public boolean hasAction() 80 { 81 return (m_scriptCall != null); 82 } 83 84 public boolean verify() 85 { 86 return (m_verify); 87 } 88 89 public void callAction(String target) {} 90 } 91
| Popular Tags
|