python 网络监控主机

import subprocess
import threading
import time
from queue import Queue
from queue import Empty

def wrapper(func):
    def inner(*args,**kwargs):
        s1 = time.time()
        func(*args,**kwargs)
        s2 = time.time()
        s3 = s2 - s1
        print(s3)
    return inner


def run_ping(ip):
    proc = subprocess.run('ping -n 1 -w 2 {}'.format(ip),
                          shell=True,
                          stdout=subprocess.PIPE,
                          stderr=subprocess.PIPE,
                          )
    return_code = proc.returncode
    # print(return_code)
    if return_code == 0:
        print('{} 网络良好!'.format(ip))
    else:
        print('{} 网络故障!'.format(ip))


def is_reacheable(q):
    try:
        while True:
            ip = q.get_nowait()
            run_ping(ip)
    except Empty:
        pass

@wrapper
def main():
    q = Queue()
    with open('ip.txt') as f:
        for line in f:
            q.put(line)
    threads = []
    for i in range(10):
        thr = threading.Thread(target=is_reacheable, args=(q,))
        thr.start()
        threads.append(thr)
    for thr in threads:
        thr.join()


if __name__ == '__main__':
    main()
    # run_ping('12.0.0.11')

 改进版

import subprocess
import time
import threading
import json
from functools import wraps
from queue import Queue, Empty

THREAD_POOL_SIZE = 18


def create_ip():
    with open('ip.txt', 'a+', encoding='utf-8') as f:
        for i in range(20):
            f.write('127.0.0.{}\n'.format(i))


def wrapper(func):
    @wraps(func)
    def _timmer(*args, **kwargs):
        start_time = time.time()
        func(*args, **kwargs)
        finish_time = time.time() - start_time
        print('共耗时{:.2f}秒'.format(finish_time))
    return _timmer


def run_ping(ip):
    ret_dic = {}
    result = subprocess.run('ping -n 1 -w 1 {}'.format(ip),
                            shell=True,
                            stdout=subprocess.DEVNULL)
    result_code = result.returncode
    ret_dic[ip] = result_code
    return json.dumps(ret_dic)


def print_ping(ret):
    ret_dic = json.loads(ret)
    for ip, ret_code in ret_dic.items():
        if ret_code != 0:
            with open('result.txt', 'a+', encoding='utf-8') as f:
                f.write('{} 网络不通 {}\n'.format(
                    ip,
                    time.strftime('%Y-%m-%d %X')
                ))
            print('{} is offline'.format(ip))


def worker(work_queue, result_queue):
    while True:
        try:
            ip = work_queue.get(block=False)
        except Empty:
            break
        else:
            try:
                result = run_ping(ip)
            except Exception as e:
                result_queue.put(e)
            else:
                result_queue.put(result)
            finally:
                work_queue.task_done()


@wrapper
def main():
    print('正在网络检查,请稍候......')
    work_queue = Queue()
    result_queue = Queue()
    with open('ip.txt') as f:
        for ip in f:
            ip = ip.strip()
            work_queue.put(ip)
    threads = [
        threading.Thread(target=worker, args=(work_queue, result_queue))
        for _ in range(THREAD_POOL_SIZE)
    ]
    for thread in threads:
        thread.start()
    work_queue.join()
    while threads:
        threads.pop().join()
    while not result_queue.empty():
        result = result_queue.get()
        if isinstance(result, Exception):
            raise result
        print_ping(result)
    print('检查完毕!')


if __name__ == '__main__':
    # create_ip()
    main()

 

posted @ 2019-03-24 13:29  superniao  阅读(1209)  评论(0编辑  收藏  举报