⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 execute.py

📁 Network Administration Visualized 网络管理可视化源码
💻 PY
字号:
import popen2import selectimport signalimport osimport timeclass Timeout(Exception):    passclass Executer:    def __init__(self, cmd, timeout=0):        self.cmd = cmd        self.instance = popen2.Popen4(cmd)        self.timeout = timeout    def read(self):        if not self.timeout:            return self.instance.fromchild.read()        else:            r, w, e = select.select([self.instance.fromchild], [], [], self.timeout)            if not r:                # Things timed out. Kill the child                os.kill(self.instance.pid, signal.SIGTERM)                time.sleep(1)                try:                    pid, sts = os.waitpid(self.instance.pid, os.WNOHANG)                    os.kill(self.instance.pid, 9)                    print "Killed with -9, %s" % self.cmd                except Exception, e:                    print e                os.close(self.instance.tochild.fileno())                os.close(self.instance.fromchild.fileno())                # this is a bit ugly, but we need to let the os                # actually kill the process.                                # do some cleanup                popen2._cleanup()                raise Timeout('Timeout while executing %s' % self.cmd)            else:                answer = r[0].read()                os.close(self.instance.tochild.fileno())                os.close(self.instance.fromchild.fileno())                # do some cleanup...                popen2._cleanup()                return answer

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -