Python封装shell命令实例分析
作者:鸪斑兔 发布时间:2022-03-11 13:39:37
标签:Python,shell
本文实例讲述了Python封装shell命令的方法。分享给大家供大家参考。具体实现方法如下:
# -*- coding: utf-8 -*-
import os
import subprocess
import signal
import pwd
import sys
class MockLogger(object):
'''模拟日志类。方便单元测试。'''
def __init__(self):
self.info = self.error = self.critical = self.debug
def debug(self, msg):
print "LOGGER:"+msg
class Shell(object):
'''完成Shell脚本的包装。
执行结果存放在Shell.ret_code, Shell.ret_info, Shell.err_info中
run()为普通调用,会等待shell命令返回。
run_background()为异步调用,会立刻返回,不等待shell命令完成
异步调用时,可以使用get_status()查询状态,或使用wait()进入阻塞状态,
等待shell执行完成。
异步调用时,使用kill()强行停止脚本后,仍然需要使用wait()等待真正退出。
TODO 未验证Shell命令含有超大结果输出时的情况。
'''
def __init__(self, cmd):
self.cmd = cmd # cmd包括命令和参数
self.ret_code = None
self.ret_info = None
self.err_info = None
#使用时可替换为具体的logger
self.logger = MockLogger()
def run_background(self):
'''以非阻塞方式执行shell命令(Popen的默认方式)。
'''
self.logger.debug("run %s"%self.cmd)
# Popen在要执行的命令不存在时会抛出OSError异常,但shell=True后,
# shell会处理命令不存在的错误,因此没有了OSError异常,故不用处理
self._process = subprocess.Popen(self.cmd, shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE) #非阻塞
def run(self):
'''以阻塞方式执行shell命令。
'''
self.run_background()
self.wait()
def run_cmd(self, cmd):
'''直接执行某条命令。方便一个实例重复使用执行多条命令。
'''
self.cmd = cmd
self.run()
def wait(self):
'''等待shell执行完成。
'''
self.logger.debug("waiting %s"%self.cmd)
self.ret_info, self.err_info = self._process.communicate() #阻塞
# returncode: A negative value -N indicates that the child was
# terminated by signal N
self.ret_code = self._process.returncode
self.logger.debug("waiting %s done. return code is %d"%(self.cmd,
self.ret_code))
def get_status(self):
'''获取脚本运行状态(RUNNING|FINISHED)
'''
retcode = self._process.poll()
if retcode == None:
status = "RUNNING"
else:
status = "FINISHED"
self.logger.debug("%s status is %s"%(self.cmd, status))
return status
# Python2.4的subprocess还没有send_signal,terminate,kill
# 所以这里要山寨一把,2.7可直接用self._process的kill()
def send_signal(self, sig):
self.logger.debug("send signal %s to %s"%(sig, self.cmd))
os.kill(self._process.pid, sig)
def terminate(self):
self.send_signal(signal.SIGTERM)
def kill(self):
self.send_signal(signal.SIGKILL)
def print_result(self):
print "return code:", self.ret_code
print "return info:", self.ret_info
print " error info:", self.err_info
class RemoteShell(Shell):
'''远程执行命令(ssh方式)。
XXX 含特殊字符的命令可能导致调用失效,如双引号,美元号$
NOTE 若cmd含有双引号,可使用RemoteShell2
'''
def __init__(self, cmd, ip):
ssh = ("ssh -o PreferredAuthentications=publickey -o "
"StrictHostKeyChecking=no -o ConnectTimeout=10")
# 不必检查IP有效性,也不必检查信任关系,有问题shell会报错
cmd = '%s %s "%s"'%(ssh, ip, cmd)
Shell.__init__(self, cmd)
class RemoteShell2(RemoteShell):
'''与RemoteShell相同,只是变换了引号。
'''
def __init__(self, cmd, ip):
RemoteShell.__init__(self, cmd, ip)
self.cmd = "%s %s '%s'"%(ssh, ip, cmd)
class SuShell(Shell):
'''切换用户执行命令(su方式)。
XXX 只适合使用root切换至其它用户。
因为其它切换用户后需要输入密码,这样程序会挂住。
XXX 含特殊字符的命令可能导致调用失效,如双引号,美元号$
NOTE 若cmd含有双引号,可使用SuShell2
'''
def __init__(self, cmd, user):
if os.getuid() != 0: # 非root用户直接报错
raise Exception('SuShell must be called by root user!')
cmd = 'su - %s -c "%s"'%(user, cmd)
Shell.__init__(self, cmd)
class SuShell2(SuShell):
'''与SuShell相同,只是变换了引号。
'''
def __init__(self, cmd, user):
SuShell.__init__(self, cmd, user)
self.cmd = "su - %s -c '%s'"%(user, cmd)
class SuShellDeprecated(Shell):
'''切换用户执行命令(setuid方式)。
执行的函数为run2,而不是run
XXX 以“不干净”的方式运行:仅切换用户和组,环境变量信息不变。
XXX 无法获取命令的ret_code, ret_info, err_info
XXX 只适合使用root切换至其它用户。
'''
def __init__(self, cmd, user):
self.user = user
Shell.__init__(self, cmd)
def run2(self):
if os.getuid() != 0: # 非root用户直接报错
raise Exception('SuShell2 must be called by root user!')
child_pid = os.fork()
if child_pid == 0: # 子进程干活
uid, gid = pwd.getpwnam(self.user)[2:4]
os.setgid(gid) # 必须先设置组
os.setuid(uid)
self.run()
sys.exit(0) # 子进程退出,防止继续执行其它代码
else: # 父进程等待子进程退出
os.waitpid(child_pid, 0)
if __name__ == "__main__":
'''test code'''
# 1. test normal
sa = Shell('who')
sa.run()
sa.print_result()
# 2. test stderr
sb = Shell('ls /export/dir_should_not_exists')
sb.run()
sb.print_result()
# 3. test background
sc = Shell('sleep 1')
sc.run_background()
print 'hello from parent process'
print "return code:", sc.ret_code
print "status:", sc.get_status()
sc.wait()
sc.print_result()
# 4. test kill
import time
sd = Shell('sleep 2')
sd.run_background()
time.sleep(1)
sd.kill()
sd.wait() # NOTE, still need to wait
sd.print_result()
# 5. test multiple command and uncompleted command output
se = Shell('pwd;sleep 1;pwd;pwd')
se.run_background()
time.sleep(1)
se.kill()
se.wait() # NOTE, still need to wait
se.print_result()
# 6. test wrong command
sf = Shell('aaaaa')
sf.run()
sf.print_result()
# 7. test instance reuse to run other command
sf.cmd = 'echo aaaaa'
sf.run()
sf.print_result()
sg = RemoteShell('pwd', '127.0.0.1')
sg.run()
sg.print_result()
# unreachable ip
sg2 = RemoteShell('pwd', '17.0.0.1')
sg2.run()
sg2.print_result()
# invalid ip
sg3 = RemoteShell('pwd', '1711.0.0.1')
sg3.run()
sg3.print_result()
# ip without trust relation
sg3 = RemoteShell('pwd', '10.145.132.247')
sg3.run()
sg3.print_result()
sh = SuShell('pwd', 'ossuser')
sh.run()
sh.print_result()
# wrong user
si = SuShell('pwd', 'ossuser123')
si.run()
si.print_result()
# user need password
si = SuShell('pwd', 'root')
si.run()
si.print_result()
希望本文所述对大家的Python程序设计有所帮助。


猜你喜欢
- 这篇文章阐述的是一种函数式编程(functional-programming)设计模式,我称之为惰性函数定义(Lazy Function D
- 目录前言1. 准备工作2. 连接MongoDB3. 指定数据库4. 指定集合5. 插入数据6. 查询7. 计数8. 排序9. 偏移10. 更
- 上一章节学习了如何在 PPT 中添加段落以及自定义段落(书写段落的内容以及样式的调整),今天的章节将学习在 PPT 中插入表格与图片以及在表
- 下面给大家介绍python实现简易版的web服务器,具体内容详情大家通过本文学习吧!1、请自行了解HTTP协议https://www.jb5
- 计算年、月、日需要安装组件包pip install python-dateutil当前日期时间import datetimeprint da
- python简介Python是一种解释型、面向对象、动态数据类型的高级程序设计语言。Python由Guido van Rossum于1989
- getpixel函数是用来获取图像中某一点的像素的RGB颜色值,getpixel的参数是一个坐标点。对于图象的不同的模式,getpixel函
- #!/usr/bin/env python#coding=utf-8import osfrom pyinotify import Watch
- 本文实例讲述了JS高阶函数原理与用法。分享给大家供大家参考,具体如下:如果您正在学习JavaScript,那么您必须遇到高阶函数这个术语。这
- 上次学会了爬取图片,这次就想着试试爬取商家的联系电话,当然,这里纯属个人技术学习,爬取过后及时删除,不得用于其它违法用途,一切后果自负。首先
- 前言虽然本文讲的是Python,但其实它也适用于所有的编程语言。因为这里面蕴含着编程之魂。所以本文标题没有显著的使用Python关键词。当然
- 1. 创建用户模块应用创建应用users$ python manage.py startapp users 2. 注册用户模块应用
- 折线图介绍折线图和柱状图一样是我们日常可视化最多的一个图例,当然它的优势和适用场景相信大家肯定不陌生,要想快速的得出趋势,抓住趋势二字,就会
- CACHE_BACKEND参数每个缓存后端都可能使用参数。 它们在CACHE_BACKEND设置中以查询字符串形式给出。 有效参数如下:&n
- 这个需求是产品提的,一开始只是设置了 <input style="padding-top: 3px;" type=
- SQL Server有两种备份方式,一种是使用BACKUP DATABASE将数据库文件备份出去,另外一种就是直接拷贝数据库文件mdf和日志
- 前言任何应用都离不开数据,所以在学习python的时候,当然也要学习一个如何用python操作数据库了。MySQLdb就是python对my
- 如果您刚刚开始接触网页设计,是不是经常发生这样的问题呢?做好的网页在自己机器上可以正常浏览,而把页面传到服务器上就总是出现看不到图片,css
- 前言:索引下推(ICP)是针对MySQL使用索引从表中检索数据行的情况的优在没有索引下推的情况下,MySQL通过存储引擎遍历索引来定位表中的
- 从PHP的5.4.0版本开始,PHP提供了一种全新的代码复用的概念,那就是Trait。Trait其字面意思是”特性”、”特点”,我们可以理解