Revert package name changes
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / nsa / cambria / 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 com.att.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.slf4j.Logger;
33 //import org.slf4j.LoggerFactory;
34 import com.att.eelf.configuration.EELFLogger;
35 import com.att.eelf.configuration.EELFManager;
36 import com.att.nsa.apiClient.http.CacheUse;
37 import com.att.nsa.apiClient.http.HttpClient;
38 import com.att.nsa.cambria.constants.CambriaConstants;
39
40 /**
41  * 
42  * @author author
43  *
44  */
45 public class CambriaBaseClient extends HttpClient implements com.att.nsa.cambria.metrics.publisher.CambriaClient 
46 {
47         protected CambriaBaseClient ( Collection<String> hosts ) throws MalformedURLException
48         {
49                 this ( hosts, null );
50         }
51
52         protected CambriaBaseClient ( Collection<String> hosts, String clientSignature ) throws MalformedURLException
53         {
54 //              super ( hosts, CambriaConstants.kStdCambriaServicePort, clientSignature,
55 //                      CacheUse.NONE, 1, 1, TimeUnit.MILLISECONDS );
56                 super(ConnectionType.HTTP, hosts, CambriaConstants.kStdCambriaServicePort, clientSignature, CacheUse.NONE, 1, 1L, TimeUnit.MILLISECONDS, 32, 32, 600000);
57
58                 //fLog = LoggerFactory.getLogger ( this.getClass().getName () );
59                 fLog = EELFManager.getInstance().getLogger(this.getClass().getName());
60                 //( this.getClass().getName () );
61         }
62
63         @Override
64         public void close ()
65         {
66         }
67
68         protected Set<String> jsonArrayToSet ( JSONArray a ) throws JSONException
69         {
70                 if ( a == null ) return null;
71
72                 final TreeSet<String> set = new TreeSet<String> ();
73                 for ( int i=0; i<a.length (); i++ )
74                 {
75                         set.add ( a.getString ( i ));
76                 }
77                 return set;
78         }
79         /**
80          * @param log
81          */
82         public void logTo ( EELFLogger  log )
83         {
84                 fLog = log; 
85                 
86                 //replaceLogger ( log );
87         }
88
89         protected EELFLogger  getLog ()
90         {
91                 return fLog;
92         }
93         
94         private EELFLogger  fLog;
95         
96         
97
98 }