当前位置: 首页>>代码示例>>Python>>正文


Python InventoryUtils.copyRemoteFileToLocal方法代码示例

本文整理汇总了Python中InventoryUtils.copyRemoteFileToLocal方法的典型用法代码示例。如果您正苦于以下问题:Python InventoryUtils.copyRemoteFileToLocal方法的具体用法?Python InventoryUtils.copyRemoteFileToLocal怎么用?Python InventoryUtils.copyRemoteFileToLocal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在InventoryUtils的用法示例。


在下文中一共展示了InventoryUtils.copyRemoteFileToLocal方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: downloadRemoteScanFile

# 需要导入模块: import InventoryUtils [as 别名]
# 或者: from InventoryUtils import copyRemoteFileToLocal [as 别名]
def downloadRemoteScanFile(Framework):
    remoteScanFileLocation = Framework.getProperty(InventoryUtils.STATE_PROPERTY_REMOTE_SCAN_FILE_LOCATION)

    # download scanner log file before downloading scan file
    downloadScanLogFile(Framework)

    if remoteScanFileLocation is None:
        logger.debug("No scan file to downloaded from current execution")
        return None

    logger.debug("About to download scan file from current execution:", remoteScanFileLocation)
    extension = InventoryUtils.getFileExtension(remoteScanFileLocation)
    localScanFileName = InventoryUtils.generateScanFileName(Framework, extension)

    # folder for scan files
    localScanFileFolderPath = (
        CollectorsParameters.PROBE_MGR_INVENTORY_XMLENRICHER_FILES_FOLDER + XmlEnricherConstants.INCOMING_FOLDER_NAME
    )

    downloadedScanFilesDir = File(localScanFileFolderPath)
    downloadedScanFilesDir.mkdirs()

    # this scan file will be created after downloading from remote machine
    targetScanFile = File(downloadedScanFilesDir, localScanFileName)

    # get file to the local machine
    logger.debug("Scan file to be downloaded to location:", targetScanFile.getCanonicalPath())
    if not InventoryUtils.copyRemoteFileToLocal(Framework, remoteScanFileLocation, targetScanFile.getCanonicalPath()):
        return None
    return targetScanFile
开发者ID:ddonnelly19,项目名称:dd-git,代码行数:32,代码来源:DownloadScanFile.py

示例2: backupSWUtilizationConfig

# 需要导入模块: import InventoryUtils [as 别名]
# 或者: from InventoryUtils import copyRemoteFileToLocal [as 别名]
def backupSWUtilizationConfig(Framework):
	# keep remote ini files
	BASEDIR = AgentPlatformParameters.getAgentConfigurationPath(Framework)

	localDiscusgeFile = File.createTempFile("discusge" + str(System.currentTimeMillis()) + Framework.getTriggerCIData('id'), ".ini")
	remoteDiscusgeFile = BASEDIR + "discusge.ini"

	if InventoryUtils.copyRemoteFileToLocal(Framework, remoteDiscusgeFile, localDiscusgeFile.getCanonicalPath(), 0, 1):
		Framework.setProperty("local_discusge_temp_file", localDiscusgeFile.getCanonicalPath())
	else :
		Framework.reportWarning("backup discusge.ini file in remote server failed, upgrade agent will use default configuration.")

	localPluginFile = File.createTempFile("plugin" + str(System.currentTimeMillis()) + Framework.getTriggerCIData('id'), ".ini")
	remotePluginFile = BASEDIR + "plugin.ini"

	if InventoryUtils.copyRemoteFileToLocal(Framework, remotePluginFile, localPluginFile.getCanonicalPath(), 0, 1):
		Framework.setProperty("local_plugin_temp_file", localPluginFile.getCanonicalPath())
	else :
		Framework.reportWarning("backup discusge.ini file in remote server failed, upgrade agent will use default configuration.")

	Framework.setStepExecutionStatus(WorkflowStepStatus.SUCCESS)
开发者ID:ddonnelly19,项目名称:dd-git,代码行数:23,代码来源:BackupSWUtilizationConfig.py

示例3: checkScanFileExistance

# 需要导入模块: import InventoryUtils [as 别名]
# 或者: from InventoryUtils import copyRemoteFileToLocal [as 别名]
def checkScanFileExistance(Framework):
	# this step is always finished with success since we DON'T require scan file from previous execution, just nice to have
	Framework.setStepExecutionStatus(WorkflowStepStatus.SUCCESS)
	DownloadScanFileBeforeExecution = Boolean.parseBoolean(Framework.getParameter('DownloadScanFileBeforeExecution'))
	if DownloadScanFileBeforeExecution:
		try:
			client = Framework.getConnectedClient()
			options = LockUtils.getClientOptionsMap(client)
			previousExecutionStarted = options.get(InventoryUtils.STATE_PROPERTY_EXECUTION_STARTED)
			
			if (previousExecutionStarted is None) or (len(previousExecutionStarted.strip()) == 0):
				logger.debug('Previous execution timestamp no found, continuing with workflow')
				return
				
			remoteScanFileLocation = options.get(InventoryUtils.AGENT_OPTION_DISCOVERY_SCANFILENAME)
			if not InventoryUtils.isPathValid(remoteScanFileLocation):
				logger.debug('No scan file path found on remote machine, continuing with workflow')
				return
			
			lastSuccessExecuton = Framework.getState().getJobLastSuccessfulRun()
			
			logger.debug('Last success execution ' + str(lastSuccessExecuton))
			logger.debug('Remote scan file execution ' + str(previousExecutionStarted))

			if long(lastSuccessExecuton) > long(previousExecutionStarted):
				logger.debug('Scan file on probe side is newer than on remote machine, skipping downloading')
				return
				
			logger.debug('Last success execution ' + str(lastSuccessExecuton) + ' older than scan file on remote machine ' + str(remoteScanFileLocation) + '. Going to download scan file:' + str(remoteScanFileLocation))

			tempScanFileFolder = CollectorsParameters.PROBE_MGR_TEMPDOWNLOAD + Framework.getDiscoveryJobId() + CollectorsParameters.FILE_SEPARATOR
			File(tempScanFileFolder).mkdirs()
			
			extension = InventoryUtils.getFileExtension(remoteScanFileLocation)
			tempScanFileName = InventoryUtils.generateScanFileName(Framework, extension)

			tempScanFile = File(tempScanFileFolder, tempScanFileName)
			tempScanFilePath = tempScanFile.getCanonicalPath()
			
			logger.debug('Try to download scan file to the:', tempScanFilePath)

			if not InventoryUtils.copyRemoteFileToLocal(Framework, remoteScanFileLocation, tempScanFilePath, 0):
				logger.debug('Failed to download scan file before current execution')
			
			Framework.setProperty(InventoryUtils.STATE_PROPERTY_TEMP_SCAN_FILE, tempScanFilePath)
		except:
			reason = str(sys.exc_info()[1])
			logger.debug('Failed to check/download scan file from previous execution. Reason:', reason)
	else:
		logger.debug('Even not checking whether scan file exists on remote machine or not.')
开发者ID:ddonnelly19,项目名称:dd-git,代码行数:52,代码来源:CheckScanFileExistence.py

示例4: getLogFileContent

# 需要导入模块: import InventoryUtils [as 别名]
# 或者: from InventoryUtils import copyRemoteFileToLocal [as 别名]
def getLogFileContent(Framework, localFile, remotePath):
    localPath = localFile.getCanonicalPath()
    logger.debug('Going to download remote agent log file ', remotePath, ' to local path:', localPath)
    if not InventoryUtils.copyRemoteFileToLocal(Framework, remotePath, localPath):
        return

    logger.debug('Start reading content from ' + localPath)
    localClient = None
    try:
        try:
            localClient = Framework.createClient(ClientsConsts.LOCAL_SHELL_PROTOCOL_NAME)
            localClient.executeCmd('type "' + localPath + '"')
        except:
            errorMessage = str(sys.exc_info()[1])
            logger.debugException('Failed to load content of file:' + localPath + ';' + errorMessage)
    finally:
        if localClient is not None:
            try:
                localClient.close()
            except:
                pass
开发者ID:ddonnelly19,项目名称:dd-git,代码行数:23,代码来源:FinalizeAndReleaseResources.py

示例5: downloadScanLogFile

# 需要导入模块: import InventoryUtils [as 别名]
# 或者: from InventoryUtils import copyRemoteFileToLocal [as 别名]
def downloadScanLogFile(Framework):
    needDownloadLog = Framework.getProperty(InventoryUtils.DOWNLOAD_SCANNER_LOG)
    if not needDownloadLog:
        return

    logger.debug("Downloading remote scanner log file to local location")
    try:
        remoteScanLogLocation = getRemoteScanLogFilelocation(Framework)
        localScanLogLocation = getLocalScanLogFileLocation(Framework)
        if (remoteScanLogLocation is None) or (localScanLogLocation is None):
            logger.debug(
                "Download scanner log file failed: remoteScanLogLocation=",
                remoteScanLogLocation,
                ", localScanLogLocation=",
                localScanLogLocation,
            )
            return

        # get file to the local machine
        if not InventoryUtils.copyRemoteFileToLocal(Framework, remoteScanLogLocation, localScanLogLocation):
            return
    except:
        errorMessage = str(sys.exc_info()[1])
        logger.warn("Download scanner log file failed: ", errorMessage)
开发者ID:ddonnelly19,项目名称:dd-git,代码行数:26,代码来源:DownloadScanFile.py


注:本文中的InventoryUtils.copyRemoteFileToLocal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。