blob: f9e554003a5513b4f5d1e773d06d2b183897ee1e [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* Licensed 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 from
*
* 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 edu.uci.ics.asterix.metadata.api;
import java.util.List;
import edu.uci.ics.asterix.om.types.ARecordType;
import edu.uci.ics.asterix.transaction.management.exception.ACIDException;
import edu.uci.ics.asterix.transaction.management.service.logging.TreeLogger;
import edu.uci.ics.hyracks.api.dataflow.value.IBinaryComparatorFactory;
import edu.uci.ics.hyracks.api.dataflow.value.IBinaryHashFunctionFactory;
import edu.uci.ics.hyracks.api.dataflow.value.ITypeTraits;
import edu.uci.ics.hyracks.api.dataflow.value.RecordDescriptor;
import edu.uci.ics.hyracks.storage.am.common.api.ITreeIndex;
/**
* Descriptor interface for a primary or secondary index on metadata datasets.
*/
public interface IMetadataIndex {
public String getDataverseName();
public String getNodeGroupName();
public String getIndexedDatasetName();
public List<String> getPartitioningExpr();
public String getIndexName();
public int getKeyFieldCount();
public int getFieldCount();
public ITypeTraits[] getTypeTraits();
public RecordDescriptor getRecordDescriptor();
public IBinaryComparatorFactory[] getKeyBinaryComparatorFactory();
public IBinaryHashFunctionFactory[] getKeyBinaryHashFunctionFactory();
public int[] getFieldPermutation();
public String getFileNameRelativePath();
public ARecordType getPayloadRecordType();
public void setFileId(int fileId);
public void initTreeLogger(ITreeIndex treeIndex) throws ACIDException;
public int getFileId();
public byte[] getResourceId();
public TreeLogger getTreeLogger();
}