Skip to main content

Protobuf mixin for Django model

Project description

https://travis-ci.org/myyang/django-pb-model.svg

Django-pb-model provides model mixin mapping/converting protobuf message. Currently support basic value fields and naive relation convertion.

You could examine testcases for more details

PR are always welcome :))

Compatibility

Currnetly tested with metrics:

  • Python2.7, 3.4, 3.5, 3.6

  • Django1.8

Install

  1. pip install

pip install django-pb-model
  1. Add django-pb to django settings.py

INSTALLED_APPS = [
    ....,
    pb_model,
    ...
]
  1. Run python/django essential commands:

python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic -l
  1. Start hacking or using app.

Usage

Declare your protobuf message and compile it. For example:

message Account {
    int id = 1;
    string email = 2;
    string password = 3;
}

as account.proto file. Then compile it with:

$ protoc --python_out=. account.proto

You will get account_pb2.py.

Now you can interact with your protobuf model, add ProtoBufMixin to your model like:

from django.db import models
from pb_model.models import ProtoBufMixin
from . import account_pb2

class Account(ProtoBufMixin, models.Model):
    pb_model = account_pb2.Account

    email = models.EmailField(max_length=64)
    password = models.CharField(max_length=64)

    def __str__(self):
        # For demo only, encrypt password and DO NOT expose
        return "Username: {a.email}, passowrd: {a.password}".format(a=self)

By above settings, you can covert between django model and protobuf easily.

>>> account = Account.objects.create(email='user@email.com', password='passW0rd')
>>> account.to_pb()
email: "user@email.com"
passord: "passW0rd"

>>> account2 = Account()
>>> account2.from_pb(account.to_pb())
<Account: Username: username@mail, password: passW0rd>

Field details

There are several special field types while converting, read following section for more details.

Field name mapping

To adapt schema migration, field mapping are expected.

For example, the email field in previous session are alter to username, but we don’t want to break the consistance of protobuf protocol. You may add pb_2_dj_field_map attribute to solve this problem. Such as:

class Account(ProtoBufMixin, models.Model):
    pb_model = account_pb2.Account
    pb_2_dj_field_map = {
        "account": "username",  # protobuf field as key and django field as value
    }

    username = models.CharField(max_length=64)
    password = models.CharField(max_length=64)

Many-to-Many field

M2M field is a QuerySet Relation in Django. By default, we assume target message field is “repeated” nested message, ex:

message M2M {
    int32 id = 1;
}

message Main {
    int32 id = 1;

    repeated M2M m2m = 2;
}

Django model would be:

class M2M(models.Model):
    pass

class Main(models.Model):

    m2m = models.ManyToManyField(M2M)

Django to Protobuf

If this is not the format you expected, overwite _m2m_to_protobuf() of Django model by yourself.

Protobuf to Django

Same as previous section, we assume m2m field is repeated value in protobuf. By default, NO operation is performed, which means you may query current relation if your coverted django model instance has a valid PK.

If you want to modify your database while converting on-the-fly, overwrite logics such as:

from django.db import transaction

...

class PBCompatibleModel(ProtoBufMixin, models.Model):

    def _repeated_to_m2m(self, dj_field, _pb_repeated_set):
        with transaction.atomic():
            for item in _pb_repeated_set:
                dj_field.get_or_create(pk=item.pk, defaults={....})

    ...

Also, you should write your coverting policy if m2m is not nested repeated message in _repeated_to_m2m method

Datetime Field

Datetime is a special singular value.

We currently convert between datetime.datetime (Python) and google.protobuf.timestamp_pb2.Timestamp (ProboBuf), for example:

ProtoBuf message:

package models;

import "google/protobuf/timestamp.proto";

message WithDatetime {
    int32 id = 1;
    google.protobuf.Timestamp datetime_field = 2;
}

Django Model:

class WithDatetime(ProtoBufMixin, models.Model):
    pb_model = models_pb2.WithDatetime

    datetime_field = models.DatetimeField(default=timezone.now())
>>> WithDatetime.objects.create().to_pb()
datetime_field {
seconds: 1495119614
nanos: 282705000
}

Timezone

Note that if you use USE_TZ in Django settings, all datetime would be converted to UTC timezone while storing in protobuf message. And coverted to default timezone in django according to settings.

LICENSE

Please read LICENSE file

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-pb-model-0.1.2.tar.gz (11.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page