blob: c253f47f019def179d3cdbf0649347d8cf1799dc [file] [log] [blame]
/*
Derby - Class org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptorList
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.derby.iapi.sql.dictionary;
import org.apache.derby.iapi.error.StandardException;
import org.apache.derby.catalog.UUID;
import java.util.Iterator;
import java.util.ArrayList;
import java.util.Arrays;
public class ConglomerateDescriptorList extends
ArrayList<ConglomerateDescriptor>
{
/**
* Get a conglomerate descriptor by its number
*
* @param conglomerateNumber The number of the conglomerate we're looking for
*
* @return The ConglomerateDescriptor if found in this list,
* null if not found.
*/
public ConglomerateDescriptor getConglomerateDescriptor(long conglomerateNumber)
{
ConglomerateDescriptor returnValue = null;
for (ConglomerateDescriptor conglomerateDescriptor : this)
{
if (conglomerateNumber == conglomerateDescriptor.getConglomerateNumber())
{
returnValue = conglomerateDescriptor;
break;
}
}
return returnValue;
}
/**
* Get an array of conglomerate descriptors with the given conglomerate
* number. We get more than one descriptors if duplicate indexes share
* one conglomerate.
*
* @param conglomerateNumber The number of the conglomerate
*
* @return Array of ConglomerateDescriptors if found in this list,
* size 0 array if not found.
*/
public ConglomerateDescriptor[] getConglomerateDescriptors(long conglomerateNumber)
{
int size = size(), j = 0;
ConglomerateDescriptor[] draft = new ConglomerateDescriptor[size];
for (ConglomerateDescriptor conglomerateDescriptor : this)
{
if (conglomerateNumber == conglomerateDescriptor.getConglomerateNumber())
draft[j++] = conglomerateDescriptor;
}
if (j == size)
return draft;
return Arrays.copyOf(draft, j);
}
/**
* Get a conglomerate descriptor by its Name
*
* @param conglomerateName The Name of the conglomerate we're looking for
*
* @return The ConglomerateDescriptor if found in this list,
* null if not found.
*/
public ConglomerateDescriptor getConglomerateDescriptor(String conglomerateName)
{
ConglomerateDescriptor returnValue = null;
for (ConglomerateDescriptor conglomerateDescriptor : this)
{
if (conglomerateName.equals(conglomerateDescriptor.getConglomerateName()))
{
returnValue = conglomerateDescriptor;
break;
}
}
return returnValue;
}
/**
* Get a conglomerate descriptor by its UUID String
*
* @param uuid The UUID of the conglomerate we're looking for
*
* @return The ConglomerateDescriptor if found in this list,
* null if not found.
* @exception StandardException thrown on failure
*/
public ConglomerateDescriptor getConglomerateDescriptor(UUID uuid)
throws StandardException
{
ConglomerateDescriptor returnValue = null;
for (ConglomerateDescriptor conglomerateDescriptor : this)
{
if (uuid.equals(conglomerateDescriptor.getUUID()))
{
returnValue = conglomerateDescriptor;
break;
}
}
return returnValue;
}
/**
* Get an array of conglomerate descriptors by a UUID String. We get
* more than one descriptors if duplicate indexes share one conglomerate.
*
* @param uuid The UUID of the conglomerate
*
* @return Array of ConglomerateDescriptors if found in this list,
* size 0 array if not found.
*/
public ConglomerateDescriptor[] getConglomerateDescriptors(UUID uuid)
{
int size = size(), j = 0;
ConglomerateDescriptor[] draft = new ConglomerateDescriptor[size];
for (ConglomerateDescriptor conglomerateDescriptor : this)
{
if (uuid.equals(conglomerateDescriptor.getUUID()))
draft[j++] = conglomerateDescriptor;
}
if (j == size)
return draft;
return Arrays.copyOf(draft, j);
}
/**
* Remove the specified conglomerate descriptor from the
* conglomerate descriptor list. If the descriptor
* is not found, no errors are issued.
*
* @param tableID table uuid, ignored
* @param cgDesc the conglomerate
*
* @exception StandardException thrown on failure
*/
public void dropConglomerateDescriptor(UUID tableID, ConglomerateDescriptor cgDesc)
throws StandardException
{
Iterator<ConglomerateDescriptor> iterator = iterator();
while (iterator.hasNext())
{
ConglomerateDescriptor localCgDesc = iterator.next();
if (localCgDesc.getConglomerateNumber() == cgDesc.getConglomerateNumber() &&
localCgDesc.getConglomerateName().equals(cgDesc.getConglomerateName()) &&
localCgDesc.getSchemaID().equals(cgDesc.getSchemaID()))
{
iterator.remove();
break;
}
}
}
/**
* Remove the specified conglomerate descriptor from the
* conglomerate descriptor list. If the descriptor
* is not found, no errors are issued.
*
* @param conglomerateID table uuid, ignored
*
* @exception StandardException thrown on failure
*/
public void dropConglomerateDescriptorByUUID(UUID conglomerateID)
throws StandardException
{
Iterator<ConglomerateDescriptor> iterator = iterator();
while (iterator.hasNext())
{
ConglomerateDescriptor localCgDesc = iterator.next();
if ( conglomerateID.equals( localCgDesc.getUUID() ) )
{
iterator.remove();
break;
}
}
}
}