python 服务器文件同步,python实现的文件同步服务器实例

python实现的文件同步服务器实例,python,实现,的,文件,同步,服务器,实例,本文

python实现的文件同步服务器实例

易采站长站,站长之家为您整理了python实现的文件同步服务器实例的相关内容。

客户端:

# monitor path with inotify(python module), and send them to remote server.#

# use sendfile(2) instead of send function in socket, if we have python-sendfile installed.#

import socket

import time

import os

import sys

import struct

import threading

import Queue

try:

import pyinotify

except (ImportError, ImportWarnning):

print "Hope this information can help you:"

print "Can not find pyinotify module in sys path, just run [apt-get install python-pyinotify] in ubuntu."

sys.exit(1)

try:

from sendfile import sendfile

except (ImportError,ImportWarnning):

pass

filetype_filter = [".rrd",".xml"]

def check_filetype(pathname):

for suffix_name in filetype_filter:

if pathname[-4:] == suffix_name:

return True

try:

end_string = pathname.rsplit('.')[-1:][0]

end_int = int(end_string)

except:

pass

else:

# means pathname endwith digit

return False

class sync_file(threading.Thread):

def __init__(self, addr, events_queue):

super(sync_file,self).__init__()

self.daemon = False

self.queue = events_queue

self.addr = addr

self.chunk_size = 1024

def run(self):

while 1:

event = self.queue.get()

if check_filetype(event.pathname):

print time.asctime(),event.maskname, event.pathname

filepath = event.path.split('/')[-1:][0]

filename = event.name

filesize = os.stat(os.path.join(event.path, filename)).st_size

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

filepath_len = len(filepath)

filename_len = len(filename)

sock.connect(self.addr)

offset = 0

data = struct.pack("!LL128s128sL",filepath_len, filename_len, filepath,filename,filesize)

fd = open(event.pathname,'rb')

sock.sendall(data)

if "sendfile" in sys.modules:

# print "use sendfile(2)"

while 1:

sent = sendfile(sock.fileno(), fd.fileno(), offset, self.chunk_size)

if sent == 0:

break

offset += sent

else:

# print "use original send function"

while 1:

data = fd.read(self.chunk_size)

if not data: break

sock.send(data)

sock.close()

fd.close()

class EventHandler(pyinotify.ProcessEvent):

def __init__(self, events_queue):

super(EventHandler,self).__init__()

self.events_queue = events_queue

def my_init(self):

pass

def process_IN_CLOSE_WRITE(self,event):

self.events_queue.put(event)

def process_IN_MOVED_TO(self,event):

self.events_queue.put(event)

def start_notify(path, mask, sync_server):

events_queue = Queue.Queue()

sync_thread_pool = list()

for i in range(500):

sync_thread_pool.append(sync_file(sync_server, events_queue))

for i in sync_thread_pool:

i.start()

wm = pyinotify.WatchManager()

notifier = pyinotify.Notifier(wm,EventHandler(events_queue))

wdd = wm.add_watch(path,mask,rec=True)

notifier.loop()

def do_notify():

perfdata_path = '/var/lib/pnp4nagios/perfdata'

mask = pyinotify.IN_CLOSE_WRITE|pyinotify.IN_MOVED_TO

sync_server = ('127.0.0.1',9999)

start_notify(perfdata_path,mask,sync_server)

if __name__ == '__main__':

do_notify()以上就是关于对python实现的文件同步服务器实例的详细介绍。欢迎大家对python实现的文件同步服务器实例内容提出宝贵意见

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值