65d4b432f534970d503231eb252527e8cd503c36
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-core / src / main / java / org / openecomp / appc / executor / impl / CommonMethods.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.executor.impl;
26
27 import java.io.IOException;
28 import java.io.StringWriter;
29 import java.io.Writer;
30 import java.util.HashMap;
31
32
33 class CommonMethods {
34
35     private static final HashMap m = new HashMap();
36
37     static {
38         m.put(34, "&quot;"); // < - less-than
39         m.put(60, "&lt;");   // < - less-than
40         m.put(62, "&gt;");   // > - greater-than
41         m.put(38, "&amp;");   // & - Ampersand
42     }
43
44     static String escapeHtml(String source) {
45         try {
46             StringWriter writer = new StringWriter((int) (source.length() * 1.5));
47             escape(writer, source);
48             return writer.toString();
49         } catch (IOException ioe) {
50             ioe.printStackTrace();
51             return null;
52         }
53     }
54
55     private static void escape(Writer writer, String str) throws IOException {
56         int len = str.length();
57         for (int i = 0; i < len; i++) {
58             char c = str.charAt(i);
59             int ascii = (int) c;
60             String entityName = (String) m.get(ascii);
61             if (entityName == null) {
62                 if (c > 0x7F) {
63                     writer.write("&#");
64                     writer.write(Integer.toString(c, 10));
65                     writer.write(';');
66                 } else {
67                     writer.write(c);
68                 }
69             } else {
70                 writer.write(entityName);
71             }
72         }
73     }
74
75 }