blob: 21a2055de73880548f7de7dc64549df5dba2e124 [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.freelist.io.PagesListNodeIO;
import org.apache.ignite.internal.util.typedef.internal.S;
/**
*
*/
public class PagesListSetPreviousRecord extends PageDeltaRecord {
/** */
private final long prevPageId;
/**
* @param grpId Cache group ID.
* @param pageId Page ID.
* @param prevPageId Previous page ID.
*/
public PagesListSetPreviousRecord(int grpId, long pageId, long prevPageId) {
super(grpId, pageId);
this.prevPageId = prevPageId;
}
/**
* @return Previous page ID.
*/
public long previousPageId() {
return prevPageId;
}
/** {@inheritDoc} */
@Override public void applyDelta(PageMemory pageMem, long pageAddr) throws IgniteCheckedException {
PagesListNodeIO io = PagesListNodeIO.VERSIONS.forPage(pageAddr);
io.setPreviousId(pageAddr, prevPageId);
}
/** {@inheritDoc} */
@Override public RecordType type() {
return RecordType.PAGES_LIST_SET_PREVIOUS;
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(PagesListSetPreviousRecord.class, this, "super", super.toString());
}
}