Class DataFilesMonitorForTarget
java.lang.Object
org.odpi.openmetadata.adapters.connectors.integration.basicfiles.DirectoryToMonitor
org.odpi.openmetadata.adapters.connectors.integration.basicfiles.DataFilesMonitorForTarget
- All Implemented Interfaces:
FileDirectoryListenerInterface,FileListenerInterface
- Direct Known Subclasses:
OMArchiveFilesMonitorForTarget,OMSecretsFilesMonitorForTarget
Manages the cataloguing of data files for a specific catalog target.
-
Field Summary
Fields inherited from class org.odpi.openmetadata.adapters.connectors.integration.basicfiles.DirectoryToMonitor
allowCatalogDelete, auditLog, canonicalMountPoint, catalogClassifiedFiles, catalogTargetGUID, configurationProperties, connectorName, dataFolderGUID, directoryFile, directoryName, fileSystemName, fileSystemProperties, incidentReportTemplateGUID, incidentReportTemplateQualifiedName, integrationConnector, isListening, localMountPoint, metadataSourceGUID, metadataSourceName, newFileProcessName, propertyHelper, sourceName, templates, toDoTemplateGUID, toDoTemplateQualifiedName, waitForDirectory -
Constructor Summary
ConstructorsConstructorDescriptionDataFilesMonitorForTarget(String connectorName, String sourceName, String pathName, String catalogTargetGUID, String dataFolderGUID, DeleteMethod deleteMethod, Map<String, String> templates, FileSystemProperties fileSystemProperties, Map<String, Object> configurationProperties, BasicFilesMonitorIntegrationConnectorBase integrationConnector, AuditLog auditLog) Construct the monitor for a specific catalog target. -
Method Summary
Modifier and TypeMethodDescriptionprotected StringaddDataFileToCatalog(String typeName, String fileAddress, DataFileProperties properties, DataAssetEncodingProperties encodingProperties, String connectorTypeGUID) Return the unique identifier of a new metadata element describing the file.protected StringaddDataFileViaTemplate(String assetTypeName, String fileTemplateGUID, ElementProperties replacementProperties, Map<String, String> placeholderProperties) Return the unique identifier of a new metadata element describing the file created using the supplied template.protected StringcatalogFile(File file, String methodName) Create a catalog entry for a specific file.voidonDirectoryChange(File directory) Directory changed Event.voidonDirectoryCreate(File directory) Directory created Event.voidonDirectoryDelete(File directory) Directory deleted Event.voidonFileChange(File file) File changed Event.voidonFileCreate(File file) File created Event.voidonFileDelete(File file) File deleted Event.voidrefresh()Requests that the connector does a comparison of the metadata in the third party technology and open metadata repositories.Methods inherited from class org.odpi.openmetadata.adapters.connectors.integration.basicfiles.DirectoryToMonitor
getDataFolderElement
-
Constructor Details
-
DataFilesMonitorForTarget
public DataFilesMonitorForTarget(String connectorName, String sourceName, String pathName, String catalogTargetGUID, String dataFolderGUID, DeleteMethod deleteMethod, Map<String, String> templates, FileSystemProperties fileSystemProperties, Map<String, Object> configurationProperties, BasicFilesMonitorIntegrationConnectorBase integrationConnector, AuditLog auditLog) Construct the monitor for a specific catalog target.- Parameters:
connectorName- name of associated connectorsourceName- source of the pathnamepathName- pathname to the directorycatalogTargetGUID- optional catalog target GUIDdataFolderGUID- optional data folder GUIDdeleteMethod- should the connector use delete or archive?templates- names and GUIDs of templatesfileSystemProperties- properties of the file systemconfigurationProperties- parameters to further modify the behaviour of the connectorintegrationConnector- associated connectorauditLog- logging destination
-
-
Method Details
-
refresh
public void refresh()Requests that the connector does a comparison of the metadata in the third party technology and open metadata repositories. Refresh is called when the integration connector first starts and then at intervals defined in the connector's configuration as well as any external REST API calls to explicitly refresh the connector.
This method performs two sweeps. It first retrieves the files in the directory and validates that are in the catalog - adding or updating them if necessary. The second sweep is to ensure that all the assets catalogued in this directory actually exist on the file system.- Specified by:
refreshin classDirectoryToMonitor
-
onFileCreate
File created Event.- Parameters:
file- The file that was created
-
onFileDelete
Description copied from interface:FileListenerInterfaceFile deleted Event.- Parameters:
file- The file that was deleted
-
onFileChange
File changed Event.- Parameters:
file- The file that changed
-
onDirectoryCreate
Directory created Event.- Parameters:
directory- The directory that was created
-
onDirectoryChange
Directory changed Event.- Parameters:
directory- The directory that changed
-
onDirectoryDelete
Directory deleted Event.- Parameters:
directory- The directory that was deleted
-
catalogFile
Create a catalog entry for a specific file.- Parameters:
file- Java File accessormethodName- calling method- Returns:
- unique identifier of the catalogued element
-
addDataFileToCatalog
protected String addDataFileToCatalog(String typeName, String fileAddress, DataFileProperties properties, DataAssetEncodingProperties encodingProperties, String connectorTypeGUID) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException Return the unique identifier of a new metadata element describing the file.- Parameters:
typeName- subtype name for the file assetfileAddress- local file path nameproperties- basic properties to useencodingProperties- properties for DataAssetEncoding classificationconnectorTypeGUID- unique identifier for the connector type- Returns:
- unique identifier (guid)
- Throws:
InvalidParameterException- invalid parameterPropertyServerException- unable to communicate with the repositoryUserNotAuthorizedException- access problem for userId
-
addDataFileViaTemplate
protected String addDataFileViaTemplate(String assetTypeName, String fileTemplateGUID, ElementProperties replacementProperties, Map<String, String> placeholderProperties) throws ConnectorCheckedException, InvalidParameterException, PropertyServerException, UserNotAuthorizedExceptionReturn the unique identifier of a new metadata element describing the file created using the supplied template.- Parameters:
assetTypeName- type of asset to createfileTemplateGUID- template to usereplacementProperties- properties from the template to replaceplaceholderProperties- values to use to replace placeholders in the template- Returns:
- unique identifier (guid)
- Throws:
ConnectorCheckedException- connector has been shutdownInvalidParameterException- invalid parameterPropertyServerException- unable to communicate with the repositoryUserNotAuthorizedException- access problem for userId
-