summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_javalibrary/evel_javalib2/src/evel_javalibrary/att/com/AgentMain.java
blob: 7313076a3590c4359c7c62a1594b6711656d687d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
package evel_javalibrary.att.com;

/**************************************************************************//**
 * @file
 * Header for EVEL library
 *
 * This file implements the EVEL library which is intended to provide a
 * simple wrapper around the complexity of AT&T's Vendor Event Listener API so
 * that VNFs can use it without worrying about details of the API transport.
 *
 * License
 * -------
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

import org.apache.log4j.Logger;
import org.apache.log4j.Level;

import java.io.BufferedReader;
import java.io.BufferedWriter;
//import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
//import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
//import java.net.ProtocolException;
import java.net.URL;
//import java.nio.charset.StandardCharsets;


import javax.net.ssl.HttpsURLConnection;

import org.apache.log4j.BasicConfigurator;

/**
 * @author Gokul Singaraju
 */


public class AgentMain {
	
/**************************************************************************//**
 * Error codes
 *
 * Error codes for EVEL low level interface
 *****************************************************************************/
public enum EVEL_ERR_CODES {
  EVEL_SUCCESS,                   /** The operation was successful.          */
  EVEL_ERR_GEN_FAIL,              /** Non-specific failure.                  */
  EVEL_CURL_LIBRARY_FAIL,         /** A cURL library operation failed.       */
  EVEL_PTHREAD_LIBRARY_FAIL,      /** A Posix threads operation failed.      */
  EVEL_OUT_OF_MEMORY,             /** A memory allocation failure occurred.  */
  EVEL_EVENT_BUFFER_FULL,         /** Too many events in the ring-buffer.    */
  EVEL_EVENT_HANDLER_INACTIVE,    /** Attempt to raise event when inactive.  */
  EVEL_NO_METADATA,               /** Failed to retrieve OpenStack metadata. */
  EVEL_BAD_METADATA,              /** OpenStack metadata invalid format.     */
  EVEL_BAD_JSON_FORMAT,           /** JSON failed to parse correctly.        */
  EVEL_JSON_KEY_NOT_FOUND,        /** Failed to find the specified JSON key. */
  EVEL_MAX_ERROR_CODES            /** Maximum number of valid error codes.   */
}
	
	private static final Logger logger = Logger.getLogger(AgentMain.class);
	
	private static String url = null;
	private static URL vesurl = null;
	private static HttpURLConnection con = null;
	private static String userpass = null;
	private static String version = "5";
	
	/* RingBuffer to forward messages on sending AgentDispatcher thread */
	private static RingBuffer ringb = new RingBuffer(100);
	
	Thread thr;
	
	/* AgentDispatcher loops on messages in RingBuffer and POSTs them
	 * to external Collector
	 */
 private static class AgentDispatcher  implements Runnable {
    	
    	private String readStream(InputStream stream) throws Exception {
    	    StringBuilder builder = new StringBuilder();
    	    try (BufferedReader in = new BufferedReader(new InputStreamReader(stream))) {
    	        String line;
    	        while ((line = in.readLine()) != null) {
    	            builder.append(line); // + "\r\n"(no need, json has no line breaks!)
    	        }
    	        in.close();
    	    }
    	    logger.error("Resp: " + builder.toString());
    	    System.out.println("Resp: " + builder.toString());
    	    return builder.toString();
    	}
    	
      public void run() {
 
      String datatosend=null;  
      for(;;){
    	  if( (datatosend = (String) ringb.take()) != null )
    	  {
    		  //process data
    		  
    		  logger.trace(url + "Got an event size "+datatosend.length());
    		  logger.trace(datatosend);
    		  
			  try {
   		  
    	  		//HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();
    	  		con = (HttpURLConnection) vesurl.openConnection();
    	        if (con instanceof HttpsURLConnection) {
    	            HttpsURLConnection httpsConnection = (HttpsURLConnection) con;
    	            //SSLContext sc = SSLContext.getInstance("TLSv1.2");
    	            // Init the SSLContext with a TrustManager[] and SecureRandom()
    	            //sc.init(null, null, new java.security.SecureRandom());
    	            //httpsConnection.setHostnameVerifier(getHostnameVerifier());
    	            //httpsConnection.setSSLSocketFactory(sc.getSocketFactory());
    	            con  = httpsConnection;
    	        }
    	  		
    	  		//add reuqest header
    	  		con.setRequestMethod("POST");
    	  		//con.setRequestProperty("User-Agent", USER_AGENT);
    	  		//con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
    	  	    // No caching, we want the real thing.
    	  	    con.setUseCaches (false);
    	  	    // Specify the content type.
    	  	    con.setRequestProperty("Content-Type", "application/json");
    	  	    //con.setChunkedStreamingMode(0);
    	  	    con.setInstanceFollowRedirects( false );
    	  	    //Basic username password authentication
    	  	    String basicAuth = "Basic " + javax.xml.bind.DatatypeConverter.printBase64Binary(userpass.getBytes("UTF-8"));
    	  	    con.setRequestProperty ("Authorization", basicAuth);
    	  	    
    	        con.setReadTimeout(15000 /* milliseconds */);
    	        con.setConnectTimeout(15000 /* milliseconds */);
    			// Send post request
    			con.setDoOutput(true);
    			con.setDoInput(true);
    		  
    		    con.setFixedLengthStreamingMode(datatosend.length());
    	        OutputStream os = con.getOutputStream();
	    	    BufferedWriter writer = new BufferedWriter(
	    	                new OutputStreamWriter(os, "UTF-8"));
	    	    //Call writer POST
	    	    writer.write(datatosend);
	    	    writer.flush();
	    	    writer.close();
	    	    os.close();	
	    	    //Handle the response code for POST request
	    	    int respCode = con.getResponseCode();
	    	    logger.trace(url + "Connection HTTP Response code :"+respCode);
    	        if(respCode < HttpURLConnection.HTTP_OK ) {
    	        	logger.trace(url + " **INFO**");
    	        }
    	        else if(respCode >= HttpURLConnection.HTTP_OK && respCode < HttpURLConnection.HTTP_MULT_CHOICE )
    	        {
                    logger.trace(url + " **OK**");
			    }
			    else if(respCode >= HttpURLConnection.HTTP_MULT_CHOICE  && respCode < HttpURLConnection.HTTP_BAD_REQUEST )
			    {
			    	logger.warn(url + " **REDIRECTION**");
			    }
			    else if(respCode >= HttpURLConnection.HTTP_BAD_REQUEST )
			    {
			    	logger.warn(url + " **SERVER ERROR**");

                    InputStream es = con.getErrorStream();
                    readStream(es);
			    }
    	        
				
			  } catch (IOException e) {
				  // TODO Auto-generated catch block
				  e.printStackTrace();
			  } catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
    		  
    	  }
    	  else
    	  {
    		  logger.trace(url + "Waiting for events");
    		  try {
				Thread.sleep(5);
			  } catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			  }
    	  }
      }//end for
     }//end run
   }//end AgentDispatcher
    // Validate URL
    public static boolean isValidURL(String urlStr) {
        try {
          URL url = new URL(urlStr);
          return true;
        }
        catch (MalformedURLException e) {
            return false;
        }
    }
    
    /**************************************************************************//**
     * Library initialization.
     *
     * Initialize the EVEL library.
     *
     * @note  This function initializes the Java EVEL library interfaces.
     *        Validates input parameters and starts the AgentDispatcher thread
     *
     * @param   event_api_url    The API's URL.
     * @param   port    The API's port.
     * @param   path    The optional path (may be NULL).
     * @param   topic   The optional topic part of the URL (may be NULL).
     * @param   username  Username for Basic Authentication of requests.
     * @param   password  Password for Basic Authentication of requests.
     * @param   Level     Java Log levels.
     *
     * @returns Status code
     * @retval  EVEL_SUCCESS      On success
     * @retval  ::EVEL_ERR_CODES  On failure.
     *****************************************************************************/
    public static EVEL_ERR_CODES evel_initialize(
    		String event_api_url,
    		int port,
            String path,
            String topic,
            String username,
            String password,
            Level level) throws IOException
    {
    	  EVEL_ERR_CODES rc = EVEL_ERR_CODES.EVEL_SUCCESS;
    	  String throt_api_url = "http://127.0.0.1";

    	  EVEL_ENTER();

  	  	  BasicConfigurator.configure();

    	  /***************************************************************************/
    	  /* Check assumptions.                                                      */
    	  /***************************************************************************/
    	  assert(event_api_url != null);
    	  assert(port > 1024);
    	  assert(throt_api_url != null);
    	  assert(username != null);
    	  
    	  logger.setLevel(level);
    	  
    	  if( !isValidURL(event_api_url) || !isValidURL(throt_api_url)){
    		  System.out.println("Invalid Event API URL");
    		  rc = EVEL_ERR_CODES.EVEL_ERR_GEN_FAIL;
    		  System.exit(1);
    	  }
    	  
    	  if(path == null){
    		  path = "";
    	  } else {
    		  version += "/example_vnf";
    	  }
    	  
  		url = event_api_url+":"+Integer.toString(port)+path+"/eventListener/v"+version;
  		vesurl = null;
		try {
			vesurl = new URL(url);
		} catch (MalformedURLException e) {
			// TODO Auto-generated catch block
			logger.info("Error in url input");
			e.printStackTrace();
			System.exit(1);
		}
  	    userpass = username + ":" + password;

        logger.info("Starting Agent Dispatcher thread");
        long startTime = System.currentTimeMillis();
        Thread t = new Thread(new AgentDispatcher());
        t.start();
    	  
        EVEL_EXIT();
    	return rc; 
    	
    }
    
    private static void EVEL_EXIT() {
		// TODO Auto-generated method stub
		
	}

	private static void EVEL_ENTER() {
		// TODO Auto-generated method stub
		
	}
	
    /**************************************************************************//**
     * Handle user formatted post message
     *
     * @note  This function handles VES 5.x formatted messages from all valid
     *        Domains and stores them in RingBuffer.
     *
     * @param   obj     VES 5.x formatted user messages with common header
     *                  and optional specialized body
     *
     * @retval  boolean    True  On successful acceptance False on failure
     *****************************************************************************/

	public static boolean evel_post_event(EvelHeader obj )
    {
	    String data = obj.evel_json_encode_event();
    	boolean ret = ringb.put(data);
    	logger.info("Evel Post event ret:"+ret);
    	return ret;
    }

	

}