blob: 907f4c09aa96bbc42bda68c45cd73fe18be60ffc [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.pagemem.wal.record.delta;
import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.internal.pagemem.PageMemory;
import org.apache.ignite.internal.processors.cache.persistence.tree.io.DataPageIO;
import org.apache.ignite.internal.processors.cache.persistence.tree.io.PageIO;
import org.apache.ignite.internal.util.typedef.internal.S;
/**
* MVCC mark updated record.
*/
public class DataPageMvccMarkUpdatedRecord extends PageDeltaRecord {
/** */
private int itemId;
/** */
private long newMvccCrd;
/** */
private long newMvccCntr;
/** */
private int newMvccOpCntr;
/**
* @param grpId Cache group ID.
* @param pageId Page ID.
* @param itemId Item id.
* @param newMvccCrd New MVCC coordinator version.
* @param newMvccCntr New MVCC counter version.
* @param newMvccOpCntr New MVCC operation counter.
*/
public DataPageMvccMarkUpdatedRecord(int grpId, long pageId, int itemId, long newMvccCrd, long newMvccCntr, int newMvccOpCntr) {
super(grpId, pageId);
this.itemId = itemId;
this.newMvccCrd = newMvccCrd;
this.newMvccCntr = newMvccCntr;
this.newMvccOpCntr = newMvccOpCntr;
}
/** {@inheritDoc} */
@Override public void applyDelta(PageMemory pageMem, long pageAddr) throws IgniteCheckedException {
DataPageIO io = PageIO.getPageIO(pageAddr);
io.updateNewVersion(pageAddr, itemId, pageMem.realPageSize(groupId()), newMvccCrd, newMvccCntr, newMvccOpCntr);
}
/** {@inheritDoc} */
@Override public RecordType type() {
return RecordType.MVCC_DATA_PAGE_MARK_UPDATED_RECORD;
}
/**
* @return Item id.
*/
public int itemId() {
return itemId;
}
/**
* @return New MVCC coordinator version.
*/
public long newMvccCrd() {
return newMvccCrd;
}
/**
* @return New MVCC counter version.
*/
public long newMvccCntr() {
return newMvccCntr;
}
/**
* @return New MVCC operation counter.
*/
public int newMvccOpCntr() {
return newMvccOpCntr;
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(DataPageMvccMarkUpdatedRecord.class, this, "super", super.toString());
}
}