永远不会调用to_python()(即使在__metaclass__ = models.SubfieldBase的情况下)

时间:2011-03-15 22:27:02

标签: python django django-models

前一段时间,作为学习Python + Django过程的一部分,我决定为BIT列类型编写一个自定义的MySQL特定模型字段。不幸的是,我遇到了一个问题。

项目包含一个“主”应用

“主要”应用包含“python manage.py startapp”创建的所有标准文件,以及extfields.py

extfields.py的内容如下:

from django.db import models
import re
import bitstring

class BitField(models.Field):
    description = 'A class representing a field of type "BIT" (MySQL-specific)'
    __metaclass__ = models.SubfieldBase

    def __init__(self, *args, **kwargs):
        bf_size = int(kwargs.pop('bitfield_size', 0))

        assert bf_size > 0, '%ss must have a positive bitfield_size' % self.__class__.__name__
        self._bf_size = bf_size

        super(BitField, self).__init__(*args, **kwargs)


    def db_type(self):
        return 'BIT(%d)' % self._bf_size


    def to_python(self, value):
        print('to_python starts')

        if isinstance(value, bitstring.BitArray):
            return value    

        value = str(value)

        regex = re.compile('^[01]{%d}$' % self._bf_size)

        assert regex.search(value) == True, 'The value must be a bit string.'

        print('to_python ends')

        return bitstring.BitArray(bin=value)


    def get_db_prep_value(self, value):
        return value.bin

models.py的内容:

from django.db import models
import extfields

class MessageManager(models.Manager):
    """
    This manager is solely for the Message model. We need to alter the default
    QuerySet so that we'll get the correct values for the attributes bit field   
    """
    def get_query_set(self):
        return super(MessageManager, self).get_query_set().defer(
            'attributes'
        ).extra(
            select={'attributes': 'BIN(attributes)'}
        )


class Message(models.Model):
    attributes = extfields.BitField(bitfield_size=15)

    objects = MessageManager()

当我使用python shell(通过python manage.py shell)时,我得到以下内容:

>>> from main import models
>>> m = models.Message.objects.get(pk=1)
>>> m
<Message_Deferred_attributes: Message_Deferred_attributes object>
>>> m.attributes
u'1110001110'
>>> type(m.attributes)
<type 'unicode'>
>>> m.attributes = '1312312'
>>> m.attributes
'1312312'

如您所见,m.attributes是一个普通字符串,而不是bitstring.BitArray实例。

有人可以告诉我哪里犯了错误吗?

我在Ubuntu 10.04上使用Python 2.6.5。我导入的bitstring模块就是这个:http://code.google.com/p/python-bitstring/。 Python-django包版本是1.1.1-2ubuntu1.3。

编辑(回应emulbreh的评论):

现在我的to_python()定义如下所示:

def to_python(self, value):
        print 'to_python'

        if isinstance(value, bitstring.BitArray):
            return value    

        print type(value)    
        value = str(value)
        print'\n'
        print value
        print '\n'
        print type(value)        

        regex = re.compile('^[01]{%d}$' % self._bf_size)

        assert regex.search(value) == True, 'The value must be a bit string.'
        value = bitstring.BitArray(bin=value)
        print '\n'
        print type(value)
        print 'End of to_python'

        return value

控制台输出是:

在此之后,引发AssertionError。

1 个答案:

答案 0 :(得分:1)

您无需在QuerySet中执行任何特殊操作即可支持自定义字段。您当前defer()您的字段,然后添加一个原始的额外(select =)属性,该属性恰好与您的字段具有相同的名称。 如果您只是删除自定义管理器(或.defer()。extra()调用),您应该没问题。