Line data Source code
1 : // Copyright (C) 2016 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.schema; 16 : 17 : import com.google.gerrit.exceptions.DuplicateKeyException; 18 : import com.google.gerrit.exceptions.StorageException; 19 : import com.google.gerrit.server.config.GerritServerConfig; 20 : import com.google.gerrit.server.config.SitePaths; 21 : import com.google.gerrit.server.config.ThreadSettingsConfig; 22 : import com.google.inject.Inject; 23 : import com.google.inject.Singleton; 24 : import java.sql.SQLException; 25 : import org.eclipse.jgit.lib.Config; 26 : 27 : @Singleton 28 : public class H2AccountPatchReviewStore extends JdbcAccountPatchReviewStore { 29 : 30 : @Inject 31 : H2AccountPatchReviewStore( 32 : @GerritServerConfig Config cfg, 33 : SitePaths sitePaths, 34 : ThreadSettingsConfig threadSettingsConfig) { 35 138 : super(cfg, sitePaths, threadSettingsConfig); 36 138 : } 37 : 38 : @Override 39 : public StorageException convertError(String op, SQLException err) { 40 0 : switch (getSQLStateInt(err)) { 41 : case 23001: // UNIQUE CONSTRAINT VIOLATION 42 : case 23505: // DUPLICATE_KEY_1 43 0 : return new DuplicateKeyException("account_patch_reviews", err); 44 : 45 : default: 46 0 : if (err.getCause() == null && err.getNextException() != null) { 47 0 : err.initCause(err.getNextException()); 48 : } 49 0 : return new StorageException(op + " failure on account_patch_reviews", err); 50 : } 51 : } 52 : }