2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web / System.Web.UI / ObjectTagBuilder.cs
1 //
2 // System.Web.UI.ObjectTagBuilder
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc. (http://www.ximian.com)
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
31 using System;
32 using System.Collections;
33 using System.Web.Compilation;
34
35 namespace System.Web.UI
36 {
37         public sealed class ObjectTagBuilder : ControlBuilder
38         {
39                 string id;
40                 string scope;
41                 Type type;
42                 
43                 public ObjectTagBuilder ()
44                 {
45                         SetTagName ("object");
46                 }
47
48                 public override void AppendLiteralString (string s) 
49                 {
50                         // Do nothing
51                 }
52
53                 public override void AppendSubBuilder (ControlBuilder subBuilder) 
54                 {
55                         // Do nothing
56                 }
57  
58                 public override void Init (TemplateParser parser,
59                                            ControlBuilder parentBuilder,
60                                            Type type,
61                                            string tagName,
62                                            string id,
63                                            IDictionary attribs) 
64                 {
65                         if (attribs == null)
66                                 throw new ParseException (parser.Location, "Error in ObjectTag.");
67
68                         attribs.Remove ("runat");
69                         this.id = attribs ["id"] as string;
70                         attribs.Remove ("id");
71                         if (this.id == null || this.id.Trim () == "")
72                                 throw new ParseException (parser.Location, "Object tag must have a valid ID.");
73
74                         scope = attribs ["scope"] as string;
75                         string className = attribs ["class"] as string;
76                         attribs.Remove ("scope");
77                         attribs.Remove ("class");
78                         if (className == null || className.Trim () == "")
79                                 throw new ParseException (parser.Location, "Object tag must have 'class' attribute.");
80
81                         this.type = parser.LoadType (className);
82                         if (this.type == null)
83                                 throw new ParseException (parser.Location, "Type " + className + " not found.");
84
85                         if (attribs ["progid"] != null || attribs ["classid"] != null)
86                                 throw new ParseException (parser.Location, "ClassID and ProgID are not supported.");
87
88                         if (attribs.Count > 0)
89                                 throw new ParseException (parser.Location, "Unknown attribute");
90                 }
91
92                 internal Type Type {
93                         get { return type; }
94                 }
95
96                 internal string ObjectID {
97                         get { return id; }
98                 }
99
100                 internal string Scope {
101                         get { return scope; }
102                 }
103         }
104 }
105