Class DesignerProjectTreeImpl
java.lang.Object
com.inductiveautomation.ignition.common.resourcecollection.AbstractResourceCollection
com.inductiveautomation.ignition.designer.project.DesignerProjectTreeImpl
- All Implemented Interfaces:
ResourceCollection,DesignableProject
public class DesignerProjectTreeImpl
extends AbstractResourceCollection
implements DesignableProject
-
Field Summary
Fields inherited from interface com.inductiveautomation.ignition.common.resourcecollection.ResourceCollection
GLOBAL_PROJECT_NAME, PIPELINE_PROJECT_NAME, PROJECT_NAME_PATTERN, SFC_PROJECT_NAME -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyChange(ProjectChange change) Apply a set of changes, pulled from the gateway, to this project.browse(ResourcePath path) voidcreateResource(Resource resource) Create a new resource.voiddeleteResource(ResourcePath path) Delete the resource at a given path.booleandiscardChanges(ResourcePath path) Discards any local changes for a path.voiddiscardOverrides(ResourcePath path) Discards changes made to overridden resourcesGet a List of all resources in this project and all parent projects.getConflicts(Collection<ChangeOperation> changes) Return the project name where the given ResourcePath is actually defined.Get theResourceCollectionManifestfor this Project.getName()getResource(ResourcePath path) Finds the resource at the given path, using an effective view of the resources in this project chain.Gets the snapshots from the effective resource collection, in reverse order of inheritance (leaf collection first)booleanisChanged(ResourcePath path) booleanisConflict(ResourcePath path) booleanisInherited(ResourcePath path) booleanisLocal(ResourcePath path) booleanisOverridable(ResourcePath path) booleanisOverridden(ResourcePath path) voidmodifyResource(Resource resource) Modify an existing resource.voidnotifyPushComplete(List<ChangeOperation> changesPushed) Notify that a push was completed.voidRemoves allResourceListeners.voidrenameResource(ResourcePath sourcePath, String newName) Rename a resource at the given path.protected ResourceCollectionDiff.EffectiveDiffCall this after one or more resources or manifests have been changed.Methods inherited from class com.inductiveautomation.ignition.common.resourcecollection.AbstractResourceCollection
addResourceListener, getEffectiveResources, getListeners, getResources, getResourcesOfType, hasResourcesOfType, removeResourceListener, updateEffectiveStateMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.designer.project.DesignableProject
createOrModify, createOrModify, createResourceSafe, createResourceSafe, deleteResource, getLocalResource, getLocalResource, isProtected, modifyResource, modifyResourceIfLocal, renameResource, setProtectedMethods inherited from interface com.inductiveautomation.ignition.common.resourcecollection.ResourceCollection
addResourceListener, getDescription, getParent, getResource, getResources, getResourcesOfType, getSingletonResource, getTitle, hasResourcesOfType, isEnabled, isInheritable, isRunnable, removeResourceListener
-
Constructor Details
-
DesignerProjectTreeImpl
-
-
Method Details
-
updateEffectiveState
Description copied from class:AbstractResourceCollectionCall this after one or more resources or manifests have been changed. This will calculate the effective change to the resources and notify listeners.- Overrides:
updateEffectiveStatein classAbstractResourceCollection
-
getResource
Description copied from interface:ResourceCollectionFinds the resource at the given path, using an effective view of the resources in this project chain.- Specified by:
getResourcein interfaceResourceCollection- Parameters:
path- Not null- Returns:
- The matching project resource or empty if not found.
-
browse
- Specified by:
browsein interfaceResourceCollection- Parameters:
path- the resourcePath of the folder to browse- Returns:
- an empty optional if the given path was not found or is not browseable, otherwise its direct children
-
modifyResource
Description copied from interface:DesignableProjectModify an existing resource. Must already exist as a local resource, otherwise this will throw anResourceNotFoundException- Specified by:
modifyResourcein interfaceDesignableProject- Throws:
ResourceNotFoundException
-
createResource
Description copied from interface:DesignableProjectCreate a new resource.Will also create any folders needed along the new resource's path.
- Specified by:
createResourcein interfaceDesignableProject- Throws:
NameInUseException- if the resource's name is is already in use by a local sibling.ResourceNamingException
-
deleteResource
Description copied from interface:DesignableProjectDelete the resource at a given path.- Specified by:
deleteResourcein interfaceDesignableProject- Throws:
ResourceNotFoundException
-
renameResource
Description copied from interface:DesignableProjectRename a resource at the given path.- Specified by:
renameResourcein interfaceDesignableProject- Throws:
ResourceNamingException
-
discardChanges
Description copied from interface:DesignableProjectDiscards any local changes for a path.- Specified by:
discardChangesin interfaceDesignableProject- Returns:
- true if there were changes to discard, false if there were no changes in the first place.
-
discardOverrides
Description copied from interface:DesignableProjectDiscards changes made to overridden resources- Specified by:
discardOverridesin interfaceDesignableProject
-
isLocal
- Specified by:
isLocalin interfaceDesignableProject- Returns:
- True if there is a project resource at the given path that defined in the local project.
-
isChanged
- Specified by:
isChangedin interfaceDesignableProject- Returns:
- True if there is a resource at the given path that has been locally altered.
-
isInherited
- Specified by:
isInheritedin interfaceDesignableProject- Returns:
- True if there is a resource at the given path that is inherited from a parent project
-
isOverridable
- Specified by:
isOverridablein interfaceDesignableProject- Returns:
- False if there is an inherited resource that does not allow overrides. True otherwise.
-
isOverridden
- Specified by:
isOverriddenin interfaceDesignableProject- Returns:
- True if there is a resource at the given path defined in this project that is overriding a resource from a parent project at the same path.
-
isConflict
- Specified by:
isConflictin interfaceDesignableProject- Returns:
- True if there is a resource with a conflicting (but differently cased) name at the given path - see
NameCollisionException
-
getDefiningProject
Description copied from interface:DesignableProjectReturn the project name where the given ResourcePath is actually defined.- Specified by:
getDefiningProjectin interfaceDesignableProject
-
getName
- Specified by:
getNamein interfaceResourceCollection- Returns:
- the name of this Project.
-
getManifest
Description copied from interface:ResourceCollectionGet theResourceCollectionManifestfor this Project.- Specified by:
getManifestin interfaceResourceCollection- Returns:
- the
ResourceCollectionManifestfor this Project.
-
getInheritanceStructure
- Specified by:
getInheritanceStructurein interfaceResourceCollection- Returns:
- A list of all the resource collection manifests that comprise the inheritance chain of this collection. This list is ordered in ascending inheritance order, from leaf first to super-most collection last.
-
getAllResources
Description copied from interface:ResourceCollectionGet a List of all resources in this project and all parent projects.This includes resources belonging to parent projects in the inheritance chain if this is a "stack" of projects. This means that there may be multiple resources for any given
ResourcePath.This project instance may not contain all resources that exist for the project on disk, depending on the
ResourceFilterused to load it.- Specified by:
getAllResourcesin interfaceResourceCollection- Returns:
- all the resources belonging to this project instance, including resources from parent projects.
-
getSnapshots
Description copied from interface:ResourceCollectionGets the snapshots from the effective resource collection, in reverse order of inheritance (leaf collection first)- Specified by:
getSnapshotsin interfaceResourceCollection- Returns:
- A list of Snapshots, one per resource collection represented in the effective project.
-
getChanges
- Specified by:
getChangesin interfaceDesignableProject- Returns:
- The change operations that have occurred on this project since loaded or since the last applyChanges
-
getConflicts
- Specified by:
getConflictsin interfaceDesignableProject- Parameters:
changes- Diff operations applicable to the local project- Returns:
- a collection of the change operations that conflict with local changes
-
applyChange
Apply a set of changes, pulled from the gateway, to this project. For local resources, this will update the "local" reference of the ResourceTreeNode so that further calls to get snapshots will reflect these changes.- Parameters:
change- The change collection to apply.
-
notifyPushComplete
Notify that a push was completed. This is a signal to the project that some resources may no longer be considered modified.- Parameters:
changesPushed- A list of the changes that were pushed, which may be a subset of those retrieved viagetChanges()
-
removeAllProjectResourceListeners
public void removeAllProjectResourceListeners()Removes allResourceListeners. This should only be used when shutting down a designer instance or switching the projects in the designer.
-