]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3887 fix MySQL compatibility
authorSimon Brandhof <simon.brandhof@gmail.com>
Sun, 21 Oct 2012 19:28:30 +0000 (21:28 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Sun, 21 Oct 2012 19:28:30 +0000 (21:28 +0200)
sonar-core/src/main/java/org/sonar/core/persistence/SemaphoreDao.java
sonar-core/src/main/java/org/sonar/core/persistence/SemaphoreDto.java [new file with mode: 0644]
sonar-core/src/main/java/org/sonar/core/persistence/SemaphoreMapper.java
sonar-core/src/main/resources/org/sonar/core/persistence/SemaphoreMapper.xml
sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
sonar-core/src/test/resources/org/sonar/core/persistence/SemaphoreDaoTest/old_semaphore.xml
sonar-server/src/main/webapp/WEB-INF/db/migrate/350_create_semaphores.rb

index fd92ccc3a0f782af999a724d47fa5acd2ddc0c93..288881f9fac2fc49766f3f313ad7b850f2c26ae5 100644 (file)
@@ -71,7 +71,10 @@ public class SemaphoreDao {
 
   private void initialize(String name, SqlSession session, SemaphoreMapper mapper) {
     try {
-      mapper.initialize(name, org.sonar.api.utils.DateUtils.parseDate("2001-01-01"));
+      SemaphoreDto semaphore = new SemaphoreDto()
+        .setName(name)
+        .setLockedAt(org.sonar.api.utils.DateUtils.parseDate("2001-01-01"));
+      mapper.initialize(semaphore);
       session.commit();
 
     } catch (Exception e) {
diff --git a/sonar-core/src/main/java/org/sonar/core/persistence/SemaphoreDto.java b/sonar-core/src/main/java/org/sonar/core/persistence/SemaphoreDto.java
new file mode 100644 (file)
index 0000000..01f84aa
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2008-2012 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * Sonar 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.
+ *
+ * Sonar 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 Sonar; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
+ */
+package org.sonar.core.persistence;
+
+import org.apache.commons.codec.digest.DigestUtils;
+
+import java.util.Date;
+
+/**
+ * @since 3.4
+ */
+public class SemaphoreDto {
+  private String name;
+  private String checksum;
+  private Date lockedAt;
+
+  public String getName() {
+    return name;
+  }
+
+  public SemaphoreDto setName(String s) {
+    this.name = s;
+    this.checksum = DigestUtils.md5Hex(s);
+    return this;
+  }
+
+  public Date getLockedAt() {
+    return lockedAt;
+  }
+
+  public SemaphoreDto setLockedAt(Date d) {
+    this.lockedAt = d;
+    return this;
+  }
+}
index d77e8cd3c3fcf881137d058cdc2bcd56faa4f0e3..4e862baa61a70f8841a3eac57327a1f8844e7cb7 100644 (file)
@@ -25,7 +25,7 @@ import java.util.Date;
 
 public interface SemaphoreMapper {
 
-  int initialize(@Param("name") String name, @Param("lockedAt") Date lockedAt);
+  int initialize(SemaphoreDto semaphore);
 
   int acquire(@Param("name") String name, @Param("lockedBefore") Date lockedBefore);
 
index ea5f9f1102bd2d904d2bb2c723611c4a89252ef9..bd56b88be1c33302ddc1d9b920fa02843e77c510 100644 (file)
@@ -4,8 +4,8 @@
 <mapper namespace="org.sonar.core.persistence.SemaphoreMapper">
 
   <insert id="initialize" parameterType="map" useGeneratedKeys="false">
-    INSERT INTO semaphores (name, created_at, updated_at, locked_at)
-    VALUES (#{name}, current_timestamp, current_timestamp, #{lockedAt})
+    INSERT INTO semaphores (name, checksum, created_at, updated_at, locked_at)
+    VALUES (#{name}, #{checksum}, current_timestamp, current_timestamp, #{lockedAt})
   </insert>
 
   <select id="now" resultType="Date">
index 91b2f75a0eb578ac1465b870c988fff1c95588e8..152c74226cb752175ea56feea6fd31b954d4b23e 100644 (file)
@@ -508,6 +508,7 @@ CREATE TABLE "AUTHORS" (
 CREATE TABLE "SEMAPHORES" (
   "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
   "NAME" VARCHAR(4000),
+  "CHECKSUM" VARCHAR(200),
   "CREATED_AT" TIMESTAMP,
   "UPDATED_AT" TIMESTAMP,
   "LOCKED_AT" TIMESTAMP
@@ -613,6 +614,6 @@ CREATE INDEX "INDEX_RULE_NOTES_ON_ACTIVE_RULE_ID" ON "RULE_NOTES" ("RULE_ID");
 
 CREATE INDEX "REVIEWS_RID" ON "REVIEWS" ("RESOURCE_ID");
 
-CREATE UNIQUE INDEX "uniq_semaphore_names" ON "SEMAPHORES" ("NAME");
+CREATE UNIQUE INDEX "uniq_semaphore_names" ON "SEMAPHORES" ("CHECKSUM");
 
 CREATE UNIQUE INDEX "uniq_author_logins" ON "AUTHORS" ("LOGIN");
index 3d776e975c0855ad42b5ce074bd9347d89d0753b..903ea7916c7b9f1b86b1919a786f3f9af236786e 100644 (file)
@@ -1,3 +1,3 @@
 <dataset>
-  <semaphores id="1" name="foo" created_at="2010-01-25" updated_at="2010-01-25" locked_at="2010-01-25"/>
+  <semaphores id="1" name="foo" checksum="acbd18db4cc2f85cedef654fccc4a4d8" created_at="2010-01-25" updated_at="2010-01-25" locked_at="2010-01-25"/>
 </dataset>
\ No newline at end of file
index 16e1e5e1bc7cf05732da2270e92a68034aee05a2..fefcabc794cc343e6d9ac1b44b5e19d23ba6538d 100644 (file)
@@ -26,6 +26,7 @@ class CreateSemaphores < ActiveRecord::Migration
   def self.up
     create_table :semaphores do |t|
       t.string :name, :limit => 4000, :null => false
+      t.string :checksum, :limit => 200, :null => false
       t.datetime :locked_at
       t.timestamps
     end