python---haproxy---文件操作
haproxy 文件操作,操作属于简单操作,不复杂
# -*- coding:utf-8 -*-
# LC def search(*args): #查找Haproxy文件中的服务器
list1 = []
with open("haproxyfile","r") as f:
flag = False
for line in f:
if line.strip() == "backend %s" % args: #查找第一个以backend + 输入域名的起头的backend,将相关信息记录list中
flag = True
list1.append(line.strip())
continue #并继续循环,为了将backend下一行执行,即按着flag = True执行
if line.strip().startswith("backend") or line.strip() == "": #查到第二个backend这将flag置于Fasle,如果是空行,也将flag置于Fasle中,(防止文章末尾有多个空行)
flag = False
if flag:
list1.append(line.strip()) #将正确backend的后续信息继续记录至list中
return list1 def delete(string):
dict = eval(string)
backend = dict["backend"]
record = dict["record"]
new_file_list = []
if backend in domain_list(): #判读要删除的域名是否在文件内
with open("haproxyfile","r",encoding="utf-8") as f_read:
for line in f_read:
new_file_list.append(line) #读取文件的每行,将每行写入列表
if line.strip() == "backend %s" %backend: #如果有符合的backend,则将最近的写入列表弹出
new_file_list.pop()
if line.strip() == "server %s weight %s maxconn %s" %(record["server"],record["weight"],record["maxconn"]):#如果有符合的server信息,则将最近的写入列表弹出
new_file_list.pop()
with open("haproxyfile1", "a") as f_write: #将删除后的写入文件中
for line in new_file_list:
f_write.write(line)
else:
print("The Domain not in this file!") def add(string): #增加ha文件配置服务器信息
dict = eval(string)
backend = dict["backend"]
record = dict["record"]
with open("haproxyfile","a") as f_write:
f_write.write("backend %s\n"%backend)
f_write.write("\t\tserver %s %s weight %s maxconn %s"%(record["server"][0],record["server"][1],
record["weight"],
record["maxconn"])) def domain_list(): #将文件中所有的domain都摘出来
backend_name = []
with open("haproxyfile","r") as f_read:
for line in f_read:
if line.startswith("backend"):
domain_name = line.split()[1]
backend_name.append(domain_name)
return backend_name #域名信息查找
domain_search_name = input("Please input the domain your search:")
if domain_search_name in domain_list():
domain_info = search(domain_search_name)
print(domain_info) #域名信息删除 string = "{'backend': 'www.yst.com.cn','record':{'server':'1.1.1.1','weight': 30,'maxconn': 2300}}"
delete(string) #域名信息增加
string = "{'backend': 'www.yst.com.cn','record':{'server':'1.1.1.1','weight': 30,'maxconn': 2300}}"
add(string)
收集backend信息和对应server的信息
def backend_info():
with open("haproxyfile","r") as f_read:
backend_list = []
dict_all = {}
dict_ser = {}
server_list = []
for line in f_read:
if line.strip().startswith("backend"):
backend_name = line.split()[1]
backend_list.append(backend_name)
server_list = []
if line.strip().startswith("server"):
dict_ser['server'] = line.strip().split()[1]
dict_ser['weight'] = line.strip().split()[3]
dict_ser['maxconn'] = line.strip().split()[5]
server_list.append(dict_ser)
dict_all[backend_name] = server_list
return backend_list,dict_all #返回backend的所有域名信息和域名包含的服务器信息
python---haproxy---文件操作的更多相关文章
- Python :open文件操作,配合read()使用!
python:open/文件操作 open/文件操作f=open('/tmp/hello','w') #open(路径+文件名,读写模式) 如何打开文件 handle=open(file_name,a ...
- Python 常见文件操作的函数示例(转)
转自:http://www.cnblogs.com/txw1958/archive/2012/03/08/2385540.html # -*-coding:utf8 -*- ''''' Python常 ...
- 孤荷凌寒自学python第三十五天python的文件操作之针对文件操作的os模块的相关内容
孤荷凌寒自学python第三十五天python的文件操作之针对文件操作的os模块的相关内容 (完整学习过程屏幕记录视频地址在文末,手写笔记在文末) 一.打开文件后,要务必记得关闭,所以一般的写法应当 ...
- 孤荷凌寒自学python第三十三天python的文件操作初识
孤荷凌寒自学python第三十三天python的文件操作初识 (完整学习过程屏幕记录视频地址在文末,手写笔记在文末) 今天开始自学python的普通 文件操作部分的内容. 一.python的文件打开 ...
- python中文件操作的六种模式及对文件某一行进行修改的方法
一.python中文件操作的六种模式分为:r,w,a,r+,w+,a+ r叫做只读模式,只可以读取,不可以写入 w叫做写入模式,只可以写入,不可以读取 a叫做追加写入模式,只可以在末尾追加内容,不可以 ...
- python中文件操作的其他方法
前面介绍过Python中文件操作的一般方法,包括打开,写入,关闭.本文中介绍下python中关于文件操作的其他比较常用的一些方法. 首先创建一个文件poems: p=open('poems','r', ...
- Python常见文件操作的函数示例
# -*-coding:utf8 -*- ''''' Python常见文件操作示例 os.path 模块中的路径名访问函数 分隔 basename() 去掉目录路径, 返回文件名 dirname() ...
- python的文件操作及简单的用例
一.python的文件操作介绍 1.文件操作函数介绍 open() 打开一个文件 语法:open(file, mode='r', buffering=-1, encoding=None, errors ...
- python基本文件操作
python文件操作 python的文件操作相对于java复杂的IO流简单了好多,只要关心文件的读和写就行了 基本的文件操作 要注意的是,当不存在某路径的文件时,w,a模式会自动新建此文件夹,当读模式 ...
- [转]python file文件操作--内置对象open
python file文件操作--内置对象open 说明: 1. 函数功能打开一个文件,返回一个文件读写对象,然后可以对文件进行相应读写操作. 2. file参数表示的需要打开文件的相对路径(当前 ...
随机推荐
- 【shell脚本】ftp自动上传mysql备份文件
上一篇中 mysql每日备份shell脚本 给出了使用mysqldump备份到本地的脚本,接着下面是利用ftp把备份文件传输到远程服务器的脚本. 当然也可以用scp,rsync等等方案. #!/bin ...
- 分布式集群Session共享 简单多tomcat8+redis的session共享实现
; i++) { str = str + session.getAttribute("name" + i) + "<br>"; } response ...
- Linux的启动流程(一)
· 启动第一步--加载BIOS 当你打开计算机电源,计算机会首先加载BIOS信息,BIOS信息是如此的重要,以至于计算机必须在最开始就找到它.这是因为BIOS中包含了CPU的相关信息.设备启动顺序信息 ...
- c++友元函数与友元类
友元函数和友元类的需要: 类具有封装和信息隐藏的特性.只有类的成员函数才能访问类的私有成员,程序中的其他函数是无法访问私有成员的.非成员函数可以访问类中的公有成员,但是如果将数据成员都定义为公有的,这 ...
- Chipmunk僵尸物理对象的出现和解决(一)
最近在写的BrickHit游戏App中出现了一个比较头疼的问题. 该问题很难用常规手段调试,因为其发生看起来貌似是随机的. 我想在这里将这个问题的现象和解决过程详细的记录下来,一来避免其他童鞋走弯路, ...
- iOS开发:创建真机调试证书步骤(还有一篇是真机测试步骤)(2015年)
(关于真机测试步骤的blog:http://blog.csdn.net/hbblzjy/article/details/51680282) 1.首先打开苹果的开发者网站(https://develop ...
- 如何来看单片机外设A/D转换器ADC0804时序图
如图,为单片机AD转换器的一种: ADC0804单片集成A/D转换器.它采用CMOS工艺20引脚集成芯片,分辩率为8位,转换时间为100µs,输入电压范围为0-5V.芯片内具有三态输出数据锁存器,可直 ...
- LeetCode之“动态规划”:Best Time to Buy and Sell Stock I && II && III && IV
Best Time to Buy and Sell Stock I 题目链接 题目要求: Say you have an array for which the ith element is the ...
- OpenCV分通道显示图片,灰度,融合,直方图,彩色直方图
代码有参考跟整合:没有一一列出出处 // split_rgb.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #include <io ...
- 【Android 应用开发】BluetoothClass详解
一. BluetoothClass简介 1. 继承关系 public final class BluetoothClass extends Object implements Parcelable 该 ...