溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python批量啟動關(guān)閉游戲程序

發(fā)布時間:2020-07-04 18:53:15 來源:網(wǎng)絡(luò) 閱讀:1569 作者:yht_1990 欄目:編程語言
#!/usr/bin/env python
#coding:utf-8

import os,re,sys

def numSort():
    global game_gen_path,noStart,alreadyStart
    alreadyStart = set()
    allservice = set()
    game_gen_path = '/data/bz-tw-and/'
    command="ps aux | grep bz-tw-and-s |  awk '{print $11}' | awk -F'/' '{print $2}' | grep -v '^$' | cut -d'-' -f 4"
    service = os.popen('%s' % command,'r').readlines()  #popen需要用表格式形式閱讀,會有\(zhòng)n出現(xiàn),需要strip()去除
    for service in service:
        service_name = service.strip().strip()[1:]
        alreadyStart.add(service_name)
    for qu_name in os.listdir(game_gen_path):
        if re.match('s\d+',qu_name):
             allservice.add(qu_name[1:])
    noStart = sorted(list(map(int,alreadyStart^allservice)))
    alreadyStart = sorted(list(map(int,alreadyStart)))

def outer(fun):
    def wrapper():
        fun()
        for qu_name in qu_service:
            excutePath = game_gen_path + 's' + str(qu_name) + '/bin/'
            for fileName in os.listdir(excutePath):
                if fileName == script:
                    print('##### s\033[31m%s\033[0m now %s... #####' % (qu_name,status))
                    os.system('sh %s' % (excutePath + fileName))
    return wrapper

@outer
def start():
    global qu_service,script,status
    numSort()
    qu_service = noStart
    script = 'start.sh'
    status = 'start'

@outer
def stop():
    global qu_service,script,status
    numSort()
    qu_service = alreadyStart
    script = 'stop.sh'
    status = 'stop'

def status():
    command = "ps aux | grep bz-tw-and-s |  awk '{print $11}' | awk -F'/' '{print $2}' | grep -v '^$' | sort -t's' -k 2n | awk -F's' '{print $2}'"
    service = os.popen('%s' % command, 'r').readlines()
    if service == []:
        print '進程已經(jīng)全部關(guān)閉'
    else:
        for process in service:
            fushu = process.strip()
            print('bz-tw-and-s'+'\033[31m%s\033[0m' % fushu)

def callable(input_key):
    script_name = sys.argv[0]
    try:
        service_option = {'start': start, 'stop': stop, 'status': status}
        return service_option[input_key]()
    except KeyError as e:
        print e
        print ('Example: %s start|stop|status' % script_name)

if __name__ == '__main__':
    callable(sys.argv[1])
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI