Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8D279172F8 for ; Sun, 17 Jan 2016 00:18:16 +0000 (UTC) Received: (qmail 27031 invoked by uid 500); 17 Jan 2016 00:18:16 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 26989 invoked by uid 500); 17 Jan 2016 00:18:16 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 26980 invoked by uid 99); 17 Jan 2016 00:18:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Jan 2016 00:18:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3461BE045B; Sun, 17 Jan 2016 00:18:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stack@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-15115 Fix findbugs complaints in hbase-client Date: Sun, 17 Jan 2016 00:18:16 +0000 (UTC) Repository: hbase Updated Branches: refs/heads/branch-1 032f5574b -> d9fd87d5a HBASE-15115 Fix findbugs complaints in hbase-client Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/d9fd87d5 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d9fd87d5 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d9fd87d5 Branch: refs/heads/branch-1 Commit: d9fd87d5a8b8593ec2ec275b0395bd872d19cf04 Parents: 032f557 Author: stack Authored: Fri Jan 15 10:25:49 2016 -0800 Committer: stack Committed: Sat Jan 16 16:14:13 2016 -0800 ---------------------------------------------------------------------- .../hadoop/hbase/client/MetricsConnection.java | 2 +- .../hbase/client/RetriesExhaustedException.java | 3 +-- .../RetryingCallerInterceptorFactory.java | 2 ++ .../hadoop/hbase/filter/FuzzyRowFilter.java | 8 ++----- .../hadoop/hbase/filter/LongComparator.java | 2 -- .../hbase/filter/MultiRowRangeFilter.java | 2 ++ .../apache/hadoop/hbase/ipc/RpcClientImpl.java | 24 ++++++++++++++------ .../hadoop/hbase/protobuf/RequestConverter.java | 2 +- 8 files changed, 26 insertions(+), 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java index 2f31a38..df279c6 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java @@ -103,7 +103,7 @@ public class MetricsConnection { } @VisibleForTesting - protected final class CallTracker { + protected static final class CallTracker { private final String name; @VisibleForTesting final Timer callTimer; @VisibleForTesting final Histogram reqHist; http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedException.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedException.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedException.java index 556b0a7..7426c95 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedException.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedException.java @@ -85,8 +85,7 @@ public class RetriesExhaustedException extends IOException { public RetriesExhaustedException(final int numTries, final List exceptions) { super(getMessage(numTries, exceptions), - (exceptions != null && !exceptions.isEmpty() ? - exceptions.get(exceptions.size() - 1).t : null)); + exceptions.isEmpty()? null: exceptions.get(exceptions.size() - 1).t); } private static String getMessage(String callableVitals, int numTries, http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetryingCallerInterceptorFactory.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetryingCallerInterceptorFactory.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetryingCallerInterceptorFactory.java index 3fa4f64..9d0ca1d 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetryingCallerInterceptorFactory.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetryingCallerInterceptorFactory.java @@ -59,6 +59,8 @@ class RetryingCallerInterceptorFactory { * {@link RetryingCallerInterceptor} object according to the * configuration. */ + @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="REC_CATCH_EXCEPTION", + justification="Convert thrown exception to unchecked") public RetryingCallerInterceptor build() { RetryingCallerInterceptor ret = NO_OP_INTERCEPTOR; if (failFast) { http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FuzzyRowFilter.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FuzzyRowFilter.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FuzzyRowFilter.java index 0158680..8669b18 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FuzzyRowFilter.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FuzzyRowFilter.java @@ -186,12 +186,8 @@ public class FuzzyRowFilter extends FilterBase { @Override public int compare(Pair> o1, Pair> o2) { - int compare = Bytes.compareTo(o1.getFirst(), o2.getFirst()); - if (!isReversed()) { - return compare; - } else { - return -compare; - } + return isReversed()? Bytes.compareTo(o2.getFirst(), o1.getFirst()): + Bytes.compareTo(o1.getFirst(), o2.getFirst()); } }); } http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/LongComparator.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/LongComparator.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/LongComparator.java index 91eef6a..947c9da 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/LongComparator.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/LongComparator.java @@ -80,8 +80,6 @@ public class LongComparator extends ByteArrayComparable { */ boolean areSerializedFieldsEqual(LongComparator other) { if (other == this) return true; - if (!(other instanceof LongComparator)) return false; - return super.areSerializedFieldsEqual(other); } } http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.java index 7efda86..9df5249 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.java @@ -499,6 +499,8 @@ public class MultiRowRangeFilter extends FilterBase { } @Override + @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="EQ_COMPARETO_USE_OBJECT_EQUALS", + justification="This compareTo is not of this Object, but of referenced RowRange") public int compareTo(RowRange other) { return Bytes.compareTo(this.startRow, other.startRow); } http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java index 1509f54..82ff5a9 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java @@ -383,7 +383,7 @@ public class RpcClientImpl extends AbstractRpcClient { } } - private UserInformation getUserInfo(UserGroupInformation ugi) { + private synchronized UserInformation getUserInfo(UserGroupInformation ugi) { if (ugi == null || authMethod == AuthMethod.DIGEST) { // Don't send user for token auth return null; @@ -804,7 +804,9 @@ public class RpcClientImpl extends AbstractRpcClient { byte [] preamble = new byte [rpcHeaderLen + 2]; System.arraycopy(HConstants.RPC_HEADER, 0, preamble, 0, rpcHeaderLen); preamble[rpcHeaderLen] = HConstants.RPC_CURRENT_VERSION; - preamble[rpcHeaderLen + 1] = authMethod.code; + synchronized (this) { + preamble[rpcHeaderLen + 1] = authMethod.code; + } outStream.write(preamble); outStream.flush(); } @@ -880,6 +882,8 @@ public class RpcClientImpl extends AbstractRpcClient { * threads. * @see #readResponse() */ + @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="IS2_INCONSISTENT_SYNC", + justification="Findbugs is misinterpreting locking missing fact that this.outLock is held") private void writeRequest(Call call, final int priority, Span span) throws IOException { RequestHeader.Builder builder = RequestHeader.newBuilder(); builder.setCallId(call.id); @@ -913,8 +917,8 @@ public class RpcClientImpl extends AbstractRpcClient { checkIsOpen(); // Now we're checking that it didn't became idle in between. try { - call.callStats.setRequestSizeBytes( - IPCUtil.write(this.out, header, call.param, cellBlock)); + call.callStats.setRequestSizeBytes(IPCUtil.write(this.out, header, call.param, + cellBlock)); } catch (IOException e) { // We set the value inside the synchronized block, this way the next in line // won't even try to write. Otherwise we might miss a call in the calls map? @@ -932,14 +936,20 @@ public class RpcClientImpl extends AbstractRpcClient { // We added a call, and may be started the connection close. In both cases, we // need to notify the reader. - synchronized (this) { - notifyAll(); - } + doNotify(); // Now that we notified, we can rethrow the exception if any. Otherwise we're good. if (writeException != null) throw writeException; } + @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="NN_NAKED_NOTIFY", + justification="Presume notifyAll is because we are closing/shutting down") + private synchronized void doNotify() { + // Make a separate method so can do synchronize and add findbugs annotation; only one + // annotation at at time in source 1.7. + notifyAll(); // Findbugs: NN_NAKED_NOTIFY + } + /* Receive a response. * Because only one receiver, so no synchronization on in. */ http://git-wip-us.apache.org/repos/asf/hbase/blob/d9fd87d5/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java index 74c18b0..96f5d9e 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java @@ -495,7 +495,7 @@ public final class RequestConverter { builder.setScan(ProtobufUtil.toScan(scan)); builder.setClientHandlesPartials(true); builder.setClientHandlesHeartbeats(true); - builder.setTrackScanMetrics(scan != null && scan.isScanMetricsEnabled()); + builder.setTrackScanMetrics(scan.isScanMetricsEnabled()); return builder.build(); }