* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / System.XML / System.Xml.Xsl / XsltException.cs
1 //
2 // System.Xml.Xsl.XsltException.cs
3 //
4 // Authors:
5 //  Tim Coleman (tim@timcoleman.com)
6 //  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Copyright 2002 Tim Coleman
9 // (C) 2003 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 \r
33 using System;\r
34 using System.Runtime.Serialization;\r
35 using System.Xml.XPath;\r
36 \r
37 namespace System.Xml.Xsl\r
38 {\r
39         [Serializable]\r
40         public class XsltException : SystemException\r
41         {\r
42                 static string CreateMessage (string message, XPathNavigator nav)\r
43                 {\r
44                         IXmlLineInfo li = nav as IXmlLineInfo;\r
45                         int lineNumber = li != null ? li.LineNumber : 0;\r
46                         int linePosition = li != null ? li.LinePosition : 0;\r
47                         string sourceUri = nav != null ? nav.BaseURI : String.Empty;\r
48                         return CreateMessage (lineNumber, linePosition, sourceUri, message);\r
49                 }\r
50 \r
51                 static string CreateMessage (int lineNumber, int linePosition, string sourceUri, string msg)\r
52                 {\r
53                         if (sourceUri != null)\r
54                                 msg += " " + sourceUri;\r
55                         if (lineNumber != 0)\r
56                                 msg += " line " + lineNumber;\r
57                         if (linePosition != 0)\r
58                                 msg += ", position " + linePosition;\r
59                         return msg;\r
60                 }\r
61 \r
62                 #region Fields\r
63 \r
64                 int lineNumber;\r
65                 int linePosition;\r
66                 string sourceUri;\r
67 \r
68                 #endregion\r
69 \r
70                 #region Constructors\r
71 \r
72 #if NET_2_0\r
73                 public XsltException ()\r
74                         : base (String.Empty, null)\r
75                 {\r
76                 }\r
77 \r
78                 public XsltException (string message)\r
79                         : base (message, null)\r
80                 {\r
81                 }\r
82 #endif\r
83 \r
84                 public XsltException (string message, Exception innerException)\r
85                         : base (message, innerException)\r
86                 {\r
87 //                      this.message = message;\r
88                 }\r
89 \r
90                 protected XsltException (SerializationInfo info, StreamingContext context)\r
91                 {\r
92                         lineNumber = info.GetInt32 ("lineNumber");\r
93                         linePosition = info.GetInt32 ("linePosition");\r
94                         sourceUri = info.GetString ("sourceUri");\r
95                 }
96
97                 internal XsltException (string message, Exception innerException, int lineNumber, int linePosition, string sourceUri)
98                         : base (CreateMessage (lineNumber, linePosition, sourceUri, message), innerException)\r
99                 {\r
100                         this.lineNumber = lineNumber;\r
101                         this.linePosition = linePosition;\r
102                         this.sourceUri = sourceUri;\r
103                 }\r
104 \r
105                 internal XsltException (string message, Exception innerException, XPathNavigator nav)
106                         : base (CreateMessage (message, nav), innerException)\r
107                 {\r
108                         IXmlLineInfo li = nav as IXmlLineInfo;\r
109                         this.lineNumber = li != null ? li.LineNumber : 0;\r
110                         this.linePosition = li != null ? li.LinePosition : 0;\r
111                         this.sourceUri = nav != null ? nav.BaseURI : String.Empty;\r
112                 }\r
113 \r
114                 #endregion\r
115 \r
116                 #region Properties\r
117 \r
118                 public int LineNumber {\r
119                         get { return lineNumber; }\r
120                 }\r
121 \r
122                 public int LinePosition {\r
123                         get { return linePosition; }\r
124                 }\r
125 \r
126 #if NET_2_0\r
127 #else\r
128                 public override string Message {\r
129                         get {\r
130                                 string msg = base.Message;\r
131                                 if (sourceUri != null)\r
132                                         msg += " " + sourceUri;\r
133                                 if (lineNumber != 0)\r
134                                         msg += " line " + lineNumber;\r
135                                 if (linePosition != 0)\r
136                                         msg += ", position " + linePosition;\r
137                                 return msg;\r
138                         }\r
139                 }\r
140 #endif\r
141 \r
142                 public string SourceUri {\r
143                         get { return sourceUri; }\r
144                 }\r
145 \r
146                 #endregion\r
147 \r
148                 #region Methods\r
149 \r
150                 public override void GetObjectData (SerializationInfo info, StreamingContext context)\r
151                 {\r
152                         base.GetObjectData (info, context);\r
153                         info.AddValue ("lineNumber", lineNumber);\r
154                         info.AddValue ("linePosition", linePosition);\r
155                         info.AddValue ("sourceUri", sourceUri);\r
156                 }\r
157 \r
158                 #endregion\r
159         }\r
160 }\r