2fd4596a9f2aee62c8cdaa5888336c87de5b3e2e
[music.git] / src / main / java / org / onap / music / datastore / Condition.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  *
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.datastore;
24 import java.util.Map;
25
26 import org.onap.music.main.MusicCore;
27
28 import com.datastax.driver.core.ResultSet;
29 import com.datastax.driver.core.Row;
30
31 public class Condition {
32         Map<String, Object> conditions;
33         PreparedQueryObject selectQueryForTheRow;
34
35         public Condition(Map<String, Object> conditions, PreparedQueryObject selectQueryForTheRow) {
36             this.conditions = conditions;
37             this.selectQueryForTheRow = selectQueryForTheRow;
38         }
39
40         public boolean testCondition() throws Exception {
41             // first generate the row
42             ResultSet results = MusicCore.quorumGet(selectQueryForTheRow);
43             Row row = null;
44             if(results != null) {
45                 row = results.one();
46             }
47             if(row == null) {
48                 throw new Exception(" No data found to update");
49             }
50             return MusicDataStoreHandle.getDSHandle().doesRowSatisfyCondition(row, conditions);
51         }
52     }