blob: 5de4114002705f2d060f40c5b4c8cdb3fde9349d [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2009 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.framework.skynet.core;
import org.eclipse.osee.framework.core.data.ArtifactToken;
import org.eclipse.osee.framework.core.data.ArtifactTypeToken;
import org.eclipse.osee.framework.core.data.BranchId;
import org.eclipse.osee.framework.core.data.BranchToken;
import org.eclipse.osee.framework.core.enums.CoreArtifactTokens;
import org.eclipse.osee.framework.core.exception.ArtifactDoesNotExist;
import org.eclipse.osee.framework.jdk.core.util.Strings;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactTypeManager;
import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
/**
* Simple creation and access point for artifact instances required by the framework
*
* @author Ryan D. Brooks
*/
public final class OseeSystemArtifacts {
public static Artifact getGlobalPreferenceArtifact() {
return ArtifactQuery.getArtifactFromToken(CoreArtifactTokens.GlobalPreferences);
}
public static Artifact getDefaultHierarchyRootArtifact(BranchId branch) {
return ArtifactQuery.getArtifactFromId(CoreArtifactTokens.DefaultHierarchyRoot, branch);
}
/**
* @return the artifact specified by type, name, and branch from the cache if available otherwise the datastore is
* accessed, and finally a new artifact is created if it can not be found
*/
public static Artifact getOrCreateArtifact(ArtifactTypeToken artifactType, String artifactName, BranchToken branch) {
return getOrCreateCachedArtifact(artifactType, artifactName, branch, null, true);
}
public static Artifact getOrCreateArtifact(ArtifactToken artifactToken, BranchToken branch) {
return getOrCreateCachedArtifact(artifactToken.getArtifactType(), artifactToken.getName(), branch,
artifactToken.getGuid(), artifactToken.getUuid(), true);
}
public static Artifact getCachedArtifact(ArtifactTypeToken artifactType, String artifactName, BranchToken branch) {
return getOrCreateCachedArtifact(artifactType, artifactName, branch, null, false);
}
private static Artifact getOrCreateCachedArtifact(ArtifactTypeToken artifactType, String artifactName, BranchToken branch, String guid, boolean create) {
return getOrCreateCachedArtifact(artifactType, artifactName, branch, guid, null, create);
}
private static Artifact getOrCreateCachedArtifact(ArtifactTypeToken artifactType, String artifactName, BranchToken branch, String guid, Long uuid, boolean create) {
Artifact artifact = ArtifactQuery.checkArtifactFromTypeAndName(artifactType, artifactName, branch);
if (artifact == null && create) {
if (Strings.isValid(guid) && uuid != null && uuid > 0) {
artifact = ArtifactTypeManager.addArtifact(artifactType, branch, artifactName, guid, uuid);
} else if (Strings.isValid(guid)) {
artifact = ArtifactTypeManager.addArtifact(artifactType, branch, artifactName, guid);
} else if (uuid != null && uuid > 0) {
artifact = ArtifactTypeManager.addArtifact(artifactType, branch, artifactName, uuid);
} else {
artifact = ArtifactTypeManager.addArtifact(artifactType, branch, artifactName);
}
}
if (artifact == null) {
throw new ArtifactDoesNotExist("Artifact of type [%s] with name [%s] does not exist on branch [%s]",
artifactType, artifactName, branch);
}
return artifact;
}
}