1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski 
24*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper package convwatch;
25*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
26*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper public class StringHelper {
27*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
28*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     public static String doubleQuote(String _sStr)
29*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         {
30*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             return "\"" + _sStr + "\"";
31*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         }
32*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
33*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     public static String singleQuote(String _sStr)
34*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         {
35*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             return "'" + _sStr + "'";
36*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         }
37*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
38*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     public static String removeQuoteIfNeed(String _sPath)
39*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         {
40*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             String sNewPath = _sPath;
41*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
42*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             if (_sPath.startsWith("\"") ||
43*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 _sPath.startsWith("'"))
44*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
45*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 // remove trailing quotes, if exists
46*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 sNewPath = sNewPath.substring(1);
47*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
48*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
49*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             if (_sPath.endsWith("\"") ||
50*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 _sPath.endsWith("'"))
51*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
52*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 // remove trailing quotes, if exists
53*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 sNewPath = sNewPath.substring(0, sNewPath.length() - 1);
54*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
55*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             return sNewPath;
56*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         }
57*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
58*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     public static String doubleQuoteIfNeed(String _sStr)
59*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         {
60*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             if (_sStr.startsWith("\"") && _sStr.endsWith("\""))
61*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
62*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 // don't quote twice
63*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 return _sStr;
64*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
65*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             if (_sStr.indexOf(" ") == -1)
66*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
67*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 // don't quote, if there is no space in name
68*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 return _sStr;
69*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
70*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             if (_sStr.indexOf("%") != -1)
71*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
72*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 return singleQuote(_sStr);
73*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
74*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
75*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             return doubleQuote(_sStr);
76*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         }
77*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
78*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     /**
79*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * Convert a value to a string with a given length, if the len is greater the len of the value string representation
80*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * fill it's front with '0'
81*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * So ("5", 4) will result in a string "0005"
82*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * @param _nValue
83*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * @param _nLen
84*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      * @return
85*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper      */
86*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper     public static String createValueString(int _nValue, int _nLen)
87*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         {
88*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             String sValue = String.valueOf(_nValue);
89*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             StringBuffer a = new StringBuffer();
90*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             while (_nLen > sValue.length())
91*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             {
92*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 a.append('0');
93*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper                 _nLen --;
94*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             }
95*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             a.append(sValue);
96*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper             return a.toString();
97*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper         }
98*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper
99*b1cdbd2cSJim Jagielski // LLA: moved to helper.StringHelper }
100