Python多线程同步---文件读写控制方法


Posted in Python onFebruary 12, 2019

1、实现文件读写的文件ltz_schedule_times.py

#! /usr/bin/env python
#coding=utf-8
import os

def ReadTimes():
 res = []
 if os.path.exists('schedule_times.txt'):
  fp = open('schedule_times.txt', 'r')
 else:
  os.system('touch schedule_times.txt')
  fp = open('schedule_times.txt', 'r')
 try:
  line = fp.read()
  if line == None or len(line)==0:
   fp.close()
   return 0
  tmp = line.split()
  print 'tmp: ', tmp
  schedule_times = int(tmp[-1])
 finally:
  fp.close()
 #print schedule_times
 return schedule_times

def WriteTimes(schedule_times):
 if schedule_times <= 10:
  fp = open('schedule_times.txt', 'a+')#10以内追加进去
 else:
  fp = open('schedule_times.txt', 'w')#10以外重新写入
  schedule_times = 1
 print 'write schedule_times start!'
 try:

  fp.write(str(schedule_times)+'\n')
 finally:
  fp.close()
  print 'write schedule_times finish!'

if __name__ == '__main__':

 schedule_times = ReadTimes()
 #if schedule_times > 10:
 # schedule_times = 0
 print schedule_times
 schedule_times = schedule_times + 1
 WriteTimes(schedule_times)

2.1、不加锁对文件进行多线程读写。

file_lock.py

#! /usr/bin/env python
#coding=utf-8

from threading import Thread
import threading
import time
from ltz_schedule_times import *

#1、不加锁
def lock_test():
 time.sleep(0.1) 
 schedule_times = ReadTimes()
 print schedule_times
 schedule_times = schedule_times + 1
 WriteTimes(schedule_times)


if __name__ == '__main__':

 for i in range(5):
  Thread(target = lock_test, args=()).start()

得到结果:

0
write schedule_times start!
write schedule_times finish!
tmp: tmp: tmp: tmp:  [[[['1''1''1''1']]]]



11

1
 1
write schedule_times start!write schedule_times start!

write schedule_times start!write schedule_times start!

write schedule_times finish!
write schedule_times finish!
write schedule_times finish!write schedule_times finish!

文件写入结果:

Python多线程同步---文件读写控制方法

以上结果可以看出,不加锁多线程读写文件会出现错误。

2.2、加锁对文件进行多线程读写。

file_lock.py

#! /usr/bin/env python
#coding=utf-8

from threading import Thread
import threading
import time
from ltz_schedule_times import *

#2、加锁
mu = threading.Lock() #1、创建一个锁
def lock_test():
 #time.sleep(0.1) 
 if mu.acquire(True): #2、获取锁状态,一个线程有锁时,别的线程只能在外面等着
  schedule_times = ReadTimes()
  print schedule_times
  schedule_times = schedule_times + 1
  WriteTimes(schedule_times)
  mu.release() #3、释放锁  

if __name__ == '__main__':

 for i in range(5):
  Thread(target = lock_test, args=()).start()

结果:

0
write schedule_times start!
write schedule_times finish!
tmp: ['1']
1
write schedule_times start!
write schedule_times finish!
tmp: ['1', '2']
2
write schedule_times start!
write schedule_times finish!
tmp: ['1', '2', '3']
3
write schedule_times start!
write schedule_times finish!
tmp: ['1', '2', '3', '4']
4
write schedule_times start!
write schedule_times finish!

文件写入结果:

Python多线程同步---文件读写控制方法

以上这篇Python多线程同步---文件读写控制方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
解决windows下Sublime Text 2 运行 PyQt 不显示的方法分享
Jun 18 Python
浅析Python中的序列化存储的方法
Apr 28 Python
python实现将html表格转换成CSV文件的方法
Jun 28 Python
python分割列表(list)的方法示例
May 07 Python
对python中for、if、while的区别与比较方法
Jun 25 Python
python把数组中的数字每行打印3个并保存在文档中的方法
Jul 17 Python
python使用循环打印所有三位数水仙花数的实例
Nov 13 Python
使用python画社交网络图实例代码
Jul 10 Python
使用OpenCV实现仿射变换—缩放功能
Aug 29 Python
使用pygame写一个古诗词填空通关游戏
Dec 03 Python
Python使用lambda抛出异常实现方法解析
Aug 20 Python
Python中全局变量和局部变量的理解与区别
Feb 07 Python
Python 按字典dict的键排序,并取出相应的键值放于list中的实例
Feb 12 #Python
Python 互换字典的键值对实例
Feb 12 #Python
Python根据成绩分析系统浅析
Feb 11 #Python
Python实现的在特定目录下导入模块功能分析
Feb 11 #Python
Python正则表达式和re库知识点总结
Feb 11 #Python
Python实现的大数据分析操作系统日志功能示例
Feb 11 #Python
Python实现对特定列表进行从小到大排序操作示例
Feb 11 #Python
You might like
PHP求最大子序列和的算法实现
2011/06/24 PHP
php数组操作之键名比较与差集、交集赋值的方法
2014/11/10 PHP
php判断表是否存在的方法
2015/06/18 PHP
thinkphp在低版本Nginx 下支持PATHINFO的方法分享
2016/05/27 PHP
Gambit vs ForZe BO3 第一场 2.13
2021/03/10 DOTA
jquery入门—访问DOM对象方法
2013/01/07 Javascript
JS简单的图片放大缩小的两种方法
2013/11/11 Javascript
从数组中随机取x条不重复数据的JS代码
2013/12/24 Javascript
js获得参数的getParameter使用示例
2014/02/26 Javascript
js实现二代身份证号码验证详解
2014/11/20 Javascript
jquery中ajax使用error调试错误的方法
2015/02/08 Javascript
JavaScript 定时器 SetTimeout之定时刷新窗口和关闭窗口(代码超简单)
2016/02/26 Javascript
用Vue.js实现监听属性的变化
2016/11/17 Javascript
AngularJS入门教程之路由机制ngRoute实例分析
2016/12/13 Javascript
微信小程序 支付简单实例及注意事项
2017/01/06 Javascript
nodejs实现邮件发送服务实例分享
2017/03/29 NodeJs
浅谈react-native热更新react-native-pushy集成遇到的问题
2017/09/30 Javascript
使用clipboard.js实现复制功能的示例代码
2017/10/16 Javascript
Vue.js组件间的循环引用方法示例
2017/12/27 Javascript
30分钟用Node.js构建一个API服务器的步骤详解
2019/05/24 Javascript
python关闭windows进程的方法
2015/04/18 Python
Python发展简史 Python来历
2019/05/14 Python
python爬虫 爬取超清壁纸代码实例
2019/08/16 Python
Python实现一个论文下载器的过程
2021/01/18 Python
HTML5+CSS3实现机器猫
2016/10/17 HTML / CSS
巴黎卡诗加拿大官网:Kérastase加拿大
2018/11/12 全球购物
渡河少年教学反思
2014/02/12 职场文书
产品销售计划书
2014/05/04 职场文书
承诺书范文
2014/06/03 职场文书
给医院的感谢信
2015/01/21 职场文书
农村党员干部承诺书
2015/05/04 职场文书
社区宣传标语口号
2015/12/26 职场文书
导游词之丽江普济寺
2019/10/22 职场文书
python3读取文件指定行的三种方法
2021/05/24 Python
在CSS中使用when/else的方法
2022/01/18 HTML / CSS
mysql分组后合并显示一个字段的多条数据方式
2022/01/22 MySQL