org.filesys.smb.nt.RIDList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfileserver Show documentation
Show all versions of jfileserver Show documentation
Java file server with SMB, FTP/FTPS and NFS support, virtual filesystems, database filesystems
The newest version!
/*
* Copyright (C) 2006-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see .
*/
package org.filesys.smb.nt;
import java.util.ArrayList;
import java.util.List;
/**
* RID List Class
*
* @author gkspencer
*/
public class RIDList {
// List of RID objects
private List m_list;
/**
* Default constructor
*/
public RIDList() {
m_list = new ArrayList();
}
/**
* Add a RID to the list
*
* @param rid RID
*/
public final void addRID(RID rid) {
m_list.add(rid);
}
/**
* Add RIDs from the spefied list to this list
*
* @param list RIDList
*/
public final void addRIDs(RIDList list) {
if (list != null && list.numberOfRIDs() > 0) {
for (int i = 0; i < list.numberOfRIDs(); i++)
addRID(list.getRIDAt(i));
}
}
/**
* Return a RID from the list
*
* @param idx int
* @return RID
*/
public final RID getRIDAt(int idx) {
if (idx < 0 || idx >= m_list.size())
return null;
return m_list.get(idx);
}
/**
* Return the number of RIDs in the list
*
* @return int
*/
public final int numberOfRIDs() {
return m_list.size();
}
/**
* Find the RID with the specified name and type
*
* @param name String
* @param typ int
* @return RID
*/
public final RID findRID(String name, int typ) {
// Search for the required RID
for (int i = 0; i < m_list.size(); i++) {
// Get the current RID
RID curRID = m_list.get(i);
if (curRID.isType() == typ && curRID.getName().equals(name))
return curRID;
}
// RID no found
return null;
}
/**
* Find the RID with the specified id and type
*
* @param id int
* @param typ int
* @return RID
*/
public final RID findRID(int id, int typ) {
// Search for the required RID
for (int i = 0; i < m_list.size(); i++) {
// Get the current RID
RID curRID = m_list.get(i);
if (curRID.getRID() == id && curRID.isType() == typ)
return curRID;
}
// RID no found
return null;
}
/**
* Find the RID with the specified id
*
* @param id int
* @return RID
*/
public final RID findRID(int id) {
// Search for the required RID
for (int i = 0; i < m_list.size(); i++) {
// Get the current RID
RID curRID = m_list.get(i);
if (curRID.getRID() == id)
return curRID;
}
// RID no found
return null;
}
/**
* Remove a RID from the list
*
* @param id int
* @return RID
*/
public final RID removeRID(int id) {
// Search for the RID in the list
for (int i = 0; i < m_list.size(); i++) {
// Get the current RID from the list
RID curRID = m_list.get(i);
if (curRID.getRID() == id) {
// Remove the RID from the list
m_list.remove(i);
// Return the RID
return curRID;
}
}
// RID not found, return null
return null;
}
/**
* Remove all RIDs from the list
*/
public final void removeAllRIDs() {
m_list.clear();
}
/**
* Get the id list
*
* @return int[]
*/
public final int[] getIdList() {
// Allocate the id list array
int[] ids = new int[m_list.size()];
// Copy the relative ids to the array
for (int i = 0; i < m_list.size(); i++) {
RID rid = m_list.get(i);
ids[i] = rid.getRID();
}
// Return the relative ids list
return ids;
}
}