Subversion Repositories XServices

Rev

Rev 94 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 94 Rev 115
Line 1... Line 1...
1
/*
1
/*
2
 *   Copyright 2012 Brian Rosenberger (Brutex Network)
2
 *   Copyright 2013 Brian Rosenberger (Brutex Network)
3
 *
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with the License.
5
 *   you may not use this file except in compliance with the License.
6
 *   You may obtain a copy of the License at
6
 *   You may obtain a copy of the License at
7
 *
7
 *
Line 11... Line 11...
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
14
 *   limitations under the License.
15
 */
15
 */
-
 
16
 
16
package net.brutex.xservices.ws.impl;
17
package net.brutex.xservices.ws.impl;
Line -... Line 18...
-
 
18
 
-
 
19
import java.util.ArrayList;
17
 
20
import java.util.StringTokenizer;
18
import java.util.regex.Matcher;
21
import java.util.regex.Matcher;
19
import java.util.regex.Pattern;
-
 
20
 
22
import java.util.regex.Pattern;
21
import javax.jws.WebService;
-
 
22
 
23
import javax.jws.WebService;
23
import net.brutex.xservices.types.StringMatchType;
24
import net.brutex.xservices.types.StringMatchType;
24
import net.brutex.xservices.types.StringReplaceType;
25
import net.brutex.xservices.types.StringReplaceType;
25
import net.brutex.xservices.util.BrutexNamespaces;
26
import net.brutex.xservices.types.StringSplitType;
26
import net.brutex.xservices.ws.StringService;
27
import net.brutex.xservices.ws.StringService;
-
 
28
import net.brutex.xservices.ws.XServicesFault;
-
 
29
import org.apache.commons.lang3.StringEscapeUtils;
-
 
30
import org.apache.commons.lang3.text.translate.CharSequenceTranslator;
Line 27... Line 31...
27
import net.brutex.xservices.ws.XServicesFault;
31
import org.apache.commons.lang3.text.translate.NumericEntityEscaper;
28
 
32
 
29
/**
-
 
30
 * @author Brian Rosenberger
33
/**
31
 * @since 0.5.0
34
 * @author Brian Rosenberger, bru(at)brutex.de
32
 * 
35
 *
33
 */
36
 */
-
 
37
@WebService(targetNamespace="http://ws.xservices.brutex.net", endpointInterface="net.brutex.xservices.ws.StringService", serviceName="StringService")
34
@WebService(targetNamespace = BrutexNamespaces.WS_XSERVICES, endpointInterface = "net.brutex.xservices.ws.StringService", serviceName = StringService.SERVICE_NAME)
38
public class StringServiceImpl
35
public class StringServiceImpl implements StringService {
39
  implements StringService
36
 
40
{
-
 
41
  public StringReplaceType replaceRegEx(String res, String search, String replace, String flags)
-
 
42
    throws XServicesFault
37
	public StringReplaceType replaceRegEx(String res, String search,
43
  {
38
			String replace, String flags) throws XServicesFault {
44
    try
39
		try {
45
    {
40
			int allflags = getFlags(flags);
46
      int allflags = getFlags(flags);
41
			Pattern pattern = Pattern.compile(search, allflags);
47
      Pattern pattern = Pattern.compile(search, allflags);
42
			Matcher matcher = pattern.matcher(res);
48
      Matcher matcher = pattern.matcher(res);
43
			int count = 0;
49
      int count = 0;
44
			while (matcher.find()) {
50
      while (matcher.find()) {
45
				count++;
51
        count++;
46
			}
52
      }
47
			if (flags.contains("g")) {
53
      if (flags.contains("g")) {
48
				return new StringReplaceType(matcher.replaceAll(replace), count);
54
        return new StringReplaceType(matcher.replaceAll(replace), count);
49
			} else {
55
      }
50
				if (count > 1)
56
      if (count > 1)
51
					count = 1;
57
        count = 1;
52
				return new StringReplaceType(matcher.replaceFirst(replace),
58
      return new StringReplaceType(matcher.replaceFirst(replace), 
53
						count);
59
        count);
54
			}
60
    }
55
		} catch (Exception e) {
61
    catch (Exception e) {
56
			throw new XServicesFault(e);
-
 
57
		}
62
      throw new XServicesFault(e);
58
 
63
    }
59
	}
-
 
60
 
64
  }
61
	@Override
65
 
-
 
66
  public StringMatchType matchRegEx(String res, String search, String flags)
62
	public StringMatchType matchRegEx(String res, String search, String flags)
67
    throws XServicesFault
63
			throws XServicesFault {
68
  {
64
		int allflags = getFlags(flags);
69
    int allflags = getFlags(flags);
65
		Pattern pattern = Pattern.compile(search, allflags);
70
    Pattern pattern = Pattern.compile(search, allflags);
-
 
71
    Matcher matcher = pattern.matcher(res);
66
		Matcher matcher = pattern.matcher(res);
72
    StringMatchType rm = new StringMatchType();
67
		StringMatchType rm = new StringMatchType();
73
    
68
		while (matcher.find()) {
74
	for (int i=0; i <= matcher.groupCount(); i++) {
69
			for(int i=0; i<=matcher.groupCount();i++){
75
	    	while(matcher.find()) {
-
 
76
	    		rm.addStringMatch(matcher.start(i), matcher.end(i), "group-"+i, matcher.group(i));
70
				rm.addStringMatch(matcher.start(), matcher.end(), matcher.group(i));
77
	    	}
71
			}		
78
	    	matcher.reset();
72
		}
79
	 }
73
		return rm;
80
    return rm;
74
	}
81
  }
75
	
-
 
76
	private int getFlags(String flags) {
82
 
77
		int allflags = 0;
-
 
78
		if(flags.contains("i")) {
83
  public String encodeToXMLEntities(String res)
79
			allflags = allflags + Pattern.CASE_INSENSITIVE;
84
    throws XServicesFault
-
 
85
  {
80
		}
86
    StringEscapeUtils fac = new StringEscapeUtils();
81
		if(flags.contains("m")) {
87
    StringEscapeUtils.ESCAPE_XML.with(new CharSequenceTranslator[] { NumericEntityEscaper.between(128, 2147483647) });
82
			allflags = allflags + Pattern.MULTILINE;
-
 
83
		}
-
 
84
		if(flags.contains("u")) {
88
    return StringEscapeUtils.escapeXml(res);
85
			allflags = allflags + Pattern.UNICODE_CASE;
89
  }
86
		}
90
  
87
		if(flags.contains("s")) {
-
 
88
			allflags = allflags + Pattern.DOTALL;
-
 
89
		}
91
  public StringSplitType splitString(String paramString, String delimiter) throws XServicesFault {
90
		if(flags.contains("d")) {
-
 
91
			allflags = allflags + Pattern.UNIX_LINES;
92
		StringTokenizer tk = new StringTokenizer(paramString, delimiter);
92
		}
93
		StringSplitType result = new StringSplitType();
93
		if(flags.contains("x")) {
94
		while(tk.hasMoreTokens()) {
94
			allflags = allflags + Pattern.COMMENTS;
95
			result.addStringMatch( tk.nextToken() );
95
		}
96
		}
Line -... Line 97...
-
 
97
		return result;
-
 
98
	}
-
 
99
 
-
 
100
  private int getFlags(String flags) {
-
 
101
    int allflags = 0;
-
 
102
    if (flags.contains("i")) {
-
 
103
      allflags += 2;
-
 
104
    }
-
 
105
    if (flags.contains("m")) {
-
 
106
      allflags += 8;
-
 
107
    }
-
 
108
    if (flags.contains("u")) {
-
 
109
      allflags += 64;
-
 
110
    }
-
 
111
    if (flags.contains("s")) {
-
 
112
      allflags += 32;
-
 
113
    }
-
 
114
    if (flags.contains("d")) {
-
 
115
      allflags++;
-
 
116
    }
-
 
117
    if (flags.contains("x")) {
-
 
118
      allflags += 4;
96
		return allflags;
119
    }