import java.io.OutputStreamWriter; public class IndentHelper { public IndentHelper(OutputStreamWriter writer, CommonHelper.LangType lang_type) { mIndent = 0; mLangType = lang_type; mWriter = writer; // set indent chars switch (mLangType) { case Cpp: case CSharp: mIndentChars = CommonHelper.getIndentString(true); break; case Python: mIndentChars = CommonHelper.getIndentString(false); break; default: mIndentChars = ""; break; } } private int mIndent; private CommonHelper.LangType mLangType; private String mIndentChars; private OutputStreamWriter mWriter; private void rawIndent() throws Exception { for (int i = 0; i < mIndent; ++i) { mWriter.write(mIndentChars); } } public void inc() { ++mIndent; } public void dec() { --mIndent; } public void indent() throws Exception { mWriter.write(System.lineSeparator()); rawIndent(); } public void puts(String data) throws Exception { indent(); mWriter.write(data); } public void printf(String fmt, Object... args) throws Exception { indent(); mWriter.write(String.format(fmt, args)); } /** * Write standard Doxygen document comment. *

* Usually be called before writing content. * * @param comment * @throws Exception */ public void briefComment(String comment) throws Exception { if (comment == null) return; switch (mLangType) { case Cpp: case CSharp: puts("/**"); mWriter.write(System.lineSeparator()); mWriter.write(CommonHelper.reindentBlockString(comment, true, mIndent)); puts(" */"); break; case Python: puts("\"\"\"!"); mWriter.write(System.lineSeparator()); mWriter.write(CommonHelper.reindentBlockString(comment, false, mIndent)); puts("\"\"\""); break; } } /** * Write suffix style Doxygen document comment. *

* Usually be called after writing content. * * @param comment * @throws Exception */ public void afterMemberComment(String comment) throws Exception { if (comment == null) return; mWriter.write(mIndentChars); switch (mLangType) { case Cpp: case CSharp: mWriter.write(String.format("/**< %s */", CommonHelper.removeEol(comment))); break; case Python: mWriter.write(String.format("##< %s", CommonHelper.removeEol(comment))); break; } } }