http://www.vimer.cn/2010/12/%E5%9C%A8python%E4%B8%AD%E8%8E%B7%E5%8F%96%E5%BD%93%E5%89%8D%E4%BD%8D%E7%BD%AE%E6%89%80%E5%9C%A8%E7%9A%84%E8%A1%8C%E5%8F%B7%E5%92%8C%E5%87%BD%E6%95%B0%E5%90%8D.html
对于python,这几天一直有两个问题在困扰我:
- 1.python中没办法直接取得当前的行号和函数名。这是有人在论坛里提出的问题,底下一群人只是在猜测python为什么不像__file__一样提供__line__和__func__,但是却最终也没有找到解决方案。
- 2.如果一个函数在不知道自己名字的情况下,怎么才能递归调用自己。这是我一个同事问我的,其实也是获取函数名,但是当时也是回答不出来。
但是今晚!所有的问题都有了答案。
一切还要从我用python的logging模块说起,logging中的format中是有如下选项的:
01 |
% (name)s Name of the logger (logging channel) |
02 |
% (levelno)s Numeric logging level for the message (DEBUG, INFO, |
03 |
WARNING, ERROR, CRITICAL) |
04 |
% (levelname)s Text logging level for the message ( "DEBUG" , "INFO" , |
05 |
"WARNING" , "ERROR" , "CRITICAL" ) |
06 |
% (pathname)s Full pathname of the source file where the logging |
07 |
call was issued ( if available) |
08 |
% (filename)s Filename portion of pathname |
09 |
% (module)s Module (name portion of filename) |
10 |
% (lineno)d Source line number where the logging call was issued |
12 |
% (funcName)s Function name |
13 |
% (created)f Time when the LogRecord was created (time.time() |
15 |
% (asctime)s Textual time when the LogRecord was created |
16 |
% (msecs)d Millisecond portion of the creation time |
17 |
% (relativeCreated)d Time in milliseconds when the LogRecord was created, |
18 |
relative to the time the logging module was loaded |
19 |
(typically at application startup time) |
20 |
% (thread)d Thread ID ( if available) |
21 |
% (threadName)s Thread name ( if available) |
22 |
% (process)d Process ID ( if available) |
23 |
% (message)s The result of record.getMessage(), computed just as |
也就是说,logging是能够获取到调用者的行号和函数名的,那会不会也可以获取到自己的行号和函数名呢?
我们来看一下源码,主要部分如下:
02 |
"""Return the frame object for the caller's stack frame.""" |
06 |
return sys.exc_info()[ 2 ].tb_frame.f_back |
09 |
Find the stack frame of the caller so that we can note the source |
10 |
file name, line number and function name. |
13 |
#On some versions of IronPython, currentframe() returns None if |
14 |
#IronPython isn't run with -X:Frames. |
17 |
rv = "(unknown file)" , 0 , "(unknown function)" |
18 |
while hasattr (f, "f_code" ): |
20 |
filename = os.path.normcase(co.co_filename) |
21 |
if filename = = _srcfile: |
24 |
rv = (co.co_filename, f.f_lineno, co.co_name) |
27 |
def _log( self , level, msg, args, exc_info = None , extra = None ): |
29 |
Low-level logging routine which creates a LogRecord and then calls |
30 |
all the handlers of this logger to handle the record. |
33 |
#IronPython doesn't track Python frames, so findCaller throws an |
34 |
#exception on some versions of IronPython. We trap it here so that |
35 |
#IronPython can use logging. |
37 |
fn, lno, func = self .findCaller() |
39 |
fn, lno, func = "(unknown file)" , 0 , "(unknown function)" |
41 |
fn, lno, func = "(unknown file)" , 0 , "(unknown function)" |
43 |
if not isinstance (exc_info, tuple ): |
44 |
exc_info = sys.exc_info() |
45 |
record = self .makeRecord( self .name, level, fn, lno, msg, args, exc_info, func, extra) |
我简单解释一下,实际上是通过在currentframe函数中抛出一个异常,然后通过向上查找的方式,找到调用的信息。其中
1 |
rv = (co.co_filename, f.f_lineno, co.co_name) |
的三个值分别为文件名,行号,函数名。(可以去http://docs.python.org/library/sys.html来看一下代码中几个系统函数的说明)
OK,如果已经看懂了源码,那获取当前位置的行号和函数名相信也非常清楚了,代码如下:
02 |
# -*- coding: utf-8 -*- |
04 |
#============================================================================= |
05 |
# Author: dantezhu - http://www.vimer.cn |
06 |
# Email: zny2008@gmail.com |
08 |
# Description: 获取当前位置的行号和函数名 |
10 |
# LastChange: 2010-12-17 01:19:19 |
12 |
#============================================================================= |
16 |
"""Return the frame object for the caller's stack frame.""" |
20 |
f = sys.exc_info()[ 2 ].tb_frame.f_back |
21 |
return (f.f_code.co_name, f.f_lineno) |
27 |
if __name__ = = '__main__' : |
输入结果是:
符合预期~~
哈哈,OK!现在应该不用再抱怨取不到行号和函数名了吧~
=============================================================================
后来发现,其实也可以有更简单的方法,如下:
3 |
print sys._getframe().f_code.co_name |
4 |
print sys._getframe().f_back.f_code.co_name |
================================================================================
另外,利用python的 inspect 模块中的getframeinfo也可以得到.
- inspect.getframeinfo( frame [, context ])
-
Get information about a frame or traceback object. A 5-tuple is returned, the last five elements of the frame’s frame record.
Changed in version 2.6: Returns a named tuple Traceback(filename, lineno, function,code_context, index).
- python中获取当前位置所在的行号和函数名(转)
http://www.vimer.cn/2010/12/%E5%9C%A8python%E4%B8%AD%E8%8E%B7%E5%8F%96%E5%BD%93%E5%89%8D%E4%BD%8D%E7 ...
- C/C++ 打印文件名、行号、函数名的方法
转自:http://zhidao.baidu.com/link?url=JLCaxBAXLJVcx_8jsyJVF92E_bZjo4ONJ5Ab-HGlNBc1dfzcAyFAIygwP1qr18aa ...
- C#获取堆栈信息,输出文件名、行号、函数名、列号等
命名空间:System.Diagnostics 得到相关信息: StackTrace st = new StackTrace(new StackFrame(true));StackFrame sf = ...
- Python中获取异常(Exception)信息
异常信息的获取对于程序的调试非常重要,可以有助于快速定位有错误程序语句的位置.下面介绍几种python中获取异常信息的方法,这里获取异常(Exception)信息采用try...except...程序 ...
- Python中获取异常(try Exception)信息
异常信息的获取对于程序的调试非常重要,可以有助于快速定位有错误程序语句的位置. 这里获取异常(Exception)信息采用try...except...程序结构.如下所示: try: ... exce ...
- Mysql编辑工具中使用(Navicat查询结果显示行号)
Mysql编辑工具中使用(Navicat查询结果显示行号) as rownum,a.roleId ) t where a.roleId='admin';
- 设置Centos7中vim与vi编辑器显示行号
设置Centos7中vim与vi编辑器的行号 步骤一: 输入命令设置: 1.vim ~/.vimrc 或者:(vi ~/.vimrc) 步骤二: 输入命令保存: 1.在其中输入 "set n ...
- android 中获取当前焦点所在屏幕中的位置 view.getLocationOnScreen(location)
final int[] location = new int[2]; view.getLocationOnScreen(location); final int[] location = new in ...
- 《Entity Framework 6 Recipes》中文翻译系列 (40) ------ 第七章 使用对象服务之从跟踪器中获取实体与从命令行生成模型(想解决EF第一次查询慢的,请阅读)
翻译的初衷以及为什么选择<Entity Framework 6 Recipes>来学习,请看本系列开篇 7-5 从跟踪器中获取实体 问题 你想创建一个扩展方法,从跟踪器中获取实体,用于数 ...
随机推荐
- JSOI 2017 Round 1滚粗记
day0 到常州一中报道,吃了午饭,好像这次有小火锅. 然后下午听JYY讲线性规划...好神啊. 晚上去试机,机子上没有npp,只有linux下的codeblocks,敲起来一顿一顿的...后来被迫使 ...
- vuex实例详解
vuex是一个专门为vue.js设计的集中式状态管理架构.状态?把它理解为在data中的属性需要共享给其他vue组件使用的部分. 简单的说就是data需要共用的属性 一.小demo 已经用Vue脚手架 ...
- linux/centos定时任务cron
https://www.cnblogs.com/p0st/p/9482167.html cron: crond进程 crontab修改命令 * * * * * command parameter & ...
- 一张图解AlphaGo原理及弱点
声明:本文转载自(微信公众号:CKDD),作者郑宇 张钧波,仅作学习收录之用,不做商业目的. 近期AlphaGo在人机围棋比赛中连胜李世石3局,体现了人工智能在围棋领域的突破,作为人工智能领域的工作者 ...
- 认识hasLayout——IE浏览器css bug的一大罪恶根源 (转)
认识hasLayout--IE浏览器css bug的一大罪恶根源 转 什么是hasLayout?hasLayout是IE特有的一个属性.很多的ie下的css bug都与其息息相关.在ie中,一个元素要 ...
- Mybatis的关联映射
实际的开发中,对数据库的操作常常会涉及到多张表,这在面向对象中就涉及到了对象与对象之间的关联关系.针对多表之间的操作,MyBatis提供了关联映射, 通过关联映射就可以很好的处理对象与对象之间的关联关 ...
- wondows下安装pytho&pip
1.在https://www.python.org/downloads/下载相应的python安装包, 解压安装,配置环境变量. 2.下载pip安装包:https://pypi.python.org/ ...
- 总结开发ERP软件应遵循的一些基本原则
总结一下做管理软件,有哪些项是经过检验的条款,必须遵守的. 界面篇 1 要保存用户的偏号(profile/favourite). ASP.NET 2.0引入此功能,当用户修改默认的控件的属性时,框架 ...
- 【PAT】1012. 数字分类 (20)
1012. 数字分类 (20) 给定一系列正整数,请按要求对数字进行分类,并输出以下5个数字: A1 = 能被5整除的数字中所有偶数的和: A2 = 将被5除后余1的数字按给出顺序进行交错求和,即计算 ...
- 微软企业库5.0 学习之路——第十步、使用Unity解耦你的系统—PART2——了解Unity的使用方法(3)
今天继续介绍Unity,在上一篇的文章中,我介绍了使用UnityContainer来注册对象之间的关系.注册已存在的对象之间的关系,同时着重介绍 了Unity内置的各种生命周期管理器的使用方法,今天则 ...