Updating licenses in all files
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / main / java / org / openecomp / appc / adapter / netconf / internal / NetconfMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.adapter.netconf.internal;
24
25 import java.io.ByteArrayOutputStream;
26
27 class NetconfMessage {
28
29     private static final String EOM = "]]>]]>";
30
31     private String text;
32     private MessageBuffer buffer = new MessageBuffer();
33     private int eomNotch;
34
35     NetconfMessage() {
36     }
37
38     NetconfMessage(String text) {
39         if(text == null) {
40             throw new NullPointerException("Netconf message payload is null");
41         }
42         append(text.getBytes(), 0, text.length());
43         if(this.text == null) {
44             this.text = text;
45         }
46     }
47
48     void append(byte[] bytes, int start, int end) {
49         boolean eomFound = false;
50         for(int i = start; i < end; i++) {
51             if(bytes[i] == EOM.charAt(eomNotch)) {
52                 // advance notch
53                 eomNotch++;
54             } else {
55                 // reset notch
56                 eomNotch = 0;
57             }
58             if(eomNotch == EOM.length()) {
59                 // end of message found
60                 eomFound = true;
61                 end = i + 1;
62                 break;
63             }
64         }
65         buffer.write(bytes, start, end);
66         if(eomFound) {
67             text = new String(buffer.getBytes(), 0, buffer.size() - EOM.length());
68             buffer.reset();
69         }
70     }
71
72     String getText() {
73         return text;
74     }
75
76     boolean isCompleted() {
77         return (text != null);
78     }
79
80     byte[] getFrame() {
81         StringBuilder sb = new StringBuilder();
82         if(text != null) {
83             sb.append(text).append("\n");
84         }
85         sb.append(EOM);
86         return sb.toString().getBytes();
87     }
88
89     private class MessageBuffer extends ByteArrayOutputStream {
90
91         byte[] getBytes() {
92             return buf;
93         }
94     }
95 }