]> git.jsancho.org Git - mojodb.git/blob - collection.py
3c93b8b3192f909f1d31b01100fa5072e8fb7e01
[mojodb.git] / collection.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    mojo, a Python library for implementing document based databases
5 #    Copyright (C) 2013-2014 by Javier Sancho Fernandez <jsf at jsancho dot org>
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation, either version 3 of the License, or
10 #    (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16 #
17 #    You should have received a copy of the GNU General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import msgpack
23 from cursor import Cursor
24 import uuid
25
26 class Collection(object):
27     def __init__(self, database, table_name):
28         self.database = database
29         self.table_name = str(table_name)
30
31     def __repr__(self):
32         return "Collection(%r, %r)" % (self.database, self.table_name)
33
34     def exists(self):
35         return (self.database.exists() and self.table_name in self.database.collection_names())
36
37     def _create_field(self, field_name):
38         fields = [
39             {'name': 'id', 'type': 'char', 'size': 512, 'primary': True},
40             {'name': 'name', 'type': 'char', 'size': 64, 'primary': True},
41             {'name': 'value', 'type': 'text', 'null': False},
42             {'name': 'number', 'type': 'float'},
43             ]
44         return self.database.connection._create_table(self.database.db_name, '%s$%s' % (self.table_name, field_name), fields)
45
46     def _get_fields(self):
47         tables = self.database.connection._get_tables(self.database.db_name)
48         return [str(x[x.find('$')+1:]) for x in filter(lambda x: x.startswith('%s$' % self.table_name), tables)]
49
50     def count(self):
51         return self.database.connection._count(self.database.db_name, self.table_name)
52
53     def find(self, *args, **kwargs):
54         return Cursor(self, *args, **kwargs)
55
56     def insert(self, doc_or_docs):
57         if not self.database.db_name in self.database.connection.database_names():
58             self.database._create_database()
59         if not self.table_name in self.database.collection_names():
60             self._create_field('_id')
61
62         if not type(doc_or_docs) in (list, tuple):
63             docs = [doc_or_docs]
64         else:
65             docs = doc_or_docs
66         for doc in docs:
67             doc_id = uuid.uuid4().hex
68             if not '_id' in doc:
69                 doc['_id'] = doc_id
70             self._insert_document(doc_id, doc)
71
72         if type(doc_or_docs) in (list, tuple):
73             return [d['_id'] for d in docs]
74         else:
75             return docs[0]['_id']
76
77     def _insert_document(self, doc_id, doc):
78         fields = self._get_fields()
79         for f in doc:
80             if not f in fields:
81                 self._create_field(f)
82             table_f = '%s$%s' % (self.table_name, f)
83             self._insert_field(doc_id, table_f, f, doc[f])
84
85     def _insert_field(self, doc_id, field_table, field_name, field_value):
86         values = {
87             'id': doc_id,
88             'name': field_name,
89             'value': msgpack.dumps(field_value),
90             }
91         if type(field_value) in (int, float):
92             values['number'] = field_value
93
94         self.database.connection._insert(self.database.db_name, field_table, values)
95
96         if type(field_value) in (list, tuple) and not '.' in field_name:
97             for i in xrange(len(field_value)):
98                 self._insert_field(doc_id, field_table, "%s..%s" % (field_name, i), field_value[i])
99         elif type(field_value) is dict:
100             for k, v in field_value.iteritems():
101                 self._insert_field(doc_id, field_table, "%s.%s" % (field_name, k), v)