Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2014-2018 Groupon, Inc
* Copyright 2014-2018 The Billing Project, LLC
*
* The Billing Project licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package org.killbill.billing.util.nodes.dao;
import java.util.Date;
import java.util.List;
import javax.inject.Inject;
import javax.inject.Named;
import org.joda.time.DateTime;
import org.killbill.billing.util.entity.dao.DBRouter;
import org.killbill.clock.Clock;
import org.skife.jdbi.v2.Handle;
import org.skife.jdbi.v2.IDBI;
import org.skife.jdbi.v2.TransactionCallback;
import org.skife.jdbi.v2.TransactionStatus;
import static org.killbill.billing.util.glue.IDBISetup.MAIN_RO_IDBI_NAMED;
public class DefaultNodeInfoDao implements NodeInfoDao {
private final static int CUTTOFF_INTERVAL_SEC = 3 * 60; // 3 minutes
private final DBRouter dbRouter;
private final Clock clock;
@Inject
public DefaultNodeInfoDao(final IDBI dbi, @Named(MAIN_RO_IDBI_NAMED) final IDBI roDbi, final Clock clock) {
this.dbRouter = new DBRouter(dbi, roDbi, NodeInfoSqlDao.class);
this.clock = clock;
}
@Override
public void create(final NodeInfoModelDao nodeInfoModelDao) {
dbRouter.inTransaction(false, new TransactionCallback() {
@Override
public Void inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final Date kbFirstCommit = new DateTime(2011, 10, 28, 0, 0).toDate();
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
if (sqlDao.getByNodeName(nodeInfoModelDao.getNodeName(), kbFirstCommit) != null) {
sqlDao.delete(nodeInfoModelDao.getNodeName());
}
sqlDao.create(nodeInfoModelDao);
return null;
}
});
}
@Override
public void updateNodeInfo(final String nodeName, final String nodeInfo) {
dbRouter.inTransaction(false, new TransactionCallback() {
@Override
public Void inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
final Date updateDate = clock.getUTCNow().toDate();
sqlDao.updateNodeInfo(nodeName, nodeInfo, updateDate);
return null;
}
});
}
@Override
public void setUpdatedDate(final String nodeName) {
dbRouter.inTransaction(false, new TransactionCallback() {
@Override
public Void inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
final Date updateDate = clock.getUTCNow().toDate();
sqlDao.setUpdatedDate(nodeName, updateDate);
return null;
}
});
}
@Override
public void delete(final String nodeName) {
dbRouter.inTransaction(false, new TransactionCallback() {
@Override
public Void inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
sqlDao.delete(nodeName);
return null;
}
});
}
@Override
public List getAll() {
return dbRouter.inTransaction(true, new TransactionCallback>() {
@Override
public List inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
final Date cutoffUpdatedDate = clock.getUTCNow().minusSeconds(CUTTOFF_INTERVAL_SEC).toDate();
return sqlDao.getAll(cutoffUpdatedDate);
}
});
}
@Override
public NodeInfoModelDao getByNodeName(final String nodeName) {
return dbRouter.inTransaction(true, new TransactionCallback() {
@Override
public NodeInfoModelDao inTransaction(final Handle handle, final TransactionStatus status) throws Exception {
final NodeInfoSqlDao sqlDao = handle.attach(NodeInfoSqlDao.class);
final Date cutoffUpdatedDate = clock.getUTCNow().minusSeconds(CUTTOFF_INTERVAL_SEC).toDate();
return sqlDao.getByNodeName(nodeName, cutoffUpdatedDate);
}
});
}
}