twisted 使用application框架制作守护进程

2023-10-18 19:20

本文主要是介绍twisted 使用application框架制作守护进程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

官方文档

http://twistedmatrix.com/documents/12.2.0/core/howto/application.html

起由:

       用twisted写了一个程序,只能像脚本一样运行,ctrl+c 就退出了,如果用screen 或者nohup都有一些问题,查了一下twsited自带daemon应用框架,于是赶紧google了一下(顺便提一下,没有抗争就没有自由,目前还可以用的google镜像地址:https://s3-ap-southeast-1.amazonaws.com/google.cn/index.html),现在做一点笔记,方便下次查阅。

可以有多种方式实现守护进程,这里介绍2种:

第一种:非插件式的

原文的概念有点难啃,我喜欢画个图来加深下自己的理解。


下面贴一段自己的代码

from twisted.internet import reactor
from twisted.internet.protocol import ServerFactory
from twisted.protocols import basic
import cx_Oracle
from twisted.application import  service, internetclass Mornitor_Protocol(basic.LineReceiver):def __init__(self):#不知道要写什么_oracle_conn=cx_Oracle.connect('xxx', 'xxx', '192.168.7.17/test', threaded=True)_oracle_conn.autocommit = Trueself.cur = _oracle_conn.cursor()self._oracle_conn=_oracle_conndef ruku(self, line):ip = self.transport.getPeer().host#获取客户端IPline=line.split(':::')#使用:::分割原始数据if line[1] in ['cpu', 'mem', 'disk', 'tcp', 'net', 'process_down']:#根据数据包头来确定使用insert还是update,当是tcp包头的时候插入,其余的更新if line[1] == 'tcp':sql = "insert into MORNITOR_BASICINFO (ipadd,time,tcp) values (\'%s\',\'%s\',\'%s\')"%(ip,line[0],line[3])print sqlself.cur.execute(sql)else:line_again = line[3].split('::')sql = 'update MORNITOR_BASICINFO set %s=\'%s\',%s=\'%s\' where ipadd=\'%s\' and time=\'%s\''%(line[1],line_again[0],line[2],line_again[1],ip,line[0])print sqlself.cur.execute(sql)def connectionMade(self):print 'Connected!'def lineReceived(self, line):print lineself.ruku(line)#接受到数据之后执行入库操作!def connectionLost(self, reason='connectionDone'):self._oracle_conn.close()print 'The db is close... ok!'class Mornitor_Factory(ServerFactory):#还没想好要初始化什么protocol = Mornitor_Protocoldef __init__(self,service):self.service = serviceclass Fish_Service(service.Service):def startService(self):service.Service.startService(self)def stopService(self):return self._port.stopListening()port = 8888
iface = '192.168.7.188'top_service = service.MultiService()fish_server =Fish_Service()
factory = Mornitor_Factory(Fish_Service)
fish_server.setServiceParent(top_service)tcp_service = internet.TCPServer(port, factory, interface=iface)
tcp_service.setServiceParent(top_service)application = service.Application("SmallFish--Monitor")# this hooks the collection we made to the application
top_service.setServiceParent(application)

使用 twisted -y main.py (脚本名称) 就可以以守护进程的方式运行了!

第二种:插件式

何谓插件式?

举个例子就是不敲任何参数,直接在命令行打twisted后,可以看到的一些插件,如下:

dwj@WaitFish ~ $ twistd twistd reads a twisted.application.service.Application out of a file and runs
it.
Commands:conch            A Conch SSH service.dns              A domain name server.ftp              An FTP server.inetd            An inetd(8) replacement.mail             An email servicemanhole          An interactive remote debugger service accessible viatelnet and ssh and providing syntax coloring and basic lineediting functionality.manhole-old      An interactive remote debugger service.news             A news server.portforward      A simple port-forwarder.procmon          A process watchdog / supervisorsocks            A SOCKSv4 proxy service.telnet           A simple, telnet-based remote debugging service.web              A general-purpose web server which can serve from afilesystem or application resource.words            A modern words serverxmpp-router      An XMPP Router server

略去usage 就是上面的输出,其中twisted自带的插件有常见的一些协议如ftp mail news web telnet等等~~

如果能将自己的应用程序注册成插件岂不是一件很爽快的事情。

以下是插件结构IServiceMaker指定了三个属性和一个方法:(转载自https://github.com/luocheng/twisted-intro-cn/blob/master/p16.rst#iservicecollection)

  1. tapname: 代表插件名字的字符串. "tap"代表"Twisted Application Plugin". 注:老版本的Twisted还使用"tapfiles"文件,不过这个功能现在已经取消了.
  2. description: 插件的描述, twistd 将以它作为帮助信息输出.
  3. options: 一个代表这个插件接受的命令行选项的对象.
  4. makeService: 一个创建 IService 对象的方法,需提供一些特定的命令行选项.
这些参数有什么作用,以及要怎么样去理解呢,大体上就是把刚才从service->muti-service->appliaction的过程柔和成makeService+options


继续贴上刚才的代码用插件来实现:

from twisted.internet import reactor
from twisted.internet.protocol import ServerFactory
from twisted.protocols import basic
import cx_Oracle
from twisted.application import  service, internet
from zope.interface import implements
from twisted.python import usage, log
from twisted.plugin import IPluginclass Mornitor_Protocol(basic.LineReceiver):def __init__(self):#不知道要写什么_oracle_conn=cx_Oracle.connect('xxx', 'xxx', '192.168.7.17/test', threaded=True)_oracle_conn.autocommit = Trueself.cur = _oracle_conn.cursor()self._oracle_conn=_oracle_conndef ruku(self, line):ip=self.transport.getPeer().host#获取客户端IPline=line.split(':::')#使用:::分割原始数据if line[1] in ['cpu', 'mem', 'disk', 'tcp', 'net', 'process_down']:#根据数据包头来确定使用insert还是update,当是tcp包头的时候插入,其余的更新if line[1] == 'tcp':sql = "insert into MORNITOR_BASICINFO (ipadd,time,tcp) values (\'%s\',\'%s\',\'%s\')"%(ip,line[0],line[3])print sqlself.cur.execute(sql)else:line_again = line[3].split('::')sql = 'update MORNITOR_BASICINFO set %s=\'%s\',%s=\'%s\' where ipadd=\'%s\' and time=\'%s\''%(line[1],line_again[0],line[2],line_again[1],ip,line[0])print sqlself.cur.execute(sql)def connectionMade(self):print 'Connected!'def lineReceived(self, line):print lineself.ruku(line)#接受到数据之后执行入库操作!def connectionLost(self, reason='connectionDone'):self._oracle_conn.close()print 'The db is close... ok!'class Mornitor_Factory(ServerFactory):#还没想好要初始化什么def __init__(self, s):self.service = sprotocol = Mornitor_Protocolclass Fish_Service(service.Service):def __init__(self):self._port=8007def startService(self):service.Service.startService(self)class Options(usage.Options):optParameters = [['port', 'p', 10000, 'The port number to listen on.'],['iface', None, 'localhost', 'The interface to listen on.'],]class Fish_Service_Make(object):implements(service.IServiceMaker, IPlugin)tapname = "smallfish"                  #这里给插件取个好听的名字description = "A monitor daemon!"      #插件的描述options = Options                      #可供插件选择的选项def makeService(self, options):top_service = service.MultiService()                  #定义service容器fish_service = Fish_Service()                         #实例化自己定义的servicefish_service.setServiceParent(top_service)            #把自定义的service丢进容器factory = Mornitor_Factory(fish_service)              #工厂化自定义服务tcp_service = internet.TCPServer(int(options['port']), factory,           #tcp连接工厂化,一些连接参数通过option获取interface=options['iface'])tcp_service.setServiceParent(top_service)             #把tcp sevice丢进容器​        return top_serviceservice_maker = Fish_Service_Make()        

要使用twisted +插件名称的方式运行程序有几点要求:

1.插件程序必须在python的搜索路径


export PYTHONPATH=$PYTHONPATH:/home/user/yourpath

2.插件程序必须处于twisted/plugins 这样的目录结构下

your projects/
├──
twisted
└── plugins
    └──xxxx_plugin.py

这篇关于twisted 使用application框架制作守护进程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/234641

相关文章

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Mysql虚拟列的使用场景

《Mysql虚拟列的使用场景》MySQL虚拟列是一种在查询时动态生成的特殊列,它不占用存储空间,可以提高查询效率和数据处理便利性,本文给大家介绍Mysql虚拟列的相关知识,感兴趣的朋友一起看看吧... 目录1. 介绍mysql虚拟列1.1 定义和作用1.2 虚拟列与普通列的区别2. MySQL虚拟列的类型2

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

mysql数据库分区的使用

《mysql数据库分区的使用》MySQL分区技术通过将大表分割成多个较小片段,提高查询性能、管理效率和数据存储效率,本文就来介绍一下mysql数据库分区的使用,感兴趣的可以了解一下... 目录【一】分区的基本概念【1】物理存储与逻辑分割【2】查询性能提升【3】数据管理与维护【4】扩展性与并行处理【二】分区的

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存