types.CodeType()python调用的参数是什么?

Chi*_*tor 15 python compiler-construction google-app-engine dynamic-cast introspection

我正在尝试为python编写自己的"marshal"代码,这样我就可以在Google App Engine上存储已编译的python代码,以动态的方式提供脚本.大家都可以验证,GAE不支持"marshal","pickle"不能序列化代码对象.

我发现我可以构造一个代码对象,types.CodeType()但它需要12个参数.

尽管我已经尝试过,但我找不到任何关于此调用的文档,我真的需要构建代码对象,以便我可以exec().我的问题是,有没有人知道这个types.CodeType()"构造函数" 的参数是什么或者是什么方式来反省它?我已经使用了这里info()定义的功能,但它只是吐出一般信息!

快速FAQ:

  • 问:为什么要编译代码?
  • 答:CPU时间花费在Google App Engine上的真实资金,以及我可以节省数量的每个CPU周期.
  • 问:为什么不使用"元帅"?
  • 答:这是Google App Engine中不受支持的模块之一.
  • 问:为什么不使用"泡菜"?
  • 答:Pickle不支持代码对象的序列化.

UPDATE

截至2011年7月7日,Google App Engine基础架构不允许实例化代码对象,因此我的论点没有实际意义.希望将来在GAE上得到修复.

tjo*_*ans 6

这里记录了C API函数PyCode_New(最低限度):http://docs.python.org/c-api/code.html - 这个函数的C源代码(Python 2.7)在这里:http:// hg. python.org/cpython/file/b5ac5e25d506/Objects/codeobject.c#l43

PyCodeObject *
PyCode_New(int argcount, int nlocals, int stacksize, int flags,
           PyObject *code, PyObject *consts, PyObject *names,
           PyObject *varnames, PyObject *freevars, PyObject *cellvars,
           PyObject *filename, PyObject *name, int firstlineno,
           PyObject *lnotab)
Run Code Online (Sandbox Code Playgroud)

但是,在Python构造函数中,最后六个参数似乎稍微交换了一下.这是提取Python传入的参数的C代码:http://hg.python.org/cpython/file/b5ac5e25d506/Objects/codeobject.c#l247

if (!PyArg_ParseTuple(args, "iiiiSO!O!O!SSiS|O!O!:code",
                      &argcount, &nlocals, &stacksize, &flags,
                      &code,
                      &PyTuple_Type, &consts,
                      &PyTuple_Type, &names,
                      &PyTuple_Type, &varnames,
                      &filename, &name,
                      &firstlineno, &lnotab,
                      &PyTuple_Type, &freevars,
                      &PyTuple_Type, &cellvars))
    return NULL;
Run Code Online (Sandbox Code Playgroud)

Pythonized:

def __init__(self, argcount, nlocals, stacksize, flags, code,
                   consts, names, varnames, filename, name, 
                   firstlineno, lnotab, freevars=None, cellvars=None): # ...
Run Code Online (Sandbox Code Playgroud)


les*_*ana 6

问的问题是:

这个类型的参数是什么.CodeType()"构造函数"

从关于检查模块的python文档:

co_argcount: number of arguments (not including * or ** args)
co_code: string of raw compiled bytecode
co_consts: tuple of constants used in the bytecode
co_filename: name of file in which this code object was created
co_firstlineno: number of first line in Python source code
co_flags: bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
co_lnotab: encoded mapping of line numbers to bytecode indices
co_name: name with which this code object was defined
co_names: tuple of names of local variables
co_nlocals: number of local variables
co_stacksize: virtual machine stack space required
co_varnames: tuple of names of arguments and local variables
Run Code Online (Sandbox Code Playgroud)

这篇博文有更详细的解释:http://tech.blog.aknin.name/2010/07/03/pythons-innards-code-objects/

注意:博客文章讨论python 3,而上面引用的python文档是python 2.7.


auk*_*ost 5

我去了这里找到的代码并删除了已弃用的"新"模块的依赖项.

import types, copy_reg
def code_ctor(*args):
    # delegate to new.code the construction of a new code object
    return types.CodeType(*args)
def reduce_code(co):
    # a reductor function must return a tuple with two items: first, the
    # constructor function to be called to rebuild the argument object
    # at a future de-serialization time; then, the tuple of arguments
    # that will need to be passed to the constructor function.
    if co.co_freevars or co.co_cellvars:
        raise ValueError, "Sorry, cannot pickle code objects from closures"
    return code_ctor, (co.co_argcount, co.co_nlocals, co.co_stacksize,
        co.co_flags, co.co_code, co.co_consts, co.co_names,
        co.co_varnames, co.co_filename, co.co_name, co.co_firstlineno,
        co.co_lnotab)
# register the reductor to be used for pickling objects of type 'CodeType'
copy_reg.pickle(types.CodeType, reduce_code)
if __name__ == '__main__':
    # example usage of our new ability to pickle code objects
    import cPickle
    # a function (which, inside, has a code object, of course)
    def f(x): print 'Hello,', x
    # serialize the function's code object to a string of bytes
    pickled_code = cPickle.dumps(f.func_code)
    # recover an equal code object from the string of bytes
    recovered_code = cPickle.loads(pickled_code)
    # build a new function around the rebuilt code object
    g = types.FunctionType(recovered_code, globals( ))
    # check what happens when the new function gets called
    g('world')
Run Code Online (Sandbox Code Playgroud)

  • `freevars`和`cellvars`用于闭包.它们是可选的,因为并非所有功能都使用它们. (2认同)
  • 在所有这些麻烦之后,我将解决方案部署到了我的GAE服务器,并且它遇到了"RuntimeError:无法在受限执行模式下创建代码对象"的问候:-( (2认同)