CodeBuffer.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.record.compiler;
  19. import java.util.ArrayList;
  20. /**
  21.  * A wrapper around StringBuffer that automatically does indentation
  22.  */
  23. public class CodeBuffer {
  24.   
  25.   static private ArrayList<Character> startMarkers = new ArrayList<Character>();
  26.   static private ArrayList<Character> endMarkers = new ArrayList<Character>();
  27.   
  28.   static {
  29.     addMarkers('{', '}');
  30.     addMarkers('(', ')');
  31.   }
  32.   
  33.   static void addMarkers(char ch1, char ch2) {
  34.     startMarkers.add(ch1);
  35.     endMarkers.add(ch2);
  36.   }
  37.   
  38.   private int level = 0;
  39.   private int numSpaces = 2;
  40.   private boolean firstChar = true;
  41.   private StringBuffer sb;
  42.   
  43.   /** Creates a new instance of CodeBuffer */
  44.   CodeBuffer() {
  45.     this(2, "");
  46.   }
  47.   
  48.   CodeBuffer(String s) {
  49.     this(2, s);
  50.   }
  51.   
  52.   CodeBuffer(int numSpaces, String s) {
  53.     sb = new StringBuffer();
  54.     this.numSpaces = numSpaces;
  55.     this.append(s);
  56.   }
  57.   
  58.   void append(String s) {
  59.     int length = s.length();
  60.     for (int idx = 0; idx < length; idx++) {
  61.       char ch = s.charAt(idx);
  62.       append(ch);
  63.     }
  64.   }
  65.   
  66.   void append(char ch) {
  67.     if (endMarkers.contains(ch)) {
  68.       level--;
  69.     }
  70.     if (firstChar) {
  71.       for (int idx = 0; idx < level; idx++) {
  72.         for (int num = 0; num < numSpaces; num++) {
  73.           rawAppend(' ');
  74.         }
  75.       }
  76.     }
  77.     rawAppend(ch);
  78.     firstChar = false;
  79.     if (startMarkers.contains(ch)) {
  80.       level++;
  81.     }
  82.     if (ch == 'n') {
  83.       firstChar = true;
  84.     }
  85.   }
  86.   private void rawAppend(char ch) {
  87.     sb.append(ch);
  88.   }
  89.   
  90.   public String toString() {
  91.     return sb.toString();
  92.   }
  93. }