免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1514 | 回复: 4
打印 上一主题 下一主题

这段代码问题出在哪里? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-27 17:30 |只看该作者 |倒序浏览
#! /usr/bin/env python
#coding=utf-8

from cStringIO import StringIO
import re

vhost_start=re.compile(r'<VirtualHost\s+(.*?)>')
vhost_end=re.compile(r'</VirtualHost>')
docroot=re.compile(r'(DocumentRoot\s+)(\S+)')

def replace_docroot(conf_string,vhost,new_docroot):
    confile=StringIO(conf_string)
    in_host=False
    curr_vhost=None
    for line in confile:
        vhost_start_match=vhost_start.search(line)
        if vhost_start_match:
            curr_vhost=vhost_start_match.groups()[0] #所以group() 和group(0)返回,匹配的整个表达式的字符串
            in_host=True
        if in_host and (curr_vhost==vhost):
            docroot_match=docroot.search(line)
            if docroot_match:
                sub_line=docroot.sub(r'\1%s' % new_docroot,line)
                line=sub_line
        vhost_end_match=vhost_end.search(line)
        if vhost_end_match:
            in_host=False
        yield line

if __name__=='__main__':
    import sys
    confile=sys.argv[1]
    vhost=sys.argv[2]
    docroot=sys.argv[3]
    conf_string=open(confile).read()
    for line  in replace_docroot(conf_string, vhost, docroot):
        print line,


执行结果是

python 13.py  httpd.conf *:80  /home/html/support.xxx.com

Traceback (most recent call last):
File "13.py", line 36, in ?
    for line  in replace_docroot(conf_string, vhost, docroot):
  File "13.py", line 21, in replace_docroot
    docroot_match=docroot.search(line)
AttributeError: 'str' object has no attribute 'search'

哪位大大能帮我看看

论坛徽章:
1
15-16赛季CBA联赛之新疆
日期:2017-03-09 12:33:45
2 [报告]
发表于 2013-04-27 18:52 |只看该作者
回复 1# tianer

在函数的开始加global docroot
   

论坛徽章:
0
3 [报告]
发表于 2013-04-28 10:43 |只看该作者
回复 2# jeppeter


    你好,加了还是有报错

#! /usr/bin/env python
#coding=utf-8

from cStringIO import StringIO
import re

global docroot
vhost_start=re.compile(r'<VirtualHost\s+(.*?)>')
vhost_end=re.compile(r'</VirtualHost>')
docroot=re.compile(r'(DocumentRoot\s+)(\S+)')

def replace_docroot(conf_string,vhost,new_docroot):
    confile=StringIO(conf_string)
    in_host=False
    curr_vhost=None
    for line in confile:
        vhost_start_match=vhost_start.search(line)
        if vhost_start_match:
            curr_vhost=vhost_start_match.groups()[0] #所以group() 和group(0)返回,匹配的整个表达式的字符串
            in_host=True
        if in_host and (curr_vhost==vhost):
            docroot_match=docroot.search(line)
            if docroot_match:
                sub_line=docroot.sub(r'\1%s' % new_docroot,line)
                line=sub_line
        vhost_end_match=vhost_end.search(line)
        if vhost_end_match:
            in_host=False
        yield line

if __name__=='__main__':
    import sys
    confile=sys.argv[1]
    vhost=sys.argv[2]
    docroot=sys.argv[3]
    conf_string=open(confile).read()
    for line  in replace_docroot(conf_string, vhost, docroot):
        print line,

python 13.py  httpd.conf *:80  /home/html/support.xxx.com
Traceback (most recent call last):
  File "13.py", line 37, in ?
    for line  in replace_docroot(conf_string, vhost, docroot):
  File "13.py", line 22, in replace_docroot
    docroot_match=docroot.search(line)
AttributeError: 'str' object has no attribute 'search'

论坛徽章:
0
4 [报告]
发表于 2013-04-28 11:11 |只看该作者
有两个问题:

1. Docroot定义了两次:

第一次:

   vhost_start=re.compile(r'<VirtualHost\s+(.*?)>')
vhost_end=re.compile(r'</VirtualHost>')
docroot=re.compile(r'(DocumentRoot\s+)(\S+)')

第二次,main函数中:

if __name__=='__main__':
    import sys
    confile=sys.argv[1]
    vhost=sys.argv[2]
    docroot=sys.argv[3]
    conf_string=open(confile).read()
    for line  in replace_docroot(conf_string, vhost, docroot):
        print line,

从报错的地方看,显然函数 replace_docroot 传入的参数docroot只是个字符串,不是re模块compile出来的正则表达式集合。 所以字符串没有search方法。

你自己看看replace_docroot函数中用的docroot到底应该是哪一个? 最好的办法,将下面的代码:
vhost_start=re.compile(r'<VirtualHost\s+(.*?)>')
vhost_end=re.compile(r'</VirtualHost>')
docroot=re.compile(r'(DocumentRoot\s+)(\S+)')
直接移到函数replace_docroot中。

论坛徽章:
0
5 [报告]
发表于 2013-04-28 14:08 |只看该作者
回复 4# ts32767


    果然是这样,谢谢了。终于解决了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP