fixed code smells
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / dmf / mr / metrics / publisher / impl / CambriaBaseClient.java
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.dmf.mr.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
33 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
34
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 anowarul.islam
44  *
45  */
46 public class CambriaBaseClient extends HttpClient implements org.onap.dmaap.dmf.mr.metrics.publisher.CambriaClient 
47 {
48         protected CambriaBaseClient ( Collection<String> hosts ) throws MalformedURLException
49         {
50                 this ( hosts, null );
51         }
52
53         public CambriaBaseClient ( Collection<String> hosts, String clientSignature ) throws MalformedURLException
54         {
55                 
56                         
57                 
58                 super(ConnectionType.HTTP, hosts, CambriaConstants.kStdCambriaServicePort, clientSignature, CacheUse.NONE, 1, 1L, TimeUnit.MILLISECONDS, 32, 32, 600000);
59
60                 
61                 fLog = EELFManager.getInstance().getLogger(this.getClass().getName());
62                 
63         }
64
65         @Override
66         public void close ()
67         {
68         }
69
70         public Set<String> jsonArrayToSet ( JSONArray a ) throws JSONException
71         {
72                 if ( a == null ){
73                         return null;
74                 }
75                 
76                 final TreeSet<String> set = new TreeSet<>();
77                 for ( int i=0; i<a.length (); i++ )
78                 {
79                         set.add ( a.getString ( i ));
80                 }
81                 return set;
82         }
83         /**
84          * @param log
85          */
86         public void logTo ( EELFLogger  log )
87         {
88                 fLog = log; 
89                 
90                 
91         }
92
93         public EELFLogger  getLog ()
94         {
95                 return fLog;
96         }
97         
98         private EELFLogger  fLog;
99         
100         
101
102 }