All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alluxio.client.file.cache.PageInfo Maven / Gradle / Ivy

There is a newer version: 313
Show newest version
/*
 * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
 * (the "License"). You may not use this work except in alluxio.shaded.client.com.liance with the License, which is
 * available at www.apache.alluxio.shaded.client.org.licenses/LICENSE-2.0
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied, as more fully set forth in the License.
 *
 * See the NOTICE file distributed with this work for information regarding copyright ownership.
 */

package alluxio.client.file.cache;

import alluxio.client.file.cache.store.PageStoreDir;
import alluxio.client.quota.CacheScope;

import alluxio.shaded.client.com.google.alluxio.shaded.client.com.on.base.MoreObjects;

import java.util.Objects;
import alluxio.shaded.client.javax.annotation.concurrent.ThreadSafe;

/**
 * A class identifies the information of a single cached page.
 */
@ThreadSafe
public class PageInfo {
  private final PageId mPageId;
  private final long mPageSize;
  private final CacheScope mCacheScope;
  private final PageStoreDir mLocalCacheDir;
  private final long mCreatedTimestamp;

  /**
   * @param pageId page id
   * @param pageSize page size in bytes
   * @param pageStoreDir directory of this page
   */
  public PageInfo(PageId pageId, long pageSize, PageStoreDir pageStoreDir) {
    this(pageId, pageSize, CacheScope.GLOBAL, pageStoreDir);
  }

  /**
   * @param pageId page id
   * @param pageSize page size in bytes
   * @param cacheScope scope of this page
   * @param pageStoreDir directory of this page
   */
  public PageInfo(PageId pageId, long pageSize, CacheScope cacheScope,
                  PageStoreDir pageStoreDir) {
    this(pageId, pageSize, cacheScope, pageStoreDir, System.currentTimeMillis());
  }

  /**
   * @param pageId page id
   * @param pageSize page size in bytes
   * @param cacheScope scope of this page
   * @param pageStoreDir directory of this page
   * @param createdTimestamp created time
   */
  public PageInfo(PageId pageId, long pageSize, CacheScope cacheScope,
      PageStoreDir pageStoreDir, long createdTimestamp) {
    mPageId = pageId;
    mPageSize = pageSize;
    mCacheScope = cacheScope;
    mLocalCacheDir = pageStoreDir;
    mCreatedTimestamp = createdTimestamp;
  }

  /**
   * @return page id
   */
  public PageId getPageId() {
    return mPageId;
  }

  /**
   * @return page size in bytes
   */
  public long getPageSize() {
    return mPageSize;
  }

  /**
   * @return scope of this page
   */
  public CacheScope getScope() {
    return mCacheScope;
  }

  /**
   * @return directory of this page
   */
  public PageStoreDir getLocalCacheDir() {
    return mLocalCacheDir;
  }

  /**
   * @return the created time
   */
  public long getCreatedTimestamp() {
    return mCreatedTimestamp;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PageInfo pageInfo = (PageInfo) o;
    return mPageSize == pageInfo.mPageSize && Objects.equals(mPageId, pageInfo.mPageId)
        && mCacheScope == pageInfo.mCacheScope;
  }

  @Override
  public int hashCode() {
    return Objects.hash(mPageId, mPageSize, mCacheScope);
  }

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this)
        .add("PageId", mPageId)
        .add("PageSize", mPageSize)
        .add("Scope", mCacheScope)
        .add("CreateTimeMs", mCreatedTimestamp)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy