blob: baee401320841a4fb82c3e1d260abecaeec3a0e3 [file] [log] [blame]
/*
* 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.ignite.internal.processors.cache.persistence;
import org.apache.ignite.internal.processors.cache.CacheObject;
import org.apache.ignite.internal.processors.cache.KeyCacheObject;
import org.apache.ignite.internal.processors.cache.tree.DataRow;
import org.apache.ignite.internal.processors.cache.version.GridCacheVersion;
import org.apache.ignite.internal.util.typedef.internal.CU;
import org.jetbrains.annotations.Nullable;
/**
* Data row implementation that can optionally hide the cache identifier and can set {@code null} as value.<br> It is
* used to simplify storing a data row into page memory, because in some cases the cache identifier is not stored on the
* data pages, but is required to link this data row in {@code BPlusTree}.
*/
public class DataRowCacheAware extends DataRow {
/** Flag indicates that cacheId should be stored in data page. */
private boolean storeCacheId;
/**
* @param key Key.
* @param val Value.
* @param ver Version.
* @param part Partition.
* @param expireTime Expire time.
* @param cacheId Cache ID.
* @param storeCacheId Flag indicates that cacheId should be stored in data page.
*/
public DataRowCacheAware(KeyCacheObject key, @Nullable CacheObject val, GridCacheVersion ver, int part,
long expireTime, int cacheId, boolean storeCacheId) {
super(key, val, ver, part, expireTime, cacheId);
storeCacheId(storeCacheId);
}
/**
* @param storeCacheId Flag indicates that cacheId should be stored in data page.
*/
public void storeCacheId(boolean storeCacheId) {
this.storeCacheId = storeCacheId;
}
/** {@inheritDoc} */
@Override public int cacheId() {
return storeCacheId ? cacheId : CU.UNDEFINED_CACHE_ID;
}
/** {@inheritDoc} */
@Override public @Nullable CacheObject value() {
return val;
}
}