push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-versioning-lib / openecomp-sdc-versioning-core / src / main / java / org / openecomp / sdc / versioning / dao / impl / VersionHistoryCassandraDaoImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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  * 
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 package org.openecomp.sdc.versioning.dao.impl;
22
23 import com.datastax.driver.core.UDTValue;
24 import com.datastax.driver.mapping.Mapper;
25 import com.datastax.driver.mapping.Result;
26 import com.datastax.driver.mapping.UDTMapper;
27 import com.datastax.driver.mapping.annotations.Accessor;
28 import com.datastax.driver.mapping.annotations.Query;
29 import org.openecomp.core.dao.impl.CassandraBaseDao;
30 import org.openecomp.core.nosqldb.api.NoSqlDb;
31 import org.openecomp.core.nosqldb.factory.NoSqlDbFactory;
32 import org.openecomp.sdc.versioning.dao.VersionHistoryDao;
33 import org.openecomp.sdc.versioning.dao.types.VersionHistoryEntity;
34 import org.openecomp.sdc.versioning.dao.types.VersionableEntityId;
35
36 import java.util.Collection;
37
38 public class VersionHistoryCassandraDaoImpl extends CassandraBaseDao<VersionHistoryEntity>
39     implements VersionHistoryDao {
40
41   private static NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
42   private static Mapper<VersionHistoryEntity> mapper =
43       noSqlDb.getMappingManager().mapper(VersionHistoryEntity.class);
44   private static VersionHistoryAccessor accessor =
45       noSqlDb.getMappingManager().createAccessor(VersionHistoryAccessor.class);
46   private static UDTMapper<VersionableEntityId> versionedEntityIdMapper =
47       noSqlDb.getMappingManager().udtMapper(VersionableEntityId.class);
48
49   @Override
50   protected Mapper<VersionHistoryEntity> getMapper() {
51     return mapper;
52   }
53
54   @Override
55   protected Object[] getKeys(VersionHistoryEntity entity) {
56     return new Object[]{versionedEntityIdMapper.toUDT(entity.getEntityId())};
57   }
58
59   @Override
60   public Collection<VersionHistoryEntity> list(VersionHistoryEntity entity) {
61     return accessor.getAll(versionedEntityIdMapper.toUDT(entity.getEntityId())).all();
62   }
63
64   @Accessor
65   interface VersionHistoryAccessor {
66     @Query("select * from version_history where entity_id=?")
67     Result<VersionHistoryEntity> getAll(UDTValue entityId);
68   }
69 }