/* * (C) 2007-2012 Alibaba Group Holding Limited. * * Licensed 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. * Authors: * wuhua <wq163@163.com> , boyan <killme2008@gmail.com> */ package com.taobao.metamorphosis.server.transaction.store; import java.io.Serializable; /** * ������־����λ�� * * @author boyan(boyan@taobao.com) * @date 2011-8-22 * */ public final class JournalLocation implements Comparable<JournalLocation>, Serializable { public int number; public long offset; static final long serialVersionUID = -1L; public JournalLocation() { super(); } public JournalLocation(final int number, final long offset) { super(); this.number = number; this.offset = offset; } public int getNumber() { return this.number; } public void setNumber(final int number) { this.number = number; } public long getOffset() { return this.offset; } public void setOffset(final long offset) { this.offset = offset; } @Override public int compareTo(final JournalLocation o) { final int rt = this.number - o.number; if (rt != 0) { return rt; } else { if (this.offset > o.offset) { return 1; } else if (this.offset < o.offset) { return -1; } else { return 0; } } } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + this.number; result = prime * result + (int) (this.offset ^ this.offset >>> 32); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (this.getClass() != obj.getClass()) { return false; } final JournalLocation other = (JournalLocation) obj; if (this.number != other.number) { return false; } if (this.offset != other.offset) { return false; } return true; } }