1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
//------------------------------------------------------------------------------
// <copyright file="IndentTextWriter.cs" company="Microsoft">
//
// <OWNER>[....]</OWNER>
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.CodeDom.Compiler {
using System.Diagnostics;
using System;
using System.IO;
using System.Text;
using System.Security.Permissions;
using System.Globalization;
/// <devdoc>
/// <para>Provides a text writer that can indent new lines by a tabString token.</para>
/// </devdoc>
public class IndentedTextWriter : TextWriter {
private TextWriter writer;
private int indentLevel;
private bool tabsPending;
private string tabString;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public const string DefaultTabString = " ";
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.Compiler.IndentedTextWriter'/> using the specified
/// text writer and default tab string.
/// </para>
/// </devdoc>
public IndentedTextWriter(TextWriter writer) : this(writer, DefaultTabString) {
}
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.Compiler.IndentedTextWriter'/> using the specified
/// text writer and tab string.
/// </para>
/// </devdoc>
public IndentedTextWriter(TextWriter writer, string tabString): base(CultureInfo.InvariantCulture) {
this.writer = writer;
this.tabString = tabString;
indentLevel = 0;
tabsPending = false;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override Encoding Encoding {
get {
return writer.Encoding;
}
}
/// <devdoc>
/// <para>
/// Gets or sets the new line character to use.
/// </para>
/// </devdoc>
public override string NewLine {
get {
return writer.NewLine;
}
set {
writer.NewLine = value;
}
}
/// <devdoc>
/// <para>
/// Gets or sets the number of spaces to indent.
/// </para>
/// </devdoc>
public int Indent {
get {
return indentLevel;
}
set {
Debug.Assert(value >= 0, "Bogus Indent... probably caused by mismatched Indent++ and Indent--");
if (value < 0) {
value = 0;
}
indentLevel = value;
}
}
/// <devdoc>
/// <para>
/// Gets or sets the TextWriter to use.
/// </para>
/// </devdoc>
public TextWriter InnerWriter {
get {
return writer;
}
}
internal string TabString {
get { return tabString; }
}
/// <devdoc>
/// <para>
/// Closes the document being written to.
/// </para>
/// </devdoc>
public override void Close() {
writer.Close();
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void Flush() {
writer.Flush();
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
protected virtual void OutputTabs() {
if (tabsPending) {
for (int i=0; i < indentLevel; i++) {
writer.Write(tabString);
}
tabsPending = false;
}
}
/// <devdoc>
/// <para>
/// Writes a string
/// to the text stream.
/// </para>
/// </devdoc>
public override void Write(string s) {
OutputTabs();
writer.Write(s);
}
/// <devdoc>
/// <para>
/// Writes the text representation of a Boolean value to the text stream.
/// </para>
/// </devdoc>
public override void Write(bool value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes a character to the text stream.
/// </para>
/// </devdoc>
public override void Write(char value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes a
/// character array to the text stream.
/// </para>
/// </devdoc>
public override void Write(char[] buffer) {
OutputTabs();
writer.Write(buffer);
}
/// <devdoc>
/// <para>
/// Writes a subarray
/// of characters to the text stream.
/// </para>
/// </devdoc>
public override void Write(char[] buffer, int index, int count) {
OutputTabs();
writer.Write(buffer, index, count);
}
/// <devdoc>
/// <para>
/// Writes the text representation of a Double to the text stream.
/// </para>
/// </devdoc>
public override void Write(double value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes the text representation of
/// a Single to the text
/// stream.
/// </para>
/// </devdoc>
public override void Write(float value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes the text representation of an integer to the text stream.
/// </para>
/// </devdoc>
public override void Write(int value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes the text representation of an 8-byte integer to the text stream.
/// </para>
/// </devdoc>
public override void Write(long value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes the text representation of an object
/// to the text stream.
/// </para>
/// </devdoc>
public override void Write(object value) {
OutputTabs();
writer.Write(value);
}
/// <devdoc>
/// <para>
/// Writes out a formatted string, using the same semantics as specified.
/// </para>
/// </devdoc>
public override void Write(string format, object arg0) {
OutputTabs();
writer.Write(format, arg0);
}
/// <devdoc>
/// <para>
/// Writes out a formatted string,
/// using the same semantics as specified.
/// </para>
/// </devdoc>
public override void Write(string format, object arg0, object arg1) {
OutputTabs();
writer.Write(format, arg0, arg1);
}
/// <devdoc>
/// <para>
/// Writes out a formatted string,
/// using the same semantics as specified.
/// </para>
/// </devdoc>
public override void Write(string format, params object[] arg) {
OutputTabs();
writer.Write(format, arg);
}
/// <devdoc>
/// <para>
/// Writes the specified
/// string to a line without tabs.
/// </para>
/// </devdoc>
public void WriteLineNoTabs(string s) {
writer.WriteLine(s);
}
/// <devdoc>
/// <para>
/// Writes the specified string followed by
/// a line terminator to the text stream.
/// </para>
/// </devdoc>
public override void WriteLine(string s) {
OutputTabs();
writer.WriteLine(s);
tabsPending = true;
}
/// <devdoc>
/// <para>
/// Writes a line terminator.
/// </para>
/// </devdoc>
public override void WriteLine() {
OutputTabs();
writer.WriteLine();
tabsPending = true;
}
/// <devdoc>
/// <para>
/// Writes the text representation of a Boolean followed by a line terminator to
/// the text stream.
/// </para>
/// </devdoc>
public override void WriteLine(bool value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(char value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(char[] buffer) {
OutputTabs();
writer.WriteLine(buffer);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(char[] buffer, int index, int count) {
OutputTabs();
writer.WriteLine(buffer, index, count);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(double value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(float value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(int value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(long value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(object value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(string format, object arg0) {
OutputTabs();
writer.WriteLine(format, arg0);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(string format, object arg0, object arg1) {
OutputTabs();
writer.WriteLine(format, arg0, arg1);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override void WriteLine(string format, params object[] arg) {
OutputTabs();
writer.WriteLine(format, arg);
tabsPending = true;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[CLSCompliant(false)]
public override void WriteLine(UInt32 value) {
OutputTabs();
writer.WriteLine(value);
tabsPending = true;
}
internal void InternalOutputTabs() {
for (int i=0; i < indentLevel; i++) {
writer.Write(tabString);
}
}
}
internal class Indentation {
private IndentedTextWriter writer;
private int indent;
private string s;
internal Indentation(IndentedTextWriter writer, int indent) {
this.writer = writer;
this.indent = indent;
s = null;
}
internal string IndentationString {
get {
if ( s == null) {
string tabString = writer.TabString;
StringBuilder sb = new StringBuilder(indent * tabString.Length);
for( int i = 0; i < indent; i++) {
sb.Append(tabString);
}
s = sb.ToString();
}
return s;
}
}
}
}
|