fix build
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design.Serialization / TypeCodeDomSerializer.cs
1 //
2 // System.ComponentModel.Design.Serialization.TypeCodeDomSerializer
3 //
4 // Authors:
5 //        Ivan N. Zlatev (contact i-nZ.net)
6 //
7 // (C) 2007 Ivan N. Zlatev
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using System;
33 using System.Collections;
34 using System.ComponentModel;
35 using System.ComponentModel.Design;
36
37 using System.CodeDom;
38
39 namespace System.ComponentModel.Design.Serialization
40 {
41         public class TypeCodeDomSerializer : CodeDomSerializerBase
42         {
43
44                 public TypeCodeDomSerializer ()
45                 {
46                 }
47
48                 public virtual CodeTypeDeclaration Serialize (IDesignerSerializationManager manager, object root, ICollection members)
49                 {
50                         if (root == null)
51                                 throw new ArgumentNullException ("root");
52                         if (manager == null)
53                                 throw new ArgumentNullException ("manager");
54
55                         RootContext rootContext = new RootContext (new CodeThisReferenceExpression (), root);
56                         StatementContext statementContext = new StatementContext ();
57                         if (members != null)
58                                 statementContext.StatementCollection.Populate (members);
59                         statementContext.StatementCollection.Populate (root);
60                         CodeTypeDeclaration declaration = new CodeTypeDeclaration (manager.GetName (root));
61
62                         manager.Context.Push (rootContext);
63                         manager.Context.Push (statementContext);
64                         manager.Context.Push (declaration);
65
66                         if (members != null) {
67                                 foreach (object member in members)
68                                         base.SerializeToExpression (manager, member);
69                         }
70                         base.SerializeToExpression (manager, root);
71
72                         manager.Context.Pop ();
73                         manager.Context.Pop ();
74                         manager.Context.Pop ();
75
76                         return declaration;
77                 }
78
79                 // TODO - http://msdn2.microsoft.com/en-us/library/system.componentmodel.design.serialization.typecodedomserializer.deserialize.aspx
80                 //
81                 public virtual object Deserialize (IDesignerSerializationManager manager, CodeTypeDeclaration declaration)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 protected virtual CodeMemberMethod GetInitializeMethod (IDesignerSerializationManager manager, CodeTypeDeclaration declaration, object value)
87                 {
88                         if (value == null)
89                                 throw new ArgumentNullException ("value");
90                         if (declaration == null)
91                                 throw new ArgumentNullException ("declaration");
92                         if (manager == null)
93                                 throw new ArgumentNullException ("manager");
94
95                         return new CodeConstructor ();
96                 }
97
98                 protected virtual CodeMemberMethod[] GetInitializeMethods (IDesignerSerializationManager manager, CodeTypeDeclaration declaration)
99                 {
100                         if (manager == null)
101                                 throw new ArgumentNullException ("manager");
102                         if (declaration == null)
103                                 throw new ArgumentNullException ("declaration");
104
105                         return (new CodeMemberMethod[] { new CodeConstructor () });
106                 }
107         }
108 }
109 #endif