blob: 5914ae52fd8408cf4256f8eb3ece5d881f8b632f [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.freelist;
import java.util.Collection;
import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.IgniteLogger;
import org.apache.ignite.internal.metric.IoStatisticsHolder;
import org.apache.ignite.internal.processors.cache.persistence.Storable;
import org.apache.ignite.internal.processors.cache.persistence.tree.util.PageHandler;
/**
*/
public interface FreeList<T extends Storable> {
/**
* @param row Row.
* @param statHolder Statistics holder to track IO operations.
* @throws IgniteCheckedException If failed.
*/
public void insertDataRow(T row, IoStatisticsHolder statHolder) throws IgniteCheckedException;
/**
* @param rows Rows.
* @param statHolder Statistics holder to track IO operations.
* @throws IgniteCheckedException If failed.
*/
public void insertDataRows(Collection<T> rows, IoStatisticsHolder statHolder) throws IgniteCheckedException;
/**
* @param link Row link.
* @param row New row data.
* @param statHolder Statistics holder to track IO operations.
* @return {@code True} if was able to update row.
* @throws IgniteCheckedException If failed.
*/
public boolean updateDataRow(long link, T row, IoStatisticsHolder statHolder) throws IgniteCheckedException;
/**
* @param link Row link.
* @param pageHnd Page handler.
* @param arg Handler argument.
* @param <S> Argument type.
* @param <R> Result type.
* @param statHolder Statistics holder to track IO operations.
* @return Result.
* @throws IgniteCheckedException If failed.
*/
public <S, R> R updateDataRow(long link, PageHandler<S, R> pageHnd, S arg, IoStatisticsHolder statHolder)
throws IgniteCheckedException;
/**
* @param link Row link.
* @param statHolder Statistics holder to track IO operations.
* @throws IgniteCheckedException If failed.
*/
public void removeDataRowByLink(long link, IoStatisticsHolder statHolder) throws IgniteCheckedException;
/**
* @param log Logger.
*/
public void dumpStatistics(IgniteLogger log);
}