Mercurial > hg > ltpda
comparison m-toolbox/classes/@provenance/fromStruct.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % FROMSTRUCT creates from a structure a PROVENANCE object. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % FUNCTION: fromStruct | |
5 % | |
6 % DESCRIPTION: Creates from a structure a PROVENANCE object. | |
7 % | |
8 % CALL: obj = fromStruct(obj, struct) | |
9 % | |
10 % VERSION: $Id: fromStruct.m,v 1.5 2011/03/28 17:02:28 ingo Exp $ | |
11 % | |
12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
13 | |
14 function objs = fromStruct(objs, obj_struct) | |
15 | |
16 % Get the class name of the object. | |
17 cn = class(objs); | |
18 | |
19 % Define function name for updating the structure | |
20 fcnName = ([cn '.update_struct']); | |
21 | |
22 % Initialize output objects | |
23 objs = feval([cn '.initObjectWithSize'], size(obj_struct, 1), size(obj_struct, 2)); | |
24 | |
25 % Update structure (if necessary) | |
26 for kk = 1:numel(obj_struct) | |
27 | |
28 % Get structure version | |
29 if isfield(obj_struct, 'tbxver') | |
30 tbxVer = obj_struct(kk).tbxver; | |
31 else | |
32 tbxVer = '1.0'; | |
33 end | |
34 % Update structure | |
35 up_struct = feval(fcnName, obj_struct(kk), tbxVer); | |
36 | |
37 % Call super-class | |
38 objs(kk) = fromStruct@ltpda_nuo(objs(kk), up_struct); | |
39 | |
40 % Set 'creator' object | |
41 if isfield(up_struct, 'creator') | |
42 objs(kk).creator = up_struct.creator; | |
43 end | |
44 | |
45 % Set 'ip' object | |
46 if isfield(up_struct, 'ip') | |
47 objs(kk).ip = up_struct.ip; | |
48 end | |
49 | |
50 % Set 'hostname' object | |
51 if isfield(up_struct, 'hostname') | |
52 objs(kk).hostname = up_struct.hostname; | |
53 end | |
54 | |
55 % Set 'os' object | |
56 if isfield(up_struct, 'os') | |
57 objs(kk).os = up_struct.os; | |
58 end | |
59 | |
60 % Set 'matlab_version' object | |
61 if isfield(up_struct, 'matlab_version') | |
62 objs(kk).matlab_version = up_struct.matlab_version; | |
63 end | |
64 | |
65 % Set 'sigproc_version' object | |
66 if isfield(up_struct, 'sigproc_version') | |
67 objs(kk).sigproc_version = up_struct.sigproc_version; | |
68 end | |
69 | |
70 % Set 'symbolic_math_version' object | |
71 if isfield(up_struct, 'symbolic_math_version') | |
72 objs(kk).symbolic_math_version = up_struct.symbolic_math_version; | |
73 end | |
74 | |
75 % Set 'optimization_version' object | |
76 if isfield(up_struct, 'optimization_version') | |
77 objs(kk).optimization_version = up_struct.optimization_version; | |
78 end | |
79 | |
80 % Set 'database_version' object | |
81 if isfield(up_struct, 'database_version') | |
82 objs(kk).database_version = up_struct.database_version; | |
83 end | |
84 | |
85 % Set 'control_version' object | |
86 if isfield(up_struct, 'control_version') | |
87 objs(kk).control_version = up_struct.control_version; | |
88 end | |
89 | |
90 % Set 'ltpda_version' object | |
91 if isfield(up_struct, 'ltpda_version') | |
92 objs(kk).ltpda_version = up_struct.ltpda_version; | |
93 end | |
94 | |
95 end | |
96 | |
97 end | |
98 |