花了两周读这个模块,终于把结构理清楚了,当然新功能也搞定了,搜索条件更宽松,可以找到binitem对象中更多的版本,截图如下:

当然功能也做出来啦:

代码如下:

##########################################################################################################################################

# ScanForVersions is the action responsible for scanning for versions.
# This action is added to the BinView context menu.
# The code responsible for the scanning is located in hiero.core.VersionScanner

import hiero.core
import hiero.core.log
import VersionScanner_vhq
import hiero.ui
import PySide.QtGui
import PySide.QtCore

import foundry.ui
import threading
import time

class VersionScannerThreaded (object):
  '''Class to run a threaded scan to discover additional versions for a set of versioned clips'''

_scanner = VersionScanner_vhq.VersionScanner_vhq()

def scanForVersions_vhq(self, versions, postScanFunc, shouldDisplayResults):
    '''Scan for versions starting from the specified version
       @param versions - set of versions to scan. Note that the versions listed belong to different bin items
       @param postScanFunc - optional post scan update function
       @param shouldDisplayResults - Whether we should display how many versions were discovered'''

task = foundry.ui.ProgressTask("Finding Versions...")

# Rescan clip file ranges for all existing versions
    for version in versions:
      hiero.core.executeInMainThreadWithResult(self.rescanClipRanges, version)

# Find all the files to be added as versions
    numNewFiles = 0
    newVersionFiles = []
    numNewVersions = 0

# For each version find the additional files
    for version in versions:
      newFiles = self._scanner.findVersionFiles_vhq(version)
      newVersionFiles.append ( [ version, newFiles ] )
      numNewFiles += len(newFiles)

# Now create the clips for the additional files
    fileIndex = 0
    for versionFile in newVersionFiles:
      newClips = []

version, newFiles = versionFile

for newFile in newFiles:
        # If the user has hit cancel then drop out
        if task.isCancelled():
          return

fileIndex += 1
        task.setProgress(int(100.0*(float(fileIndex)/float(numNewFiles))))
        newClip = hiero.core.executeInMainThreadWithResult(self._scanner.createClip, newFile)
        
        # Filter out any invalid clips
        if newClip is not None:
          newClips.append(newClip)

versionFile.append ( newClips )

# Now create the additional versions from the clips and add them to the version list
    for versionFile in newVersionFiles:
      version  = versionFile[0]
      newClips = versionFile[2]

binitem = version.parent()

# Now add the clips as new versions
      newVersions = hiero.core.executeInMainThreadWithResult(self._scanner.insertClips, binitem, newClips)

hiero.core.log.info("InsertClips - Versions found for %s: %s", version, newVersions)

numNewVersions += len(newVersions)

# If we have a post scan function then run it (version up/down, min/max)
    if (postScanFunc is not None):
      oldClip = version.item()
      hiero.core.executeInMainThreadWithResult(postScanFunc)
      newClip = binitem.activeVersion().item()

# Then update any viewers looking at the old clip to the new clip
      hiero.core.executeInMainThreadWithResult(hiero.ui.updateViewer, oldClip, newClip)

# If we're supposed to display results then do so
    if (shouldDisplayResults):
      hiero.core.executeInMainThreadWithResult(self.displayResults, numNewVersions)

# Display results
  def displayResults(self, numNewVersions):
    msgBox = PySide.QtGui.QMessageBox()
    msgBox.setText("Found " + str(numNewVersions) + " new versions")
    msgBox.setStandardButtons(PySide.QtGui.QMessageBox.Ok)
    msgBox.setDefaultButton(PySide.QtGui.QMessageBox.Ok)
    msgBox.exec_()

# From an active version, iterates through all the siblings inside the BinItem
  def rescanClipRanges(self, activeVersion):
    binItem = activeVersion.parent()
    if binItem:
      for version in binItem.items():
        clip = version.item()
        if clip:
          clip.rescan()

# Helper class to call thread with a arbitrary number of arguments
class FuncThread(threading.Thread):
  def __init__(self, target, *args):
    self._target = target
    self._args = args
    threading.Thread.__init__(self)

def run(self):
    self._target(*self._args)

def ScanAndNextVersion(version):
  '''Scan then move to next version'''
  binitem = version.parent()
  _DoScanForVersions([version], binitem.nextVersion, False)

def ScanAndPrevVersion(version):
  ''' Scan then move to prev version'''
  binitem = version.parent()
  _DoScanForVersions([version], binitem.prevVersion, False)

def ScanAndMinVersion(version):
  '''Scan then move to min version'''
  binitem = version.parent()
  _DoScanForVersions([version], binitem.minVersion, False)

def ScanAndMaxVersion(version):
  '''Scan then move to max version'''
  binitem = version.parent()
  _DoScanForVersions([version], binitem.maxVersion, False)

def ScanAndNextVersionTrackItem(version, trackItem):
  '''Scan then move to next version on the track item'''
  _DoScanForVersions([version], trackItem.nextVersion, False)

def ScanAndPrevVersionTrackItem(version, trackItem):
  '''Scan then move to prev version on the track item'''
  _DoScanForVersions([version], trackItem.prevVersion, False)

def ScanAndMinVersionTrackItem(version, trackItem):
  '''Scan then move to min version on the track item'''
  _DoScanForVersions([version], trackItem.minVersion, False)

def ScanAndMaxVersionTrackItem(version, trackItem):
  '''Scan then move to max version on the track item'''
  _DoScanForVersions([version], trackItem.maxVersion, False)

# Create threaded scan using VersionScannerThreaded
def _DoScanForVersions(versions, postUpdateFunc, shouldDisplayResults):

scanner = VersionScannerThreaded()

thread = FuncThread(scanner.scanForVersions_vhq, versions, postUpdateFunc, shouldDisplayResults)
  thread.start()

# Action to scan for new versions
class ScanForVersionsAction(PySide.QtGui.QAction):

_scanner = hiero.core.VersionScanner.VersionScanner()

def __init__(self):
      PySide.QtGui.QAction.__init__(self, "Scan For More Versions (VHQ)", None)
      self.triggered.connect(self.doit)
      hiero.core.events.registerInterest((hiero.core.events.EventType.kShowContextMenu, hiero.core.events.EventType.kBin), self.eventHandler)
      hiero.core.events.registerInterest((hiero.core.events.EventType.kShowContextMenu, hiero.core.events.EventType.kTimeline), self.eventHandler)

def doit(self):
    # get the currently selected versions from UI
    versions = self.selectedVersions()

if len(versions) == 0:
      hiero.core.log.info( "No valid versions found in selection" )
      return

# For each version, do:
    # - rescan any versions already loaded to find the maximum available range
    # - run _scanner.doScan which returns added versions
    # - compute the total count of new versions.
    _DoScanForVersions(versions, None, True)

def eventHandler(self, event):

enabled = False
    if hasattr(event.sender, 'selection'):
      s = event.sender.selection()
      if len(s)>=1:
        enabled = True

# enable/disable the action each time
      if enabled:
        hiero.ui.insertMenuAction( self, event.menu, after="foundry.project.rescanClips" ) # Insert after 'Version' sub-menu

# Get all selected active versions
  def selectedVersions(self):
    selection = hiero.ui.currentContextMenuView().selection()
    versions = []
    self.findActiveVersions(selection, versions)
    return (versions)

#
  def alreadyHaveVersion(self, findversion, versions):
    newFilename = findversion.item().mediaSource().fileinfos()[0].filename()
    for version in versions:
      thisFilename = version.item().mediaSource().fileinfos()[0].filename()
      if (newFilename == thisFilename):
        return True

return False

# Find all active versions in container and append to versions
  def findActiveVersions(self, container, versions):
    # Iterate through selection
    if isinstance(container, (list,tuple)):
      for i in container:
        self.findActiveVersions(i, versions)
    # Dive into Projects to find clipsBin (NB: not strictly needed at the moment, we get RootBins from BinView)
    elif isinstance(container, hiero.core.Project):
      self.findActiveVersions(container.clipsBin(), versions)
    # Dive into Bins to find BinItems
    elif isinstance(container, hiero.core.Bin):
      for i in container.items():
        self.findActiveVersions(i, versions)
    elif isinstance(container, hiero.core.TrackItem) and isinstance(container.source(), hiero.core.Clip):
      activeVersion = container.currentVersion()
      if activeVersion and not activeVersion.isNull():
        if not self.alreadyHaveVersion(activeVersion, versions):
        #if activeVersion not in versions:
          versions.append(activeVersion)
    # Dive into BinItem to retrieve active Version
    elif isinstance(container, hiero.core.BinItem) and isinstance(container.activeItem(), hiero.core.Clip):
      activeVersion = container.activeVersion()
      if activeVersion:
        if not self.alreadyHaveVersion(activeVersion, versions):
        #if activeVersion not in versions:
          versions.append(activeVersion)

# Instantiate the action to get it to register itself.
action = ScanForVersionsAction()

Hiero中versionscanner模块结构图的更多相关文章

  1. Hiero中的Events机制

    The hiero.core.events module allows you to register method callbacks to respond to events sent by Hi ...

  2. 第三十篇:SOUI模块结构图及SOUI框架图

    模块结构图: SOUI框架图:

  3. 隐藏进程中的模块绕过IceSword的检测

    标 题: [原创] 隐藏进程中的模块绕过IceSword的检测 作 者: xPLK 时 间: 2008-06-19,17:59:11 链 接: http://bbs.pediy.com/showthr ...

  4. 浅析JS中的模块规范(CommonJS,AMD,CMD)////////////////////////zzzzzz

    浅析JS中的模块规范(CommonJS,AMD,CMD)   如果你听过js模块化这个东西,那么你就应该听过或CommonJS或AMD甚至是CMD这些规范咯,我也听过,但之前也真的是听听而已.     ...

  5. 解决centos7中python-pip模块不存在的问题

    centos 7中python-pip模块不存在,是因为像centos这类衍生的发行版,源跟新滞后,或者不存在.即使使用yum去search python-pip也找不到软件包. 为了使用安装滞后或源 ...

  6. Nodejs中cluster模块的多进程共享数据问题

    Nodejs中cluster模块的多进程共享数据问题 前述 nodejs在v0.6.x之后增加了一个模块cluster用于实现多进程,利用child_process模块来创建和管理进程,增加程序在多核 ...

  7. Python中optionParser模块的使用方法[转]

    本文以实例形式较为详尽的讲述了Python中optionParser模块的使用方法,对于深入学习Python有很好的借鉴价值.分享给大家供大家参考之用.具体分析如下: 一般来说,Python中有两个内 ...

  8. python中threading模块详解(一)

    python中threading模块详解(一) 来源 http://blog.chinaunix.net/uid-27571599-id-3484048.html threading提供了一个比thr ...

  9. Python中的模块与包

    标准库的安装路径 在import模块的时候,python是通过系统路径找到这些模块的,我们可以将这些路径打印出来: >>> pprint.pprint(sys.path) ['', ...

随机推荐

  1. SQL注入之Sqli-labs系列第二十六关(过滤空格、注释符、逻辑运算符注入)和第二十六A

    开始挑战第二十六关(Trick with comments and space) 0x1看看源代码 (1)过滤了#  or and  /**/  /  \ ,通过判断也过滤了空格 (2)这样一来只能看 ...

  2. 20165228 2017-2018-2《Java程序设计》课程总结

    20165228 2017-2018-2<Java程序设计>课程总结 每周作业链接汇总 预备作业1:我期望的师生关系 简要内容: 老师能给我在学习中提供什么帮助 我的看法 我期望的师生关系 ...

  3. 解决Python2.7的UnicodeEncodeError: ‘ascii’ codec can’t encode异常错误

    更改 sys.defaultencoding 为文件的编码方式  #! /usr/bin/env python  # -*- coding: utf-8 -*-  import sys  reload ...

  4. Bagging-Adaboost-RF的粗糙理解

    三种方法都是组合方法,组合方法是使用多个分类器进行投票[构造每个分类器的样本都是通过有放回抽样得到的] 1.Bagging(装袋):k次抽样,训练k次,得到k个模型(分类器),等权重投票 2.Adab ...

  5. 20155208 实验四 Android开发基础

    20155208 实验四 Android开发基础 实验内容 1.基于Android Studio开发简单的Android应用并部署测试; 2.了解Android.组件.布局管理器的使用: 3.掌握An ...

  6. linux 系统 目录,以部分及相关命令

    linux 系统里的文件类型有: b. d.l. c. -  .s (块设备.目录.软连接.数字串设备.普通文件(文本.二进行文件).socket文件 ) ls 命令 ls -a  查看当前目录下的所 ...

  7. 系统间通信——RPC架构设计

    架构设计:系统间通信(10)——RPC的基本概念 1.概述经过了详细的信息格式.网络IO模型的讲解,并且通过JAVA RMI的讲解进行了预热.从这篇文章开始我们将进入这个系列博文的另一个重点知识体系的 ...

  8. Linux压缩文件笔记

    https://my.oschina.net/dongqianlin/blog/97168http://linux.it.net.cn/CentOS/fast/2017/0628/27029.html ...

  9. (15)javaScript入门

    什么是javaScript HTML用来做页面的架构,CSS用来做页面样式的布局 javaScript就是用来完成页面用户交互的,JS写的就是叫脚本 js就是弱语言类型,不同类型的时候可以相互转换 j ...

  10. HTML中嵌套的子frame如何访问父页面中的函数?

    我解决的办法,在父页面写了个函数,然后在frame页面调用父页面的函数,具体代码如下: 父:function a(){} 子frame:window.parent.a(); 问题迎刃而解 https: ...