aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-07-04 00:34:24 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-07-04 17:00:08 +0200
commit1df148803610cd54f182b8636f01c0e6ece92b19 (patch)
tree8b6d2919ebe3575556b8796fd95a2b89996933ff /sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java
parent1018747567d50056a49aa7c8421d596f18f25344 (diff)
downloadsonarqube-1df148803610cd54f182b8636f01c0e6ece92b19.tar.gz
sonarqube-1df148803610cd54f182b8636f01c0e6ece92b19.zip
Extract module sonar-db
Diffstat (limited to 'sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java')
-rw-r--r--sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java b/sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java
new file mode 100644
index 00000000000..b82ba01dd09
--- /dev/null
+++ b/sonar-db/src/main/java/org/sonar/db/notification/NotificationQueueDao.java
@@ -0,0 +1,83 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.sonar.db.notification;
+
+import java.util.Collections;
+import java.util.List;
+import org.apache.ibatis.session.SqlSession;
+import org.sonar.db.DbSession;
+import org.sonar.db.MyBatis;
+
+public class NotificationQueueDao {
+
+ private final MyBatis mybatis;
+
+ public NotificationQueueDao(MyBatis mybatis) {
+ this.mybatis = mybatis;
+ }
+
+ public void insert(List<NotificationQueueDto> dtos) {
+ DbSession session = mybatis.openSession(true);
+ NotificationQueueMapper mapper = session.getMapper(NotificationQueueMapper.class);
+ try {
+ for (NotificationQueueDto dto : dtos) {
+ mapper.insert(dto);
+ }
+ session.commit();
+ } finally {
+ MyBatis.closeQuietly(session);
+ }
+ }
+
+ public void delete(List<NotificationQueueDto> dtos) {
+ DbSession session = mybatis.openSession(true);
+ NotificationQueueMapper mapper = session.getMapper(NotificationQueueMapper.class);
+ try {
+ for (NotificationQueueDto dto : dtos) {
+ mapper.delete(dto.getId());
+ }
+ session.commit();
+ } finally {
+ MyBatis.closeQuietly(session);
+ }
+ }
+
+ public List<NotificationQueueDto> findOldest(int count) {
+ if (count < 1) {
+ return Collections.emptyList();
+ }
+ SqlSession session = mybatis.openSession(false);
+ try {
+ return session.getMapper(NotificationQueueMapper.class).findOldest(count);
+ } finally {
+ MyBatis.closeQuietly(session);
+ }
+ }
+
+ public long count() {
+ SqlSession session = mybatis.openSession(false);
+ try {
+ return session.getMapper(NotificationQueueMapper.class).count();
+ } finally {
+ MyBatis.closeQuietly(session);
+ }
+ }
+}