2006-11-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / TextOutputter.cs
1 //
2 // TextOutputter.cs
3 //
4 // Authors:
5 //      Oleg Tkachenko (oleg@tkachenko.com)
6 //      
7 // (C) 2003 Oleg Tkachenko
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Xml;
33 using System.IO;
34
35 namespace Mono.Xml.Xsl {
36         /// <summary>
37         /// Outputter implementation for text output method.
38         /// </summary>
39         internal class TextOutputter : Outputter {
40                 private TextWriter _writer;
41                 //Current output depth
42                 private int _depth;             
43                 //Ignore nested text nodes
44                 private bool _ignoreNestedText;         
45                 
46                 public TextOutputter (TextWriter w, bool ignoreNestedText) {
47                         _writer = w;
48                         _ignoreNestedText = ignoreNestedText;
49                 }
50
51                 public override void WriteStartElement (string prefix, string localName, string nsURI) {
52                         if (_ignoreNestedText) _depth++;
53                 }
54
55                 public override void WriteEndElement() {
56                         if (_ignoreNestedText) _depth--;
57                 }
58
59                 public override void WriteAttributeString (string prefix, string localName, string nsURI, string value) {}
60                 
61                 public override void WriteNamespaceDecl (string prefix, string nsUri) {}
62
63                 public override void WriteComment (string text) {}
64
65                 public override void WriteProcessingInstruction (string name, string text) {}
66
67                 public override void WriteString (string text) {
68                         WriteImpl (text);
69                 }
70
71                 public override void WriteRaw (string data) {
72                         WriteImpl (data);
73                 }
74
75                 public override void WriteWhitespace (string text) {
76                         WriteImpl (text);
77                 }
78
79                 private void WriteImpl(string text) {
80                         if (!_ignoreNestedText || _depth==0) _writer.Write (text);
81                 }
82
83                 public override void Done () {
84                         _writer.Flush ();
85                 }
86
87                 public override bool CanProcessAttributes {
88                         get { return false; }
89                 }
90
91                 public override bool InsideCDataSection { get { return false; } set { } }
92         }
93 }