python中使用sys模板和logging模块获取行号和函数名的方法


Posted in Python onApril 15, 2014

对于python,这几天一直有两个问题在困扰我:
1.python中没办法直接取得当前的行号和函数名。这是有人在论坛里提出的问题,底下一群人只是在猜测python为什么不像__file__一样提供__line__和__func__,但是却最终也没有找到解决方案。
2.如果一个函数在不知道自己名字的情况下,怎么才能递归调用自己。这是我一个同事问我的,其实也是获取函数名,但是当时也是回答不出来。

但是今晚!所有的问题都有了答案。
一切还要从我用python的logging模块说起,logging中的format中是有如下选项的:

%(name)s            Name of the logger (logging channel)
%(levelno)s         Numeric logging level for the message (DEBUG, INFO,
                    WARNING, ERROR, CRITICAL)
%(levelname)s       Text logging level for the message ("DEBUG", "INFO",
                    "WARNING", "ERROR", "CRITICAL")
%(pathname)s        Full pathname of the source file where the logging
                    call was issued (if available)
%(filename)s        Filename portion of pathname
%(module)s          Module (name portion of filename)
%(lineno)d          Source line number where the logging call was issued
                    (if available)
%(funcName)s        Function name
%(created)f         Time when the LogRecord was created (time.time()
                    return value)
%(asctime)s         Textual time when the LogRecord was created
%(msecs)d           Millisecond portion of the creation time
%(relativeCreated)d Time in milliseconds when the LogRecord was created,
                    relative to the time the logging module was loaded
                    (typically at application startup time)
%(thread)d          Thread ID (if available)
%(threadName)s      Thread name (if available)
%(process)d         Process ID (if available)
%(message)s         The result of record.getMessage(), computed just as
                    the record is emitted

也就是说,logging是能够获取到调用者的行号和函数名的,那会不会也可以获取到自己的行号和函数名呢?
我们来看一下源码,主要部分如下:

def currentframe():
    """Return the frame object for the caller's stack frame."""
    try:
        raise Exception
    except:
        return sys.exc_info()[2].tb_frame.f_back
def findCaller(self):
    """
    Find the stack frame of the caller so that we can note the source
    file name, line number and function name.
    """
    f = currentframe()
    #On some versions of IronPython, currentframe() returns None if
    #IronPython isn't run with -X:Frames.
    if f is not None:
        f = f.f_back
    rv = "(unknown file)", 0, "(unknown function)"
    while hasattr(f, "f_code"):
        co = f.f_code
        filename = os.path.normcase(co.co_filename)
        if filename == _srcfile:
            f = f.f_back
            continue
        rv = (co.co_filename, f.f_lineno, co.co_name)
        break
    return rv
def _log(self, level, msg, args, exc_info=None, extra=None):
    """
    Low-level logging routine which creates a LogRecord and then calls
    all the handlers of this logger to handle the record.
    """
    if _srcfile:
        #IronPython doesn't track Python frames, so findCaller throws an
        #exception on some versions of IronPython. We trap it here so that
        #IronPython can use logging.
        try:
            fn, lno, func = self.findCaller()
        except ValueError:
            fn, lno, func = "(unknown file)", 0, "(unknown function)"
    else:
        fn, lno, func = "(unknown file)", 0, "(unknown function)"
    if exc_info:
        if not isinstance(exc_info, tuple):
            exc_info = sys.exc_info()
    record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info, func, extra)
    self.handle(record)

我简单解释一下,实际上是通过在currentframe函数中抛出一个异常,然后通过向上查找的方式,找到调用的信息。其中

rv = (co.co_filename, f.f_lineno, co.co_name)

的三个值分别为文件名,行号,函数名。(可以去http://docs.python.org/library/sys.html来看一下代码中几个系统函数的说明)
OK,如果已经看懂了源码,那获取当前位置的行号和函数名相信也非常清楚了,代码如下:

#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
#=============================================================================
#  FileName:        xf.py
#  Description:     获取当前位置的行号和函数名
#  Version:         1.0
#=============================================================================
'''
import sys
def get_cur_info():
    """Return the frame object for the caller's stack frame."""
    try:
        raise Exception
    except:
        f = sys.exc_info()[2].tb_frame.f_back
    return (f.f_code.co_name, f.f_lineno)def callfunc():
    print get_cur_info()
 
if __name__ == '__main__':
    callfunc()

输入结果是:
('callfunc', 24)

符合预期~~
哈哈,OK!现在应该不用再抱怨取不到行号和函数名了吧~

=============================================================================
后来发现,其实也可以有更简单的方法,如下:

import sys
def get_cur_info():
    print sys._getframe().f_code.co_name
    print sys._getframe().f_back.f_code.co_name
get_cur_info()

调用结果是:
get_cur_info
<module>
Python 相关文章推荐
Python的加密模块md5、sha、crypt使用实例
Sep 28 Python
Python中的TCP socket写法示例
May 11 Python
django请求返回不同的类型图片json,xml,html的实例
May 22 Python
浅谈Python2、Python3相对路径、绝对路径导入方法
Jun 22 Python
Python使用pyodbc访问数据库操作方法详解
Jul 05 Python
Python代码实现http/https代理服务器的脚本
Aug 12 Python
python多线程同步之文件读写控制
Feb 25 Python
python 实现将小图片放到另一个较大的白色或黑色背景图片中
Dec 12 Python
对tensorflow中tf.nn.conv1d和layers.conv1d的区别详解
Feb 11 Python
python GUI库图形界面开发之PyQt5动态加载QSS样式文件
Feb 25 Python
tensorflow中tf.reduce_mean函数的使用
Apr 19 Python
Python中rapidjson参数校验实现
Jul 25 Python
python 动态获取当前运行的类名和函数名的方法
Apr 15 #Python
python使用百度翻译进行中翻英示例
Apr 14 #Python
python使用xauth方式登录饭否网然后发消息
Apr 11 #Python
python判断、获取一张图片主色调的2个实例
Apr 10 #Python
Python使用新浪微博API发送微博的例子
Apr 10 #Python
一个检测OpenSSL心脏出血漏洞的Python脚本分享
Apr 10 #Python
Python删除指定目录下过期文件的2个脚本分享
Apr 10 #Python
You might like
PHP新手上路(六)
2006/10/09 PHP
基于php验证码函数的使用示例
2013/05/03 PHP
php阿拉伯数字转中文人民币大写
2015/12/21 PHP
php进程间通讯实例分析
2016/07/11 PHP
对PHP依赖注入的理解实例分析
2016/10/09 PHP
php文件上传及下载附带显示文件及目录功能
2017/04/27 PHP
php删除一个路径下的所有文件夹和文件的方法
2018/02/07 PHP
PHP实现的函数重载功能示例
2018/08/03 PHP
解析javascript 数组以及json元素的添加删除
2013/06/26 Javascript
解决extjs grid 不随窗口大小自适应的改变问题
2014/01/26 Javascript
js或jquery实现页面打印可局部打印
2014/03/27 Javascript
jquery JSON的解析方式示例介绍
2014/07/27 Javascript
jQuery使用append在html元素后同时添加多项内容的方法
2015/03/26 Javascript
jQuery模拟黑客帝国矩阵效果实例
2015/06/28 Javascript
jquery实现Ctrl+Enter提交表单的方法
2015/07/21 Javascript
Ajax清除浏览器js、css、图片缓存的方法
2015/08/06 Javascript
apply和call方法定义及apply和call方法的区别
2015/11/15 Javascript
基于BootStrap Metronic开发框架经验小结【一】框架总览及菜单模块的处理
2016/05/12 Javascript
解析javascript图片懒加载与预加载的分析总结
2016/10/27 Javascript
angular6 填坑之sdk的方法
2018/12/27 Javascript
vue组件间通信六种方式(总结篇)
2019/05/15 Javascript
微信小程序实现3D轮播图效果(非swiper组件)
2019/09/21 Javascript
基于Vue.js+Nuxt开发自定义弹出层组件
2020/10/09 Javascript
[10:18]2018DOTA2国际邀请赛寻真——找回自信的TNCPredator
2018/08/13 DOTA
Python错误处理操作示例
2018/07/18 Python
通过pykafka接收Kafka消息队列的方法
2018/12/27 Python
关于ZeroMQ 三种模式python3实现方式
2019/12/23 Python
PyCharm 2020.2.2 x64 下载并安装的详细教程
2020/10/15 Python
利用CSS3的flexbox实现水平垂直居中与三列等高布局
2016/09/12 HTML / CSS
css3与html5实现响应式导航菜单(导航栏)效果分享
2014/02/12 HTML / CSS
计算机专业毕业生的自我评价
2013/11/18 职场文书
英语老师推荐信
2014/02/26 职场文书
护理专业自荐信范文
2014/02/26 职场文书
致800米运动员广播稿(10篇)
2014/10/17 职场文书
2014年民政工作总结
2014/11/26 职场文书
TV动画「神渣☆爱豆」公开第一弹主视觉图
2022/03/21 日漫