DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.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 com.att.eelf.configuration.EELFLogger;
25 import com.att.eelf.configuration.EELFManager;
26 import com.att.nsa.apiClient.http.CacheUse;
27 import com.att.nsa.apiClient.http.HttpClient;
28 import org.json.JSONArray;
29 import org.json.JSONException;
30 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
31
32 import java.net.MalformedURLException;
33 import java.util.Collection;
34 import java.util.Set;
35 import java.util.TreeSet;
36 import java.util.concurrent.TimeUnit;
37
38 /**
39  * 
40  * @author anowarul.islam
41  *
42  */
43 public class CambriaBaseClient extends HttpClient implements org.onap.dmaap.dmf.mr.metrics.publisher.CambriaClient 
44 {
45         protected CambriaBaseClient ( Collection<String> hosts ) throws MalformedURLException
46         {
47                 this ( hosts, null );
48         }
49
50         public CambriaBaseClient ( Collection<String> hosts, String clientSignature ) throws MalformedURLException
51         {
52                 
53                         
54                 
55                 super(ConnectionType.HTTP, hosts, CambriaConstants.kStdCambriaServicePort, clientSignature, CacheUse.NONE, 1, 1L, TimeUnit.MILLISECONDS, 32, 32, 600000);
56
57                 
58                 fLog = EELFManager.getInstance().getLogger(this.getClass().getName());
59                 
60         }
61
62         @Override
63         public void close ()
64         {
65         }
66
67         public Set<String> jsonArrayToSet ( JSONArray a ) throws JSONException
68         {
69                 if ( a == null ){
70                         return null;
71                 }
72                 
73                 final TreeSet<String> set = new TreeSet<>();
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                 
88         }
89
90         public EELFLogger  getLog ()
91         {
92                 return fLog;
93         }
94         
95         private EELFLogger  fLog;
96         
97         
98
99 }