397e8182f3dbde749e12a3fc41b6be9ebde4afe5
[dmaap/messagerouter/msgrtr.git] /
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.metrics.publisher.impl;
23
24 import java.net.MalformedURLException;
25 import java.util.Collection;
26 import java.util.Set;
27 import java.util.TreeSet;
28 import java.util.concurrent.TimeUnit;
29
30 import org.json.JSONArray;
31 import org.json.JSONException;
32 import org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.constants.CambriaConstants;
33
34 //import org.slf4j.Logger;
35 //import org.slf4j.LoggerFactory;
36 import com.att.eelf.configuration.EELFLogger;
37 import com.att.eelf.configuration.EELFManager;
38 import com.att.nsa.apiClient.http.CacheUse;
39 import com.att.nsa.apiClient.http.HttpClient;
40
41 /**
42  * 
43  * @author author
44  *
45  */
46 public class CambriaBaseClient extends HttpClient implements org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.metrics.publisher.CambriaClient 
47 {
48         protected CambriaBaseClient ( Collection<String> hosts ) throws MalformedURLException
49         {
50                 this ( hosts, null );
51         }
52
53         protected CambriaBaseClient ( Collection<String> hosts, String clientSignature ) throws MalformedURLException
54         {
55 //              super ( hosts, CambriaConstants.kStdCambriaServicePort, clientSignature,
56 //                      CacheUse.NONE, 1, 1, TimeUnit.MILLISECONDS );
57                 super(ConnectionType.HTTP, hosts, CambriaConstants.kStdCambriaServicePort, clientSignature, CacheUse.NONE, 1, 1L, TimeUnit.MILLISECONDS, 32, 32, 600000);
58
59                 //fLog = LoggerFactory.getLogger ( this.getClass().getName () );
60                 fLog = EELFManager.getInstance().getLogger(this.getClass().getName());
61                 //( this.getClass().getName () );
62         }
63
64         @Override
65         public void close ()
66         {
67         }
68
69         protected Set<String> jsonArrayToSet ( JSONArray a ) throws JSONException
70         {
71                 if ( a == null ) return null;
72
73                 final TreeSet<String> set = new TreeSet<String> ();
74                 for ( int i=0; i<a.length (); i++ )
75                 {
76                         set.add ( a.getString ( i ));
77                 }
78                 return set;
79         }
80         /**
81          * @param log
82          */
83         public void logTo ( EELFLogger  log )
84         {
85                 fLog = log; 
86                 
87                 //replaceLogger ( log );
88         }
89
90         protected EELFLogger  getLog ()
91         {
92                 return fLog;
93         }
94         
95         private EELFLogger  fLog;
96         
97         
98
99 }