use of com.emc.storageos.db.client.model.UnManagedDiscoveredObjects.UnManagedFileSystem in project coprhd-controller by CoprHD.
the class VNXeUnManagedObjectDiscoverer method performStorageUnManagedFSBookKeeping.
private void performStorageUnManagedFSBookKeeping(StorageSystem storageSystem, DbClient dbClient, PartitionManager partitionManager) throws IOException {
// Get all available existing unmanaged FS URIs for this array from DB
URIQueryResultList allAvailableUnManagedFileSystemsInDB = new URIQueryResultList();
dbClient.queryByConstraint(ContainmentConstraint.Factory.getStorageDeviceUnManagedFileSystemConstraint(storageSystem.getId()), allAvailableUnManagedFileSystemsInDB);
Set<URI> unManagedFSInDBSet = new HashSet<URI>();
for (URI uri : allAvailableUnManagedFileSystemsInDB) {
unManagedFSInDBSet.add(uri);
}
SetView<URI> onlyAvailableinDB = Sets.difference(unManagedFSInDBSet, unManagedFilesystemsReturnedFromProvider);
log.info("Diff :" + Joiner.on("\t").join(onlyAvailableinDB));
if (!onlyAvailableinDB.isEmpty()) {
List<UnManagedFileSystem> unManagedFsTobeDeleted = new ArrayList<UnManagedFileSystem>();
Iterator<UnManagedFileSystem> unManagedFs = dbClient.queryIterativeObjects(UnManagedFileSystem.class, new ArrayList<URI>(onlyAvailableinDB));
while (unManagedFs.hasNext()) {
UnManagedFileSystem fs = unManagedFs.next();
if (null == fs || fs.getInactive()) {
continue;
}
log.info("Setting unManagedVolume {} inactive", fs.getId());
fs.setStoragePoolUri(NullColumnValueGetter.getNullURI());
fs.setStorageSystemUri(NullColumnValueGetter.getNullURI());
fs.setInactive(true);
unManagedFsTobeDeleted.add(fs);
}
if (!unManagedFsTobeDeleted.isEmpty()) {
partitionManager.updateAndReIndexInBatches(unManagedFsTobeDeleted, 1000, dbClient, UNMANAGED_FILESYSTEM);
}
}
}
use of com.emc.storageos.db.client.model.UnManagedDiscoveredObjects.UnManagedFileSystem in project coprhd-controller by CoprHD.
the class VNXeUnManagedObjectDiscoverer method createUnManagedFileSystem.
/**
* create StorageFileSystem Info Object
*
* @param unManagedFileSystem
* @param unManagedFileSystemNativeGuid
* @param system
* @param pool
* @param storagePort
* @param fileSystem
* @return UnManagedFileSystem
*/
private UnManagedFileSystem createUnManagedFileSystem(UnManagedFileSystem unManagedFileSystem, String unManagedFileSystemNativeGuid, StorageSystem system, StoragePool pool, StoragePort storagePort, VNXeFileSystem fileSystem, DbClient dbClient) {
boolean created = false;
if (null == unManagedFileSystem) {
unManagedFileSystem = new UnManagedFileSystem();
unManagedFileSystem.setId(URIUtil.createId(UnManagedFileSystem.class));
unManagedFileSystem.setNativeGuid(unManagedFileSystemNativeGuid);
unManagedFileSystem.setStorageSystemUri(system.getId());
unManagedFileSystem.setStoragePoolUri(pool.getId());
unManagedFileSystem.setHasExports(false);
unManagedFileSystem.setHasShares(false);
created = true;
}
Map<String, StringSet> unManagedFileSystemInformation = new HashMap<String, StringSet>();
StringMap unManagedFileSystemCharacteristics = new StringMap();
unManagedFileSystemCharacteristics.put(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_SNAP_SHOT.toString(), Boolean.FALSE.toString());
if (fileSystem.getIsThinEnabled()) {
unManagedFileSystemCharacteristics.put(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_THINLY_PROVISIONED.toString(), Boolean.TRUE.toString());
} else {
unManagedFileSystemCharacteristics.put(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_THINLY_PROVISIONED.toString(), Boolean.FALSE.toString());
}
unManagedFileSystemCharacteristics.put(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_FILESYSTEM_EXPORTED.toString(), Boolean.FALSE.toString());
if (null != system) {
StringSet systemTypes = new StringSet();
systemTypes.add(system.getSystemType());
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.SYSTEM_TYPE.toString(), systemTypes);
}
if (null != pool) {
StringSet pools = new StringSet();
pools.add(pool.getId().toString());
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.STORAGE_POOL.toString(), pools);
StringSet matchedVPools = DiscoveryUtils.getMatchedVirtualPoolsForPool(dbClient, pool.getId(), unManagedFileSystemCharacteristics.get(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_THINLY_PROVISIONED.toString()));
log.debug("Matched Pools : {}", Joiner.on("\t").join(matchedVPools));
if (null == matchedVPools || matchedVPools.isEmpty()) {
// clear all existing supported vpools.
unManagedFileSystem.getSupportedVpoolUris().clear();
} else {
// replace with new StringSet
unManagedFileSystem.getSupportedVpoolUris().replace(matchedVPools);
log.info("Replaced Pools :" + Joiner.on("\t").join(unManagedFileSystem.getSupportedVpoolUris()));
}
}
if (null != storagePort) {
StringSet storagePorts = new StringSet();
storagePorts.add(storagePort.getId().toString());
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.STORAGE_PORT.toString(), storagePorts);
}
unManagedFileSystemCharacteristics.put(UnManagedFileSystem.SupportedFileSystemCharacterstics.IS_INGESTABLE.toString(), Boolean.TRUE.toString());
// Set attributes of FileSystem
StringSet fsPath = new StringSet();
fsPath.add("/" + fileSystem.getName());
StringSet fsMountPath = new StringSet();
fsMountPath.add("/" + fileSystem.getName());
StringSet fsName = new StringSet();
fsName.add(fileSystem.getName());
StringSet fsId = new StringSet();
fsId.add(fileSystem.getId() + "");
unManagedFileSystem.setLabel(fileSystem.getName());
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.NAME.toString(), fsName);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.NATIVE_ID.toString(), fsId);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.DEVICE_LABEL.toString(), fsName);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.PATH.toString(), fsPath);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.MOUNT_PATH.toString(), fsMountPath);
StringSet allocatedCapacity = new StringSet();
String usedCapacity = String.valueOf(fileSystem.getSizeAllocated());
allocatedCapacity.add(usedCapacity);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.ALLOCATED_CAPACITY.toString(), allocatedCapacity);
StringSet provisionedCapacity = new StringSet();
String capacity = String.valueOf(fileSystem.getSizeTotal());
provisionedCapacity.add(capacity);
unManagedFileSystemInformation.put(UnManagedFileSystem.SupportedFileSystemInformation.PROVISIONED_CAPACITY.toString(), provisionedCapacity);
// Add fileSystemInformation and Characteristics.
unManagedFileSystem.addFileSystemInformation(unManagedFileSystemInformation);
unManagedFileSystem.setFileSystemCharacterstics(unManagedFileSystemCharacteristics);
if (created) {
unManagedFilesystemsInsert.add(unManagedFileSystem);
} else {
unManagedFilesystemsUpdate.add(unManagedFileSystem);
}
return unManagedFileSystem;
}
use of com.emc.storageos.db.client.model.UnManagedDiscoveredObjects.UnManagedFileSystem in project coprhd-controller by CoprHD.
the class ImplicitUnManagedObjectsMatcher method matchVirtualPoolsWithUnManagedFileSystems.
public static void matchVirtualPoolsWithUnManagedFileSystems(VirtualPool virtualPool, DbClient dbClient) {
List<UnManagedFileSystem> modifiedUnManagedFileSystems = new ArrayList<UnManagedFileSystem>();
Map<String, StringSet> poolMapping = new HashMap<String, StringSet>();
StringSet invalidPools = null;
// Otherwise use matched pools
if (virtualPool.getUseMatchedPools() && null != virtualPool.getMatchedStoragePools()) {
poolMapping.put(MATCHED, virtualPool.getMatchedStoragePools());
} else if (null != virtualPool.getAssignedStoragePools()) {
poolMapping.put(MATCHED, virtualPool.getAssignedStoragePools());
// Find out the storage pools which are in matched pools but not in assigned pools.
// These pools should not be in the supported vpool list
invalidPools = (StringSet) virtualPool.getMatchedStoragePools().clone();
invalidPools.removeAll(virtualPool.getAssignedStoragePools());
}
if (null != virtualPool.getInvalidMatchedPools()) {
if (invalidPools == null) {
invalidPools = virtualPool.getInvalidMatchedPools();
} else {
invalidPools.addAll(virtualPool.getInvalidMatchedPools());
}
}
if (invalidPools != null) {
poolMapping.put(INVALID, invalidPools);
}
for (Entry<String, StringSet> entry : poolMapping.entrySet()) {
String key = entry.getKey();
for (String pool : entry.getValue()) {
List<URI> unManagedFileSystemUris = dbClient.queryByConstraint(ContainmentConstraint.Factory.getPoolUnManagedFileSystemConstraint(URI.create(pool)));
Iterator<UnManagedFileSystem> unManagedFileSystems = dbClient.queryIterativeObjects(UnManagedFileSystem.class, unManagedFileSystemUris);
while (unManagedFileSystems.hasNext()) {
UnManagedFileSystem unManagedFileSystem = unManagedFileSystems.next();
StringSetMap unManagedFileSystemInfo = unManagedFileSystem.getFileSystemInformation();
if (null == unManagedFileSystemInfo) {
continue;
}
String unManagedFileSystemProvisioningType = UnManagedFileSystem.SupportedProvisioningType.getProvisioningType(unManagedFileSystem.getFileSystemCharacterstics().get(SupportedFileSystemCharacterstics.IS_THINLY_PROVISIONED.toString()));
boolean isNetApp = unManagedFileSystemInfo.get(SupportedFileSystemInformation.SYSTEM_TYPE.toString()).contains(DiscoveredDataObject.Type.netapp.name());
// Ignoring the provisioning type check for NetApp.
if (INVALID.equalsIgnoreCase(key) || ((!isNetApp) && !unManagedFileSystemProvisioningType.equalsIgnoreCase(virtualPool.getSupportedProvisioningType()))) {
if (removeVPoolFromUnManagedVolumeObjectVPools(virtualPool, unManagedFileSystem)) {
modifiedUnManagedFileSystems.add(unManagedFileSystem);
}
} else if (addVPoolToUnManagedObjectSupportedVPools(virtualPool, unManagedFileSystemInfo, unManagedFileSystem, null, null, null)) {
modifiedUnManagedFileSystems.add(unManagedFileSystem);
}
if (modifiedUnManagedFileSystems.size() > FILESHARE_BATCH_SIZE) {
insertInBatches(modifiedUnManagedFileSystems, dbClient, "UnManagedFileSystems");
modifiedUnManagedFileSystems.clear();
}
}
}
}
insertInBatches(modifiedUnManagedFileSystems, dbClient, "UnManagedFileSystems");
}
use of com.emc.storageos.db.client.model.UnManagedDiscoveredObjects.UnManagedFileSystem in project coprhd-controller by CoprHD.
the class FileSystemIngestionUtil method isIngestionRequestValidForUnManagedFileSystems.
/**
* Validation Steps
* 1. validate PreExistingFileSystem uri.
* 2. Check PreExistingFileSystem is under Bourne Management already.
* 3. Check whether given CoS is present in the PreExistingFileSystems Supported CoS List
*
* @param UnManagedFileSystems
* @param cos
* @throws Exception
*/
public static void isIngestionRequestValidForUnManagedFileSystems(List<URI> UnManagedFileSystems, VirtualPool cos, DbClient dbClient) throws DatabaseException {
for (URI unManagedFileSystemUri : UnManagedFileSystems) {
ArgValidator.checkUri(unManagedFileSystemUri);
UnManagedFileSystem unManagedFileSystem = dbClient.queryObject(UnManagedFileSystem.class, unManagedFileSystemUri);
ArgValidator.checkEntityNotNull(unManagedFileSystem, unManagedFileSystemUri, false);
if (null == unManagedFileSystem.getFileSystemCharacterstics() || null == unManagedFileSystem.getFileSystemInformation()) {
continue;
}
StringSetMap unManagedFileSystemInformation = unManagedFileSystem.getFileSystemInformation();
String fileSystemNativeGuid = unManagedFileSystem.getNativeGuid().replace(UNMANAGEDFILESYSTEM, FILESYSTEM);
if (VirtualPoolUtil.checkIfFileSystemExistsInDB(fileSystemNativeGuid, dbClient)) {
throw APIException.internalServerErrors.objectAlreadyManaged("FileSystem", fileSystemNativeGuid);
}
checkStoragePoolValidForUnManagedFileSystemUri(unManagedFileSystemInformation, dbClient, unManagedFileSystemUri);
checkVirtualPoolValidForGivenUnManagedFileSystemUris(unManagedFileSystem.getSupportedVpoolUris(), unManagedFileSystemUri, cos.getId());
// TODO: Today, We bring in all the volumes that are exported.We need to add support to bring in all the related FS exports
// checkUnManagedFileSystemAlreadyExported(unManagedFileSystem);
}
}
use of com.emc.storageos.db.client.model.UnManagedDiscoveredObjects.UnManagedFileSystem in project coprhd-controller by CoprHD.
the class UnManagedFilesystemService method ingestFileSystems.
/**
* UnManaged file systems are file systems, which are present within ViPR
* storage systems,but have not been ingested by ViPR which moves the unmanaged file systems under ViPR management.
*
* File system ingest provides flexibility in bringing unmanaged
* file systems under ViPR management.
* An unmanaged file system must be associated with a virtual pool, project,
* and virtual array before it can be managed by ViPR.
* List of supported virtual pools for each unmanaged file system is exposed using /vdc/unmanaged/filesystems/bulk.
* Using an unsupported virtual pool results in an error
*
* Size of unmanaged file systems which can be ingested via a single API Call
* is limited to 4000.
*
* @param param
* parameters required for unmanaged filesystem ingestion
*
* @prereq none
* @brief Ingest unmanaged file systems
* @throws InternalException
*/
@POST
@Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Path("/ingest")
@CheckPermission(roles = { Role.SYSTEM_ADMIN, Role.RESTRICTED_SYSTEM_ADMIN })
public NamedFileSystemList ingestFileSystems(FileSystemIngest param) throws InternalException {
if ((null == param.getUnManagedFileSystems()) || (param.getUnManagedFileSystems().toString().length() == 0) || (param.getUnManagedFileSystems().isEmpty()) || (param.getUnManagedFileSystems().get(0).toString().isEmpty())) {
throw APIException.badRequests.invalidParameterUnManagedFsListEmpty();
}
if (null == param.getProject() || (param.getProject().toString().length() == 0)) {
throw APIException.badRequests.invalidParameterProjectEmpty();
}
if (null == param.getVarray() || (param.getVarray().toString().length() == 0)) {
throw APIException.badRequests.invalidParameterVirtualArrayEmpty();
}
if (null == param.getVpool() || (param.getVpool().toString().length() == 0)) {
throw APIException.badRequests.invalidParameterVirtualPoolEmpty();
}
if (param.getUnManagedFileSystems().size() > getMaxBulkSize()) {
throw APIException.badRequests.exceedingLimit("unmanaged filesystems", getMaxBulkSize());
}
_logger.info("Ingest called with Virtual Array {}", param.getVarray());
_logger.info("Ingest called with Virtual Pool {}", param.getVpool());
_logger.info("Ingest called with Project {}", param.getProject());
_logger.info("Ingest called with UnManagedFileSystems {}", param.getUnManagedFileSystems());
NamedFileSystemList filesystemList = new NamedFileSystemList();
List<UnManagedFileSystem> unManagedFileSystems = new ArrayList<UnManagedFileSystem>();
try {
// Get and validate the project.
Project project = _permissionsHelper.getObjectById(param.getProject(), Project.class);
ArgValidator.checkUri(param.getProject());
ArgValidator.checkEntity(project, param.getProject(), false);
VirtualArray neighborhood = FileSystemIngestionUtil.getVirtualArrayForFileSystemCreateRequest(project, param.getVarray(), _permissionsHelper, _dbClient);
// Get and validate the VirtualPool.
VirtualPool cos = FileSystemIngestionUtil.getVirtualPoolForFileSystemCreateRequest(project, param.getVpool(), _permissionsHelper, _dbClient);
if (null != cos.getVirtualArrays() && !cos.getVirtualArrays().isEmpty() && !cos.getVirtualArrays().contains(param.getVarray().toString())) {
throw APIException.internalServerErrors.virtualPoolNotMatchingVArray(param.getVarray());
}
// check for Quotas
long unManagedFileSystemsCapacity = FileSystemIngestionUtil.getTotalUnManagedFileSystemCapacity(_dbClient, param.getUnManagedFileSystems());
_logger.info("Requested UnManagedFile System Capacity {}", unManagedFileSystemsCapacity);
TenantOrg tenant = _dbClient.queryObject(TenantOrg.class, project.getTenantOrg().getURI());
CapacityUtils.validateQuotasForProvisioning(_dbClient, cos, project, tenant, unManagedFileSystemsCapacity, "filesystem");
FileSystemIngestionUtil.isIngestionRequestValidForUnManagedFileSystems(param.getUnManagedFileSystems(), cos, _dbClient);
List<FileShare> filesystems = new ArrayList<FileShare>();
Map<URI, FileShare> unManagedFSURIToFSMap = new HashMap<>();
List<FileExportRule> fsExportRules = new ArrayList<FileExportRule>();
List<CifsShareACL> fsCifsShareAcls = new ArrayList<CifsShareACL>();
List<NFSShareACL> fsNfsShareAcls = new ArrayList<NFSShareACL>();
List<UnManagedFileExportRule> inActiveUnManagedExportRules = new ArrayList<UnManagedFileExportRule>();
List<UnManagedCifsShareACL> inActiveUnManagedShareCifs = new ArrayList<UnManagedCifsShareACL>();
List<UnManagedNFSShareACL> inActiveUnManagedShareNfs = new ArrayList<UnManagedNFSShareACL>();
// cifs share acl's
List<CifsShareACL> cifsShareACLList = new ArrayList<CifsShareACL>();
List<URI> full_pools = new ArrayList<URI>();
List<URI> full_systems = new ArrayList<URI>();
Calendar timeNow = Calendar.getInstance();
for (URI unManagedFileSystemUri : param.getUnManagedFileSystems()) {
long softLimit = 0;
int softGrace = 0;
long notificationLimit = 0;
UnManagedFileSystem unManagedFileSystem = _dbClient.queryObject(UnManagedFileSystem.class, unManagedFileSystemUri);
if (null == unManagedFileSystem || null == unManagedFileSystem.getFileSystemCharacterstics() || null == unManagedFileSystem.getFileSystemInformation()) {
_logger.warn("UnManaged FileSystem {} partially discovered, hence not enough information available to validate neither virtualPool nor other criterias.Skipping Ingestion..", unManagedFileSystemUri);
continue;
}
if (unManagedFileSystem.getInactive()) {
_logger.warn("UnManaged FileSystem {} is inactive.Skipping Ingestion..", unManagedFileSystemUri);
continue;
}
if (!FileSystemIngestionUtil.checkVirtualPoolValidForUnManagedFileSystem(_dbClient, cos, unManagedFileSystemUri)) {
continue;
}
StringSetMap unManagedFileSystemInformation = unManagedFileSystem.getFileSystemInformation();
String fsNativeGuid = unManagedFileSystem.getNativeGuid().replace(FileSystemIngestionUtil.UNMANAGEDFILESYSTEM, FileSystemIngestionUtil.FILESYSTEM);
String deviceLabel = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.DEVICE_LABEL.toString(), unManagedFileSystemInformation);
String fsName = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.NAME.toString(), unManagedFileSystemInformation);
URI storagePoolUri = unManagedFileSystem.getStoragePoolUri();
String storagePortUri = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.STORAGE_PORT.toString(), unManagedFileSystemInformation);
String capacity = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.PROVISIONED_CAPACITY.toString(), unManagedFileSystemInformation);
String usedCapacity = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.ALLOCATED_CAPACITY.toString(), unManagedFileSystemInformation);
String nasUri = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.NAS.toString(), unManagedFileSystemInformation);
String path = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.PATH.toString(), unManagedFileSystemInformation);
String mountPath = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.MOUNT_PATH.toString(), unManagedFileSystemInformation);
String nativeId = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.NATIVE_ID.toString(), unManagedFileSystemInformation);
String systemType = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.SYSTEM_TYPE.toString(), unManagedFileSystemInformation);
String softLt = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.SOFT_LIMIT.toString(), unManagedFileSystemInformation);
String softGr = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.SOFT_GRACE.toString(), unManagedFileSystemInformation);
String notificationLt = PropertySetterUtil.extractValueFromStringSet(SupportedFileSystemInformation.NOTIFICATION_LIMIT.toString(), unManagedFileSystemInformation);
if (null != softLt && !softLt.isEmpty()) {
softLimit = Long.valueOf(softLt);
}
if (null != softGr && !softGr.isEmpty()) {
softGrace = Integer.valueOf(softGr);
}
if (null != notificationLt && !notificationLt.isEmpty()) {
notificationLimit = Long.valueOf(notificationLt);
}
Long lcapcity = Long.valueOf(capacity);
Long lusedCapacity = Long.valueOf(usedCapacity);
// pool uri cannot be null
StoragePool pool = _dbClient.queryObject(StoragePool.class, storagePoolUri);
StoragePort port = null;
if (storagePortUri != null) {
port = _dbClient.queryObject(StoragePort.class, URI.create(storagePortUri));
}
StorageHADomain dataMover = null;
if (port != null && port.getStorageHADomain() != null) {
dataMover = _dbClient.queryObject(StorageHADomain.class, port.getStorageHADomain());
}
if (dataMover != null) {
_logger.info("Data Mover to Use {} {} {}", new Object[] { dataMover.getAdapterName(), dataMover.getName(), dataMover.getLabel() });
}
// Check for same name File Share in this project
if (FileSystemIngestionUtil.checkForDuplicateFSName(_dbClient, project.getId(), deviceLabel, filesystems)) {
_logger.info("File System with name: {} already exists in the given project: {} so, ignoring it..", deviceLabel, project.getLabel());
continue;
}
// check ingestion is valid for given project
if (!isIngestUmfsValidForProject(project, _dbClient, nasUri)) {
_logger.info("UnManaged FileSystem path {} is mounted on vNAS URI {} which is invalid for project.", path, nasUri);
continue;
}
// Check for same named File Share in this project
if (FileSystemIngestionUtil.checkForDuplicateFSName(_dbClient, project.getId(), deviceLabel, filesystems)) {
_logger.info("File System with name: {} already exists in given project: {} so, ignoring it..", deviceLabel, project.getLabel());
continue;
}
// if not don't ingest
if (null != pool) {
StringSet taggedVirtualArrays = pool.getTaggedVirtualArrays();
if ((null == taggedVirtualArrays) || (!taggedVirtualArrays.contains(neighborhood.getId().toString()))) {
_logger.warn("UnManaged FileSystem {} storagepool doesn't related to the Virtual Array {}. Skipping Ingestion..", unManagedFileSystemUri, neighborhood.getId().toString());
continue;
}
} else {
_logger.warn("UnManaged FileSystem {} doesn't contain a storagepool. Skipping Ingestiong", unManagedFileSystemUri);
continue;
}
if (full_pools.contains(storagePoolUri)) {
// skip this fileshare
continue;
}
if (pool.getIsResourceLimitSet()) {
if (pool.getMaxResources() <= StoragePoolService.getNumResources(pool, _dbClient)) {
// reached limit for this pool
full_pools.add(storagePoolUri);
continue;
}
}
FileShare filesystem = new FileShare();
filesystem.setId(URIUtil.createId(FileShare.class));
filesystem.setNativeGuid(fsNativeGuid);
filesystem.setCapacity(lcapcity);
filesystem.setUsedCapacity(lusedCapacity);
filesystem.setPath(path);
filesystem.setMountPath(mountPath);
filesystem.setVirtualPool(param.getVpool());
filesystem.setVirtualArray(param.getVarray());
filesystem.setSoftLimit(softLimit);
filesystem.setSoftGracePeriod(softGrace);
filesystem.setNotificationLimit(notificationLimit);
if (nasUri != null) {
filesystem.setVirtualNAS(URI.create(nasUri));
if (!doesNASServerSupportVPoolProtocols(nasUri, cos.getProtocols())) {
_logger.warn("UnManaged FileSystem NAS server {} doesn't support vpool protocols. Skipping Ingestion...", nasUri);
continue;
}
}
if (nativeId != null) {
filesystem.setNativeId(nativeId);
}
URI storageSystemUri = unManagedFileSystem.getStorageSystemUri();
StorageSystem system = _dbClient.queryObject(StorageSystem.class, storageSystemUri);
if (full_systems.contains(storageSystemUri)) {
// skip this fileshare
continue;
}
if (system.getIsResourceLimitSet()) {
if (system.getMaxResources() <= StorageSystemService.getNumResources(system, _dbClient)) {
// reached limit for this system
full_systems.add(storageSystemUri);
continue;
}
}
filesystem.setStorageDevice(storageSystemUri);
filesystem.setCreationTime(timeNow);
filesystem.setPool(storagePoolUri);
filesystem.setProtocol(new StringSet());
StringSet fsSupportedProtocols = new StringSet();
for (StorageProtocol.File fileProtocol : StorageProtocol.File.values()) {
fsSupportedProtocols.add(fileProtocol.name());
}
// fs support protocol which is present in StoragePool and VirtualPool both
fsSupportedProtocols.retainAll(pool.getProtocols());
fsSupportedProtocols.retainAll(cos.getProtocols());
filesystem.getProtocol().addAll(fsSupportedProtocols);
filesystem.setLabel(null == deviceLabel ? "" : deviceLabel);
filesystem.setName(null == fsName ? "" : fsName);
filesystem.setTenant(new NamedURI(project.getTenantOrg().getURI(), filesystem.getLabel()));
filesystem.setProject(new NamedURI(param.getProject(), filesystem.getLabel()));
_logger.info("Un Managed File System {} has exports? : {}", unManagedFileSystem.getId(), unManagedFileSystem.getHasExports());
StoragePort sPort = null;
if (port != null && neighborhood != null) {
if (StorageSystem.Type.isilon.toString().equals(system.getSystemType())) {
sPort = getIsilonStoragePort(port, nasUri, neighborhood.getId());
} else {
sPort = compareAndSelectPortURIForUMFS(system, port, neighborhood);
}
}
/*
* If UMFS storage port is not part of the vArray then skip ingestion
*/
if (sPort == null) {
_logger.warn("Storage port of UMFS {} doesn't belong to a matching NetWork. So skipping ingestion", unManagedFileSystemUri);
continue;
}
_logger.info("Storage Port Found {}", sPort);
filesystem.setPortName(sPort.getPortName());
filesystem.setStoragePort(sPort.getId());
if (unManagedFileSystem.getHasExports()) {
filesystem.setFsExports(PropertySetterUtil.convertUnManagedExportMapToManaged(unManagedFileSystem.getFsUnManagedExportMap(), sPort, dataMover));
_logger.info("Export map for {} = {}", fsName, filesystem.getFsExports());
// Process Exports
// Step 1 : Query them and Retrive associated Exports
List<UnManagedFileExportRule> exports = queryDBFSExports(unManagedFileSystem);
_logger.info("Number of Exports Found : {} for UnManaged Fs path : {}", exports.size(), unManagedFileSystem.getMountPath());
if (exports != null && !exports.isEmpty()) {
for (UnManagedFileExportRule rule : exports) {
// Step 2 : Convert them to File Export Rule
// Step 3 : Keep them as a list to store in db, down the line at a shot
// Important to relate the exports to a
rule.setFileSystemId(filesystem.getId());
// FileSystem.
createRule(rule, fsExportRules);
// Step 4: Update the UnManaged Exports : Set Inactive as true
rule.setInactive(true);
// Step 5 : Keep this list as updated.
inActiveUnManagedExportRules.add(rule);
}
}
}
if (unManagedFileSystem.getHasShares()) {
filesystem.setSMBFileShares(PropertySetterUtil.convertUnManagedSMBMapToManaged(unManagedFileSystem.getUnManagedSmbShareMap(), sPort, dataMover));
_logger.info("Share map for {} = {}", fsName, filesystem.getSMBFileShares());
// Process Exports
// Step 1 : Query them and Retrive associated Exports
List<UnManagedCifsShareACL> cifsACLs = queryDBCifsShares(unManagedFileSystem);
_logger.info("Number of Cifs ACL Found : {} for UnManaged Fs path : {}", cifsACLs.size(), unManagedFileSystem.getMountPath());
if (cifsACLs != null && !cifsACLs.isEmpty()) {
for (UnManagedCifsShareACL umCifsAcl : cifsACLs) {
// Step 2 : Convert them to Cifs Share ACL
// Step 3 : Keep them as a list to store in db, down the line at a shot
// Important to relate the shares to a
umCifsAcl.setFileSystemId(filesystem.getId());
// FileSystem.
createACL(umCifsAcl, fsCifsShareAcls, filesystem);
// Step 4: Update the UnManaged Share ACL : Set Inactive as true
umCifsAcl.setInactive(true);
// Step 5 : Keep this list as updated.
inActiveUnManagedShareCifs.add(umCifsAcl);
}
}
}
if (unManagedFileSystem.getHasNFSAcl()) {
List<UnManagedNFSShareACL> nfsACLs = queryDBNfsShares(unManagedFileSystem);
if (nfsACLs != null && !nfsACLs.isEmpty()) {
for (UnManagedNFSShareACL umNfsAcl : nfsACLs) {
// Step 2 : Convert them to nfs Share ACL
// Step 3 : Keep them as a list to store in db, down the line at a shot
// Important to relate the shares to a
umNfsAcl.setFileSystemId(filesystem.getId());
// FileSystem.
if (umNfsAcl.getPermissions().isEmpty()) {
continue;
}
createNFSACL(umNfsAcl, fsNfsShareAcls, filesystem);
// Step 4: Update the UnManaged Share ACL : Set Inactive as true
umNfsAcl.setInactive(true);
// Step 5 : Keep this list as updated.
inActiveUnManagedShareNfs.add(umNfsAcl);
}
}
}
// Set quota
if (null != unManagedFileSystem.getExtensions() && null != unManagedFileSystem.getExtensions().get(QUOTA)) {
if (null == filesystem.getExtensions()) {
filesystem.setExtensions(new StringMap());
}
filesystem.getExtensions().put(QUOTA, unManagedFileSystem.getExtensions().get(QUOTA));
}
filesystems.add(PropertySetterUtil.addFileSystemDetails(unManagedFileSystemInformation, filesystem));
// Process Export Rules for the validated FS.
filesystemList.getFilesystems().add(toNamedRelatedResource(ResourceTypeEnum.FILE, filesystem.getId(), filesystem.getNativeGuid()));
unManagedFileSystem.setInactive(true);
unManagedFileSystems.add(unManagedFileSystem);
unManagedFSURIToFSMap.put(unManagedFileSystemUri, filesystem);
}
int i = 0;
// Test
for (FileShare fs : filesystems) {
++i;
_logger.info("{} --> Saving FS to DB {}", i, fs);
_logger.info(" --> Fs Storage Pool {} and Virtual Pool {}", fs.getPool(), fs.getVirtualPool());
}
_dbClient.createObject(filesystems);
for (URI unManagedFSURI : param.getUnManagedFileSystems()) {
FileShare fs = unManagedFSURIToFSMap.get(unManagedFSURI);
if (fs != null) {
_logger.debug("ingesting quota directories for filesystem {}", fs.getId());
ingestFileQuotaDirectories(fs);
}
}
i = 0;
// Test
for (FileExportRule rule : fsExportRules) {
++i;
_logger.info("{} --> Saving Export rule to DB {}", i, rule);
}
// Step 6.1 : Update the same in DB & Add new export rules
_dbClient.createObject(fsExportRules);
// Step 6.2 : Update Cifs Acls in DB & Add new ACLs
i = 0;
for (CifsShareACL acl : fsCifsShareAcls) {
++i;
_logger.info("{} --> Saving New Cifs ACL to DB {}", i, acl);
}
if (fsCifsShareAcls != null && !fsCifsShareAcls.isEmpty()) {
_dbClient.createObject(fsCifsShareAcls);
}
// Step 7.1 : Update the same in DB & clean ingested UnManagedCifsACLs
i = 0;
for (UnManagedCifsShareACL acl : inActiveUnManagedShareCifs) {
++i;
_logger.info("{} Updating UnManagedACL DB as InActive TRUE {}", acl);
}
_dbClient.updateObject(inActiveUnManagedShareCifs);
// Step 7.2 : Update the same in DB & clean Unmanaged ExportRule
i = 0;
for (UnManagedFileExportRule rule : inActiveUnManagedExportRules) {
++i;
_logger.info("{} Updating DB as InActive TRUE {}", rule);
}
_dbClient.updateObject(inActiveUnManagedExportRules);
_dbClient.updateObject(unManagedFileSystems);
// Step 8.1 : Update NFS Acls in DB & Add new ACLs
if (fsNfsShareAcls != null && !fsNfsShareAcls.isEmpty()) {
_logger.info("Saving {} NFS ACLs to DB", fsNfsShareAcls.size());
_dbClient.createObject(fsNfsShareAcls);
}
// UnManagedNFSShareACLs
if (inActiveUnManagedShareNfs != null && !inActiveUnManagedShareNfs.isEmpty()) {
_logger.info("Saving {} UnManagedNFS ACLs to DB", inActiveUnManagedShareNfs.size());
_dbClient.updateObject(inActiveUnManagedShareNfs);
}
// record the events after they have been created
for (FileShare filesystem : filesystems) {
recordFileSystemOperation(_dbClient, OperationTypeEnum.INGEST_FILE_SYSTEM, Status.ready, filesystem.getId());
}
} catch (InternalException e) {
throw e;
} catch (Exception e) {
_logger.error("Unexpected exception:", e);
throw APIException.internalServerErrors.genericApisvcError(e.getMessage(), e);
}
return filesystemList;
}
Aggregations