AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / CassBatch.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth;
23
24 import java.io.IOException;
25
26 import org.onap.aaf.auth.env.AuthzTrans;
27 import org.onap.aaf.auth.org.OrganizationException;
28 import org.onap.aaf.misc.env.APIException;
29 import org.onap.aaf.misc.env.Env;
30 import org.onap.aaf.misc.env.TimeTaken;
31 import org.onap.aaf.misc.env.impl.Log4JLogTarget;
32
33 import com.datastax.driver.core.ResultSet;
34 import com.datastax.driver.core.exceptions.InvalidQueryException;
35
36 public abstract class CassBatch extends Batch {
37
38         protected CassBatch(AuthzTrans trans, String log4JName) throws APIException, IOException, OrganizationException {
39                 super(trans.env());
40                 // Flow all Env Logs to Log4j
41                 Log4JLogTarget.setLog4JEnv(log4JName, env);
42                 
43                 TimeTaken tt = trans.start("Connect to Cluster", Env.REMOTE);
44                 try {
45                         session = cluster.connect();
46                 } finally {
47                         tt.done();
48                 }
49         }
50
51         @Override
52         protected void _close(AuthzTrans trans) {
53             session.close();
54                 trans.info().log("Closed Session");
55         }
56
57         public ResultSet executeQuery(String cql) {
58                 return executeQuery(cql,"");
59         }
60
61         public ResultSet executeQuery(String cql, String extra) {
62                 if(isDryRun() && !cql.startsWith("SELECT")) {
63                         if(extra!=null)env.info().log("Would query" + extra + ": " + cql);
64                 } else {
65                         if(extra!=null)env.info().log("query" + extra + ": " + cql);
66                         try {
67                                 return session.execute(cql);
68                         } catch (InvalidQueryException e) {
69                                 if(extra==null) {
70                                         env.info().log("query: " + cql);
71                                 }
72                                 throw e;
73                         }
74                 } 
75                 return null;
76         }
77
78 }