using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace Google.ProtocolBuffers {
  /// 
  /// Helper class to control indentation
  /// 
  internal class TextGenerator {
    /// 
    /// Writer to write formatted text to.
    /// 
    private readonly TextWriter writer;
    /// 
    /// Keeps track of whether the next piece of text should be indented
    /// 
    bool atStartOfLine = true;
    /// 
    /// Keeps track of the current level of indentation
    /// 
    readonly StringBuilder indent = new StringBuilder();
    /// 
    /// Creates a generator writing to the given writer.
    /// 
    internal TextGenerator(TextWriter writer) {
      this.writer = writer;
    }
    /// 
    /// Indents text by two spaces. After calling Indent(), two spaces
    /// will be inserted at the beginning of each line of text. Indent() may
    /// be called multiple times to produce deeper indents.
    /// 
    internal void Indent() {
      indent.Append("  ");
    }
    /// 
    /// Reduces the current indent level by two spaces.
    /// 
    internal void Outdent() {
      if (indent.Length == 0) {
        throw new InvalidOperationException("Too many calls to Outdent()");
      }
      indent.Length -= 2;
    }
    /// 
    /// Prints the given text to the output stream, indenting at line boundaries.
    /// 
    /// 
    public void Print(string text) {
      int pos = 0;
      for (int i = 0; i < text.Length; i++) {
        if (text[i] == '\n') {
          // TODO(jonskeet): Use Environment.NewLine?
          Write(text.Substring(pos, i - pos + 1));
          pos = i + 1;
          atStartOfLine = true;
        }
      }
      Write(text.Substring(pos));
    }
    private void Write(string data) {
      if (data.Length == 0) {
        return;
      }
      if (atStartOfLine) {
        atStartOfLine = false;
        writer.Write(indent);
      }
      writer.Write(data);
    }
  }
}