Line data Source code
1 : // Copyright (C) 2017 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 PostgresqlAccountPatchReviewStore extends JdbcAccountPatchReviewStore { 29 : 30 : @Inject 31 : PostgresqlAccountPatchReviewStore( 32 : @GerritServerConfig Config cfg, 33 : SitePaths sitePaths, 34 : ThreadSettingsConfig threadSettingsConfig) { 35 0 : super(cfg, sitePaths, threadSettingsConfig); 36 0 : } 37 : 38 : @Override 39 : public StorageException convertError(String op, SQLException err) { 40 0 : switch (getSQLStateInt(err)) { 41 : case 23505: // DUPLICATE_KEY_1 42 0 : return new DuplicateKeyException("ACCOUNT_PATCH_REVIEWS", err); 43 : 44 : case 23514: // CHECK CONSTRAINT VIOLATION 45 : case 23503: // FOREIGN KEY CONSTRAINT VIOLATION 46 : case 23502: // NOT NULL CONSTRAINT VIOLATION 47 : case 23001: // RESTRICT VIOLATION 48 : default: 49 0 : if (err.getCause() == null && err.getNextException() != null) { 50 0 : err.initCause(err.getNextException()); 51 : } 52 0 : return new StorageException(op + " failure on ACCOUNT_PATCH_REVIEWS", err); 53 : } 54 : } 55 : }