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