python开发之基于thread线程搜索本地文件的方法


Posted in Python onNovember 11, 2015

本文实例讲述了python开发之基于thread线程搜索本地文件的方法。分享给大家供大家参考,具体如下:

先来看看运行效果图:

python开发之基于thread线程搜索本地文件的方法

利用多个线程处理搜索的问题,我们可以发现他很快....

下面是代码部分:

# A parallelized "find(1)" using the thread module.
# This demonstrates the use of a work queue and worker threads.
# It really does do more stats/sec when using multiple threads,
# although the improvement is only about 20-30 percent.
# (That was 8 years ago. In 2002, on Linux, I can't measure
# a speedup. :-( )
# I'm too lazy to write a command line parser for the full find(1)
# command line syntax, so the predicate it searches for is wired-in,
# see function selector() below. (It currently searches for files with
# world write permission.)
# Usage: parfind.py [-w nworkers] [directory] ...
# Default nworkers is 4
import sys
import getopt
import time
import os
from stat import *
import _thread as thread
# Work queue class. Usage:
#  wq = WorkQ()
#  wq.addwork(func, (arg1, arg2, ...)) # one or more calls
#  wq.run(nworkers)
# The work is done when wq.run() completes.
# The function calls executed by the workers may add more work.
# Don't use keyboard interrupts!
class WorkQ:
  # Invariants:
  # - busy and work are only modified when mutex is locked
  # - len(work) is the number of jobs ready to be taken
  # - busy is the number of jobs being done
  # - todo is locked iff there is no work and somebody is busy
  def __init__(self):
    self.mutex = thread.allocate()
    self.todo = thread.allocate()
    self.todo.acquire()
    self.work = []
    self.busy = 0
  def addwork(self, func, args):
    job = (func, args)
    self.mutex.acquire()
    self.work.append(job)
    self.mutex.release()
    if len(self.work) == 1:
      self.todo.release()
  def _getwork(self):
    self.todo.acquire()
    self.mutex.acquire()
    if self.busy == 0 and len(self.work) == 0:
      self.mutex.release()
      self.todo.release()
      return None
    job = self.work[0]
    del self.work[0]
    self.busy = self.busy + 1
    self.mutex.release()
    if len(self.work) > 0:
      self.todo.release()
    return job
  def _donework(self):
    self.mutex.acquire()
    self.busy = self.busy - 1
    if self.busy == 0 and len(self.work) == 0:
      self.todo.release()
    self.mutex.release()
  def _worker(self):
    time.sleep(0.00001)   # Let other threads run
    while 1:
      job = self._getwork()
      if not job:
        break
      func, args = job
      func(*args)
      self._donework()
  def run(self, nworkers):
    if not self.work:
      return # Nothing to do
    for i in range(nworkers-1):
      thread.start_new(self._worker, ())
    self._worker()
    self.todo.acquire()
# Main program
def main():
  nworkers = 4
  #print(getopt.getopt(sys.argv[1:], '-w:'))
  opts, args = getopt.getopt(sys.argv[1:], '-w:')
  for opt, arg in opts:
    if opt == '-w':
      nworkers = int(arg)
  if not args:
    #print(os.curdir)
    args = [os.curdir]
  wq = WorkQ()
  for dir in args:
    wq.addwork(find, (dir, selector, wq))
  t1 = time.time()
  wq.run(nworkers)
  t2 = time.time()
  sys.stderr.write('Total time %r sec.\n' % (t2-t1))
# The predicate -- defines what files we look for.
# Feel free to change this to suit your purpose
def selector(dir, name, fullname, stat):
  # Look for world writable files that are not symlinks
  return (stat[ST_MODE] & 0o002) != 0 and not S_ISLNK(stat[ST_MODE])
# The find procedure -- calls wq.addwork() for subdirectories
def find(dir, pred, wq):
  try:
    names = os.listdir(dir)
  except os.error as msg:
    print(repr(dir), ':', msg)
    return
  for name in names:
    if name not in (os.curdir, os.pardir):
      fullname = os.path.join(dir, name)
      try:
        stat = os.lstat(fullname)
      except os.error as msg:
        print(repr(fullname), ':', msg)
        continue
      if pred(dir, name, fullname, stat):
        print(fullname)
      if S_ISDIR(stat[ST_MODE]):
        if not os.path.ismount(fullname):
          wq.addwork(find, (fullname, pred, wq))
# Call the main program
main()

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
详解Python的Lambda函数与排序
Oct 25 Python
利用Python批量压缩png方法实例(支持过滤个别文件与文件夹)
Jul 30 Python
Python OpenCV获取视频的方法
Feb 28 Python
解决python nohup linux 后台运行输出的问题
May 11 Python
使用matplotlib画散点图的方法
May 25 Python
Python通过调用有道翻译api实现翻译功能示例
Jul 19 Python
python算法与数据结构之冒泡排序实例详解
Jun 22 Python
基于pytorch padding=SAME的解决方式
Feb 18 Python
Pycharm打开已有项目配置python环境的方法
Jul 03 Python
基于Python绘制子图及子图刻度的变换等的问题
May 23 Python
OpenCV-Python模板匹配人眼的实例
Jun 08 Python
Python中request的基本使用解决乱码问题
Apr 12 Python
python开发之tkinter实现图形随鼠标移动的方法
Nov 11 #Python
Python复制文件操作实例详解
Nov 10 #Python
Python中对元组和列表按条件进行排序的方法示例
Nov 10 #Python
Python 文件管理实例详解
Nov 10 #Python
Python list操作用法总结
Nov 10 #Python
python控制台中实现进度条功能
Nov 10 #Python
使用Python发送各种形式的邮件的方法汇总
Nov 09 #Python
You might like
笑谈配置,使用Smarty技术
2007/01/04 PHP
用PHP提取中英文词语以及数字的首字母的方法介绍
2013/04/23 PHP
YII实现分页的方法
2014/07/09 PHP
PHP实现链式操作的原理详解
2016/09/16 PHP
php的常量和变量实例详解
2017/06/27 PHP
PHP mysqli事务操作常用方法分析
2017/07/22 PHP
jQuery遍历Form示例代码
2013/09/03 Javascript
jQuery数据类型小结(14个)
2016/01/08 Javascript
jQuery树形控件zTree使用小结
2016/08/02 Javascript
JavaScript-html标题滚动效果的简单实现
2016/09/08 Javascript
jquery 抽奖小程序实现代码
2016/10/12 Javascript
node.js实现登录注册页面
2017/04/08 Javascript
JS实现websocket长轮询实时消息提示的效果
2017/10/10 Javascript
详解Vue+axios+Node+express实现文件上传(用户头像上传)
2018/08/10 Javascript
ant-design-vue按需加载的坑的解决
2020/05/14 Javascript
Python3.X 线程中信号量的使用方法示例
2017/07/24 Python
python thrift搭建服务端和客户端测试程序
2018/01/17 Python
对python中执行DOS命令的3种方法总结
2018/05/12 Python
python爬取网页转换为PDF文件
2018/06/07 Python
python3实现windows下同名进程监控
2018/06/21 Python
Python爬取数据并写入MySQL数据库的实例
2018/06/21 Python
python实现将range()函数生成的数字存储在一个列表中
2020/04/02 Python
浅谈Python中的生成器和迭代器
2020/06/19 Python
python设置表格边框的具体方法
2020/07/17 Python
.NET方向面试题
2014/11/20 面试题
运动会入场解说词300字
2014/01/25 职场文书
行政监察建议书
2014/05/19 职场文书
领导班子对照检查材料
2014/09/22 职场文书
2014年精神文明工作总结
2014/12/23 职场文书
2015年机关纠风工作总结
2015/05/15 职场文书
2015年大学生暑期实习报告
2015/07/13 职场文书
公文写作:工伤事故分析报告怎么写?
2019/11/05 职场文书
导游词之江苏溱潼古镇
2019/11/27 职场文书
《家世》读后感:看家训的力量
2019/12/30 职场文书
新手初学Java网络编程
2021/07/07 Java/Android
Python极值整数的边界探讨分析
2021/09/15 Python