[MERGE] *: fix/rationalize db logging to avoid incorrect values during logging
[odoo/odoo.git] / openerp / modules / registry.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (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 Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 """ Models registries.
23
24 """
25 from contextlib import contextmanager
26 import logging
27 import threading
28
29 import openerp.sql_db
30 import openerp.osv.orm
31 import openerp.tools
32 import openerp.modules.db
33 import openerp.tools.config
34 from openerp.tools import assertion_report
35
36 _logger = logging.getLogger(__name__)
37
38 class Registry(object):
39     """ Model registry for a particular database.
40
41     The registry is essentially a mapping between model names and model
42     instances. There is one registry instance per database.
43
44     """
45
46     def __init__(self, db_name):
47         self.models = {}    # model name/model instance mapping
48         self._sql_error = {}
49         self._store_function = {}
50         self._init = True
51         self._init_parent = {}
52         self._assertion_report = assertion_report.assertion_report()
53         self.fields_by_model = None
54
55         # modules fully loaded (maintained during init phase by `loading` module)
56         self._init_modules = set()
57
58         self.db_name = db_name
59         self.db = openerp.sql_db.db_connect(db_name)
60
61         # Indicates that the registry is 
62         self.ready = False
63
64         # Inter-process signaling (used only when openerp.multi_process is True):
65         # The `base_registry_signaling` sequence indicates the whole registry
66         # must be reloaded.
67         # The `base_cache_signaling sequence` indicates all caches must be
68         # invalidated (i.e. cleared).
69         self.base_registry_signaling_sequence = 1
70         self.base_cache_signaling_sequence = 1
71
72         # Flag indicating if at least one model cache has been cleared.
73         # Useful only in a multi-process context.
74         self._any_cache_cleared = False
75
76         cr = self.db.cursor()
77         has_unaccent = openerp.modules.db.has_unaccent(cr)
78         if openerp.tools.config['unaccent'] and not has_unaccent:
79             _logger.warning("The option --unaccent was given but no unaccent() function was found in database.")
80         self.has_unaccent = openerp.tools.config['unaccent'] and has_unaccent
81         cr.close()
82
83     def do_parent_store(self, cr):
84         for o in self._init_parent:
85             self.get(o)._parent_store_compute(cr)
86         self._init = False
87
88     def obj_list(self):
89         """ Return the list of model names in this registry."""
90         return self.models.keys()
91
92     def add(self, model_name, model):
93         """ Add or replace a model in the registry."""
94         self.models[model_name] = model
95
96     def get(self, model_name):
97         """ Return a model for a given name or None if it doesn't exist."""
98         return self.models.get(model_name)
99
100     def __getitem__(self, model_name):
101         """ Return a model for a given name or raise KeyError if it doesn't exist."""
102         return self.models[model_name]
103
104     def load(self, cr, module):
105         """ Load a given module in the registry.
106
107         At the Python level, the modules are already loaded, but not yet on a
108         per-registry level. This method populates a registry with the given
109         modules, i.e. it instanciates all the classes of a the given module
110         and registers them in the registry.
111
112         """
113         models_to_load = [] # need to preserve loading order
114         # Instantiate registered classes (via the MetaModel automatic discovery
115         # or via explicit constructor call), and add them to the pool.
116         for cls in openerp.osv.orm.MetaModel.module_to_models.get(module.name, []):
117             # models register themselves in self.models
118             model = cls.create_instance(self, cr)
119             if model._name not in models_to_load:
120                 # avoid double-loading models whose declaration is split
121                 models_to_load.append(model._name)
122         return [self.models[m] for m in models_to_load]
123
124     def clear_caches(self):
125         """ Clear the caches
126         This clears the caches associated to methods decorated with
127         ``tools.ormcache`` or ``tools.ormcache_multi`` for all the models.
128         """
129         for model in self.models.itervalues():
130             model.clear_caches()
131         # Special case for ir_ui_menu which does not use openerp.tools.ormcache.
132         ir_ui_menu = self.models.get('ir.ui.menu')
133         if ir_ui_menu:
134             ir_ui_menu.clear_cache()
135
136
137     # Useful only in a multi-process context.
138     def reset_any_cache_cleared(self):
139         self._any_cache_cleared = False
140
141     # Useful only in a multi-process context.
142     def any_cache_cleared(self):
143         return self._any_cache_cleared
144
145     @classmethod
146     def setup_multi_process_signaling(cls, cr):
147         if not openerp.multi_process:
148             return
149
150         # Inter-process signaling:
151         # The `base_registry_signaling` sequence indicates the whole registry
152         # must be reloaded.
153         # The `base_cache_signaling sequence` indicates all caches must be
154         # invalidated (i.e. cleared).
155         cr.execute("""SELECT sequence_name FROM information_schema.sequences WHERE sequence_name='base_registry_signaling'""")
156         if not cr.fetchall():
157             cr.execute("""CREATE SEQUENCE base_registry_signaling INCREMENT BY 1 START WITH 1""")
158             cr.execute("""SELECT nextval('base_registry_signaling')""")
159             cr.execute("""CREATE SEQUENCE base_cache_signaling INCREMENT BY 1 START WITH 1""")
160             cr.execute("""SELECT nextval('base_cache_signaling')""")
161
162     @contextmanager
163     def cursor(self, auto_commit=True):
164         cr = self.db.cursor()
165         try:
166             yield cr
167             if auto_commit:
168                 cr.commit()
169         finally:
170             cr.close()
171
172
173 class RegistryManager(object):
174     """ Model registries manager.
175
176         The manager is responsible for creation and deletion of model
177         registries (essentially database connection/model registry pairs).
178
179     """
180     # Mapping between db name and model registry.
181     # Accessed through the methods below.
182     registries = {}
183     registries_lock = threading.RLock()
184
185     @classmethod
186     def get(cls, db_name, force_demo=False, status=None, update_module=False):
187         """ Return a registry for a given database name."""
188         try:
189             return cls.registries[db_name]
190         except KeyError:
191             return cls.new(db_name, force_demo, status,
192                            update_module)
193         finally:
194             # set db tracker - cleaned up at the WSGI
195             # dispatching phase in openerp.service.wsgi_server.application
196             threading.current_thread().dbname = db_name
197
198     @classmethod
199     def new(cls, db_name, force_demo=False, status=None,
200             update_module=False):
201         """ Create and return a new registry for a given database name.
202
203         The (possibly) previous registry for that database name is discarded.
204
205         """
206         import openerp.modules
207         with cls.registries_lock:
208             registry = Registry(db_name)
209
210             # Initializing a registry will call general code which will in turn
211             # call registries.get (this object) to obtain the registry being
212             # initialized. Make it available in the registries dictionary then
213             # remove it if an exception is raised.
214             cls.delete(db_name)
215             cls.registries[db_name] = registry
216             try:
217                 # This should be a method on Registry
218                 openerp.modules.load_modules(registry.db, force_demo, status, update_module)
219             except Exception:
220                 del cls.registries[db_name]
221                 raise
222
223             # load_modules() above can replace the registry by calling
224             # indirectly new() again (when modules have to be uninstalled).
225             # Yeah, crazy.
226             registry = cls.registries[db_name]
227
228             cr = registry.db.cursor()
229             try:
230                 Registry.setup_multi_process_signaling(cr)
231                 registry.do_parent_store(cr)
232                 registry.get('ir.actions.report.xml').register_all(cr)
233                 cr.commit()
234             finally:
235                 cr.close()
236
237         registry.ready = True
238
239         if update_module:
240             # only in case of update, otherwise we'll have an infinite reload loop!
241             cls.signal_registry_change(db_name)
242         return registry
243
244     @classmethod
245     def delete(cls, db_name):
246         """Delete the registry linked to a given database.  """
247         with cls.registries_lock:
248             if db_name in cls.registries:
249                 cls.registries[db_name].clear_caches()
250                 del cls.registries[db_name]
251
252     @classmethod
253     def delete_all(cls):
254         """Delete all the registries. """
255         with cls.registries_lock:
256             for db_name in cls.registries.keys():
257                 cls.delete(db_name)
258
259     @classmethod
260     def clear_caches(cls, db_name):
261         """Clear caches
262
263         This clears the caches associated to methods decorated with
264         ``tools.ormcache`` or ``tools.ormcache_multi`` for all the models
265         of the given database name.
266
267         This method is given to spare you a ``RegistryManager.get(db_name)``
268         that would loads the given database if it was not already loaded.
269         """
270         with cls.registries_lock:
271             if db_name in cls.registries:
272                 cls.registries[db_name].clear_caches()
273
274     @classmethod
275     def check_registry_signaling(cls, db_name):
276         if openerp.multi_process and db_name in cls.registries:
277             registry = cls.get(db_name)
278             cr = registry.db.cursor()
279             try:
280                 cr.execute("""
281                     SELECT base_registry_signaling.last_value,
282                            base_cache_signaling.last_value
283                     FROM base_registry_signaling, base_cache_signaling""")
284                 r, c = cr.fetchone()
285                 # Check if the model registry must be reloaded (e.g. after the
286                 # database has been updated by another process).
287                 if registry.base_registry_signaling_sequence != r:
288                     _logger.info("Reloading the model registry after database signaling.")
289                     registry = cls.new(db_name)
290                     registry.base_registry_signaling_sequence = r
291                 # Check if the model caches must be invalidated (e.g. after a write
292                 # occured on another process). Don't clear right after a registry
293                 # has been reload.
294                 elif registry.base_cache_signaling_sequence != c:
295                     _logger.info("Invalidating all model caches after database signaling.")
296                     registry.base_cache_signaling_sequence = c
297                     registry.clear_caches()
298                     registry.reset_any_cache_cleared()
299                     # One possible reason caches have been invalidated is the
300                     # use of decimal_precision.write(), in which case we need
301                     # to refresh fields.float columns.
302                     for model in registry.models.values():
303                         for column in model._columns.values():
304                             if hasattr(column, 'digits_change'):
305                                 column.digits_change(cr)
306             finally:
307                 cr.close()
308
309     @classmethod
310     def signal_caches_change(cls, db_name):
311         if openerp.multi_process and db_name in cls.registries:
312             # Check the registries if any cache has been cleared and signal it
313             # through the database to other processes.
314             registry = cls.get(db_name)
315             if registry.any_cache_cleared():
316                 _logger.info("At least one model cache has been cleared, signaling through the database.")
317                 cr = registry.db.cursor()
318                 r = 1
319                 try:
320                     cr.execute("select nextval('base_cache_signaling')")
321                     r = cr.fetchone()[0]
322                 finally:
323                     cr.close()
324                 registry.base_cache_signaling_sequence = r
325                 registry.reset_any_cache_cleared()
326
327     @classmethod
328     def signal_registry_change(cls, db_name):
329         if openerp.multi_process and db_name in cls.registries:
330             registry = cls.get(db_name)
331             cr = registry.db.cursor()
332             r = 1
333             try:
334                 cr.execute("select nextval('base_registry_signaling')")
335                 r = cr.fetchone()[0]
336             finally:
337                 cr.close()
338             registry.base_registry_signaling_sequence = r
339
340 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: