/* * Copyright 2010 Google Inc. * * 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. */ package com.google.appengine.tools.mapreduce.inputs; import com.google.appengine.api.blobstore.BlobKey; import com.google.common.base.Objects; import com.google.common.base.Preconditions; /** * A key for mapreduce mapper over Blobstore. * */ public final class BlobstoreRecordKey { // ------------------------------ FIELDS ------------------------------ private final BlobKey blobKey; private final long offset; // --------------------------- CONSTRUCTORS --------------------------- public BlobstoreRecordKey(BlobKey blobKey, long offset) { Preconditions.checkNotNull(blobKey); Preconditions.checkArgument(offset >= 0); this.blobKey = blobKey; this.offset = offset; } // ------------------------ OVERRIDING METHODS ------------------------ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } BlobstoreRecordKey that = (BlobstoreRecordKey) obj; return offset == that.offset && blobKey.equals(that.blobKey); } @Override public int hashCode() { return Objects.hashCode(blobKey, offset); } @Override public String toString() { return String.format("BlobstoreRecordKey{blobKey=%s, offset=%d}", blobKey, offset); } // --------------------- GETTER / SETTER METHODS --------------------- public BlobKey getBlobKey() { return blobKey; } public long getOffset() { return offset; } }