org.apache.cocoon.util.wildcard
Class WildcardMatcherHelper

java.lang.Object
  extended by org.apache.cocoon.util.wildcard.WildcardMatcherHelper

public class WildcardMatcherHelper
extends Object

This class is a utility class that performs wildcard-patterns matching and isolation.

Version:
$Id: WildcardMatcherHelper.html 1343757 2012-05-29 14:45:42Z ilgrosso $

Field Summary
static char ESC
          Default path separator: "/"
static char PATHSEP
          Default path separator: "/"
static char STAR
          Default path separator: "/"
 
Constructor Summary
WildcardMatcherHelper()
           
 
Method Summary
static Map<String,String> match(String pat, String str)
          Match a pattern against a string and isolate wildcard replacements into a Map.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ESC

public static final char ESC
Default path separator: "/"

See Also:
Constant Field Values

PATHSEP

public static final char PATHSEP
Default path separator: "/"

See Also:
Constant Field Values

STAR

public static final char STAR
Default path separator: "/"

See Also:
Constant Field Values
Constructor Detail

WildcardMatcherHelper

public WildcardMatcherHelper()
Method Detail

match

public static Map<String,String> match(String pat,
                                       String str)
Match a pattern against a string and isolate wildcard replacements into a Map.
Here is how the matching algorithm works:
When more than two '*' characters, not separated by another character, are found their value is considered as '**' and immediate succeeding '*' are skipped.
The '**' wildcard is greedy and thus the following sample matches as {"foo/bar","baz","bug"}:
pattern
**/*/**
string
foo/bar/baz/bug
The first '**' in the pattern will suck up as much as possible without making the match fail.

Parameters:
pat - The pattern string.
str - The string to match against the pattern
Returns:
a Map containing the representation of the extracted pattern. The extracted patterns are keys in the Map from left to right beginning with "1" for the left most, "2" for the next, a.s.o. The key "0" is the string itself. If the return value is null, string does not match to the pattern.


Copyright © 2008-2012 The Apache Software Foundation. All Rights Reserved.