Skip to content

Commit

Permalink
Merge e01c729 into 30cabc7
Browse files Browse the repository at this point in the history
  • Loading branch information
lizhanhui committed Jan 28, 2017
2 parents 30cabc7 + e01c729 commit cc669d8
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 13 deletions.
30 changes: 19 additions & 11 deletions common/src/main/java/org/apache/rocketmq/common/DataVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@
import org.apache.rocketmq.remoting.protocol.RemotingSerializable;

public class DataVersion extends RemotingSerializable {
private long timestatmp = System.currentTimeMillis();
private long timestamp = System.currentTimeMillis();
private AtomicLong counter = new AtomicLong(0);

public void assignNewOne(final DataVersion dataVersion) {
this.timestatmp = dataVersion.timestatmp;
this.timestamp = dataVersion.timestamp;
this.counter.set(dataVersion.counter.get());
}

public void nextVersion() {
this.timestatmp = System.currentTimeMillis();
this.timestamp = System.currentTimeMillis();
this.counter.incrementAndGet();
}

public long getTimestatmp() {
return timestatmp;
public long getTimestamp() {
return timestamp;
}

public void setTimestatmp(long timestatmp) {
this.timestatmp = timestatmp;
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}

public AtomicLong getCounter() {
Expand All @@ -58,16 +58,24 @@ public boolean equals(final Object o) {

final DataVersion that = (DataVersion) o;

if (timestatmp != that.timestatmp)
if (timestamp != that.timestamp) {
return false;
return counter != null ? counter.equals(that.counter) : that.counter == null;
}

if (counter != null && that.counter != null) {
return counter.longValue() == that.counter.longValue();
}

return (null == counter) && (null == that.counter);
}

@Override
public int hashCode() {
int result = (int) (timestatmp ^ (timestatmp >>> 32));
result = 31 * result + (counter != null ? counter.hashCode() : 0);
int result = (int) (timestamp ^ (timestamp >>> 32));
if (null != counter) {
long l = counter.get();
result = 31 * result + (int)(l ^ (l >>> 32));
}
return result;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.rocketmq.common;

import java.util.concurrent.atomic.AtomicLong;
import org.junit.Assert;
import org.junit.Test;

public class DataVersionTest {

@Test
public void testEquals() {
DataVersion dataVersion = new DataVersion();
DataVersion other = new DataVersion();
other.setTimestamp(dataVersion.getTimestamp());
Assert.assertTrue(dataVersion.equals(other));
}

@Test
public void testEquals_falseWhenCounterDifferent() {
DataVersion dataVersion = new DataVersion();
DataVersion other = new DataVersion();
other.setCounter(new AtomicLong(1L));
other.setTimestamp(dataVersion.getTimestamp());
Assert.assertFalse(dataVersion.equals(other));
}

@Test
public void testEquals_falseWhenCounterDifferent2() {
DataVersion dataVersion = new DataVersion();
DataVersion other = new DataVersion();
other.setCounter(null);
other.setTimestamp(dataVersion.getTimestamp());
Assert.assertFalse(dataVersion.equals(other));
}

@Test
public void testEquals_falseWhenCounterDifferent3() {
DataVersion dataVersion = new DataVersion();
dataVersion.setCounter(null);
DataVersion other = new DataVersion();
other.setTimestamp(dataVersion.getTimestamp());
Assert.assertFalse(dataVersion.equals(other));
}

@Test
public void testEquals_trueWhenCountersBothNull() {
DataVersion dataVersion = new DataVersion();
dataVersion.setCounter(null);
DataVersion other = new DataVersion();
other.setCounter(null);
other.setTimestamp(dataVersion.getTimestamp());
Assert.assertTrue(dataVersion.equals(other));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public RemotingCommand registerBrokerWithFilterServer(ChannelHandlerContext ctx,
registerBrokerBody = RegisterBrokerBody.decode(request.getBody(), RegisterBrokerBody.class);
} else {
registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setCounter(new AtomicLong(0));
registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setTimestatmp(0);
registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setTimestamp(0);
}

RegisterBrokerResult result = this.namesrvController.getRouteInfoManager().registerBroker(
Expand Down Expand Up @@ -227,7 +227,7 @@ public RemotingCommand registerBroker(ChannelHandlerContext ctx, RemotingCommand
} else {
topicConfigWrapper = new TopicConfigSerializeWrapper();
topicConfigWrapper.getDataVersion().setCounter(new AtomicLong(0));
topicConfigWrapper.getDataVersion().setTimestatmp(0);
topicConfigWrapper.getDataVersion().setTimestamp(0);
}

RegisterBrokerResult result = this.namesrvController.getRouteInfoManager().registerBroker(
Expand Down

0 comments on commit cc669d8

Please sign in to comment.