Module recorder improvement for osv.memory wizard (Need code review)

bzr revid: hda@tinyerp.com-20100430140806-sw1x62589o1eo4ff
This commit is contained in:
HDA (OpenERP) 2010-04-30 19:38:06 +05:30
parent 44eaad8484
commit 64af6d44e0
1 changed files with 81 additions and 31 deletions

View File

@ -36,6 +36,8 @@ class recording_objects_proxy(osv_pool):
_old_args = args[5].copy()
elif len(args) >= 5 and isinstance(args[4], dict):
_old_args = args[4].copy()
elif len(args) > 5 and args[3] != 'write' and isinstance(args[5], dict):
_old_args = args[5].copy()
else:
_old_args = None
res = super(recording_objects_proxy, self).execute(*args, **argv)
@ -45,11 +47,17 @@ class recording_objects_proxy(osv_pool):
if mod and mod.recording:
if args[3] not in ('default_get','read','fields_view_get','fields_get','search','search_count','name_search','name_get','get','request_get', 'get_sc', 'unlink'):
if _old_args is not None:
if args[3] == 'create':
args[4].update(_old_args)
elif args[3] == 'write':
args[5].update(_old_args)
mod.recording_data.append(('query', args, argv,res))
if args[3] != 'write' and args[3] != 'create' and len(args) > 5 and isinstance(args[5], dict):
args=list(args)
args[5]=_old_args
args=tuple(args)
mod.recording_data.append(('osv_memory_action', args, argv ,None))
else:
if args[3] == 'create':
args[4].update(_old_args)
elif args[3] == 'write':
args[5].update(_old_args)
mod.recording_data.append(('query', args, argv,res))
return res
def exec_workflow(self, *args, **argv):
@ -61,7 +69,7 @@ class recording_objects_proxy(osv_pool):
return res
recording_objects_proxy()
class xElement(minidom.Element):
"""dom.Element with compact print
The Element in minidom has a problem: if printed, adds whitespace
@ -113,6 +121,15 @@ class eval(yaml.YAMLObject):
def __repr__(self):
return 'eval(%s)' % (str(self.expr,))
class function(yaml.YAMLObject):
yaml_tag = u'!python'
def __init__(self, model, action=None,attrs={}):
self.model = model
self.action = action
self.attrs=attrs
def __repr__(self):
return '!python {model: %s}: |' % (str(self.model), )
class base_module_record(osv.osv):
_name = "ir.module.record"
_columns = {
@ -143,7 +160,8 @@ class base_module_record(osv.osv):
if type(id)==type(()):
id=id[0]
if (model,id) in self.ids:
return self.ids[(model,id)], False
res_id = self.ids[(model,id)]
return res_id, False
dt = self.pool.get('ir.model.data')
dtids = dt.search(cr, uid, [('model','=',model), ('res_id','=',id)])
if not dtids:
@ -153,13 +171,14 @@ class base_module_record(osv.osv):
return obj.module+'.'+obj.name, obj.noupdate
def _create_record(self, cr, uid, doc, model, data, record_id, noupdate=False):
data_pool = self.pool.get('ir.model.data')
model_pool = self.pool.get(model)
record = doc.createElement('record')
record.setAttribute("id", record_id)
record.setAttribute("model", model)
record_list = [record]
lids = data_pool.search(cr, uid, [('model','=',model)])
res = data_pool.read(cr, uid, lids[:1], ['module'])
if res:
@ -212,17 +231,7 @@ class base_module_record(osv.osv):
newid = self._create_id(cr, uid, fields[key]['relation'], valitem[2])
valitem[1]=newid
self.ids[(fields[key]['relation'], valitem[1])] = newid
# if valitem[0] in (0,1):
# if key in model_pool._columns:
# fname = model_pool._columns[key]._fields_id
# else:
# fname = model_pool._inherit_fields[key][2]._fields_id
# valitem[2][fname] = record_id
# newid,update = self._get_id(cr, uid, fields[key]['relation'], valitem[1])
# if not newid:
# newid = self._create_id(cr, uid, fields[key]['relation'], valitem[2])
# self.ids[(fields[key]['relation'], valitem[1])] = newid
#
childrecord, update = self._create_record(cr, uid, doc, fields[key]['relation'],valitem[2], newid)
noupdate = noupdate or update
record_list += childrecord
@ -254,26 +263,31 @@ class base_module_record(osv.osv):
model_pool = self.pool.get(model)
data_pool = self.pool.get('ir.model.data')
lids = data_pool.search(cr, uid, [('model','=',model)])
res = data_pool.read(cr, uid, lids[:1], ['module'])
attrs={}
if res:
self.depends[res[0]['module']]=True
fields = model_pool.fields_get(cr, uid)
defaults={}
defaults[model] = model_pool.default_get(cr, uid, data)
try:
defaults[model] = model_pool.default_get(cr, uid, data)
except:
defaults[model]={}
for key,val in data.items():
if ((key in defaults[model]) and (val == defaults[model][key])) and not(fields[key].get('required',False)):
continue
if not (val or (fields[key]['type']=='function')):
if fields[key]['type'] in ('integer','float'):
if not val:
val=0.0
attrs[key] = val
elif not (val or (fields[key]['type']=='function')):
continue
elif fields[key]['type'] in ('boolean',):
if not val:
continue
attrs[key] = val
elif fields[key]['type'] in ('integer','float'):
attrs[key] = val
elif fields[key]['type'] in ('many2one',):
if type(val) in (type(''), type(u'')):
id = val
@ -420,9 +434,9 @@ class base_module_record(osv.osv):
def _generate_object_yaml(self, cr, uid, rec, result=None):
if self.mode=="create":
id = self._create_id(cr, uid, rec[2],rec[4])
self.ids[(rec[2], result)] = id
record = self._create_yaml_record(cr, uid, rec[2], rec[4], id)
yml_id = self._create_id(cr, uid, rec[2],rec[4])
self.ids[(rec[2], result)] = yml_id
record = self._create_yaml_record(cr, uid, rec[2], rec[4], yml_id)
return record
if self.mode=="workflow":
id,update = self._get_id(cr, uid, rec[2], rec[4])
@ -445,6 +459,32 @@ class base_module_record(osv.osv):
self.ids[(rec[2], result)] = id
return record
def _generate_function_yaml(self, cr, uid, args):
db, uid, model, action, ids, context = args
temp_context = context.copy()
active_id = temp_context['active_id']
active_model = temp_context['active_model']
active_id, update = self._get_id(cr, uid, active_model, active_id)
if not active_id:
active_id = 1
rec_id, noupdate = self._get_id(cr, uid, model, ids[0])
temp_context['active_id'] = "ref('%s')"%unicode(active_id)
temp_context['active_ids'][0] = "ref('%s')"%str(active_id)
function={}
function['model'] = model
function['action'] = action
attrs = "self.%s(cr, uid, [ref('%s')], {" %(action, rec_id, )
for k, v in temp_context.iteritems():
if isinstance(v, str):
f= "'"+k+"': "+"'%s'"%v + ", "
else:
v=str(v).replace('"', '')
f= "'"+k+"': "+"%s"%v + ", "
attrs = attrs + f
attrs=str(attrs)+'})'
function['attrs'] = attrs
return function
def _generate_assert_xml(self, rec, doc):
pass
@ -496,15 +536,27 @@ class base_module_record(osv.osv):
self.mode="copy"
elif rec[0] == 'workflow':
self.mode="workflow"
elif rec[0] == 'osv_memory_action':
self.mode='osv_memory_action'
else:
continue
if self.mode == "workflow":
record= self._generate_object_yaml(cr, uid, rec[1],rec[0])
yaml_file+="!comment Performing a workflow action %s on module %s"%(record['action'], record['model']) + '''\n'''
object=yaml.load(unicode('''\n !workflow %s \n'''%record,'iso-8859-1'))
attrs=attrs.replace("''", '"')
yaml_file += str(object) + '''\n\n'''
elif self.mode == 'osv_memory_action':
osv_action= self._generate_function_yaml(cr, uid, rec[1])
yaml_file+="!comment Performing an osv_memory action %s on module %s"%(osv_action['action'], osv_action['model']) + '''\n'''
osv_action=yaml.load(unicode('''\n !python %s \n'''%osv_action,'iso-8859-1'))
yaml_file += str(osv_action) + '''\n'''
attrs=yaml.dump(osv_action.attrs, default_flow_style=False)
attrs=attrs.replace("''", '"')
attrs=attrs.replace("'", '')
yaml_file += attrs + '''\n\n'''
else:
record= self._generate_object_yaml(cr, uid, rec[1],rec[3])
record= self._generate_object_yaml(cr, uid, rec[1], rec[3])
if self.mode == "create" or self.mode == "copy":
yaml_file+="!comment Creating a %s record"%(record['model']) + '''\n'''
else:
@ -517,9 +569,7 @@ class base_module_record(osv.osv):
yaml_result=''''''
for line in yaml_file.split('\n'):
line=line.replace("''","'")
if line.find('!record') == 0:
line = "- \n" + " " + line
elif line.find('!workflow') == 0:
if (line.find('!record') == 0) or (line.find('!workflow') == 0) or (line.find('!python') == 0):
line = "- \n" + " " + line
elif line.find('!comment') == 0:
line=line.replace('!comment','- \n ')