Android Open Source - cwp-morse-mangle Bit String






From Project

Back to project page cwp-morse-mangle.

License

The source code is released under:

Copyright (C) 2012 Jussi Kivilinna <jussi.kivilinna@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "S...

If you think the Android project cwp-morse-mangle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2012 Jussi Kivilinna <jussi.kivilinna@gmail.com>
 *//from ww w  .  j  a  v a  2s.  c om
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */

package fi_81.cwp_morse_mangle.morse;

import java.util.ArrayList;

/*
 * Bit format string, originally implemented with BitSet as backing buffer, but as
 * it appeared to be too slow (profiling results on Motorola Defy+), reverted to String.
 */
public class BitString implements Comparable<BitString>, CharSequence {
  private String bits;

  /* Format input to BitString */
  private static String makeBits(CharSequence chars) {
    int i, len;

    /* Check if can accept input as is */
    for (i = 0, len = chars.length(); i < len; i++) {
      char ch = chars.charAt(i);
      if (ch != '0' && ch != '1')
        break;
    }

    if (i == len) {
      /* Already in correct bit-format */
      return chars.toString();
    }

    StringBuffer sb = localStringBuffer.get();
    sb.setLength(0);

    sb.append(chars, 0, i);

    for (; i < len; i++) {
      char ch = chars.charAt(i);
      sb.append(ch == '1' ? '1' : '0');
    }

    return sb.toString();
  }

  /* Internal constructor for buffer that already is in bit-format */
  private BitString(String str, boolean alreadyBits) {
    if (alreadyBits)
      bits = str;
    else
      this.bits = makeBits(str);
  }

  /* Public constructor */
  public BitString(CharSequence chars) {
    this.bits = makeBits(chars);
  }

  /* Empty constructor */
  public BitString() {
    this.bits = "";
  }

  /*
   * Helper builders
   */
  public static BitString newFilled(char oneOrZero, int numChars) {
    StringBuffer sb = localStringBuffer.get();
    sb.setLength(0);

    for (int i = 0; i < numChars; i++)
      sb.append(oneOrZero);

    return new BitString(sb.toString(), true);
  }

  public static BitString newZeros(int numZeros) {
    return newFilled('0', numZeros);
  }

  public static BitString newOnes(int numOnes) {
    return newFilled('1', numOnes);
  }

  public static BitString newBits(String onesAndZeros) {
    return new BitString(onesAndZeros, true);
  }

  public char charAt(int index) {
    return bits.charAt(index);
  }

  public int length() {
    return bits.length();
  }

  public CharSequence subSequence(int start, int end) {
    return bits.subSequence(start, end);
  }

  public int compareTo(BitString another) {
    return bits.compareTo(another.bits);
  }

  @Override
  public String toString() {
    return bits;
  }

  public BitString substring(int start, int end) {
    return new BitString(bits.substring(start, end), true);
  }

  /* Check if object is same as this. */
  @Override
  public boolean equals(Object o) {
    if (this == o)
      return true;

    if (!(o instanceof BitString))
      return false;

    BitString obs = (BitString) o;

    return (bits == null ? obs.bits == null : bits.equals(obs.bits));
  }

  /** Append another BitString at end of this and return resulting BitString */
  public BitString append(BitString endBits) {
    StringBuffer sb = localStringBuffer.get();
    sb.setLength(0);

    sb.append(bits);
    sb.append(endBits.bits);

    return new BitString(sb.toString(), true);
  }

  public BitString[] split(BitString splitString) {
    /* Emulate String.split() as closely as possible */
    int stringLength = bits.length();
    int splitStringLength = splitString.bits.length();

    /*
     * Empty string gives array with one cell, and that cell is empty
     * string.
     */
    if (stringLength == 0) {
      BitString array[] = new BitString[1];
      array[0] = this;
      return array;
    }

    ArrayList<BitString> list = localArrayList.get();
    int idx = 0, prev = 0;

    list.clear();

    /* Iterate through all split strings and copy to array */
    while ((idx = bits.indexOf(splitString.bits, idx)) >= 0) {
      list.add(new BitString(bits.substring(prev, idx), true));

      if (splitStringLength > 0)
        idx += splitStringLength;
      else
        idx++; /* Avoid endless loop */

      prev = idx;
    }

    /* Finally, copy the last split string */
    idx = stringLength;
    list.add(new BitString(bits.substring(prev, idx), true));

    BitString splits[] = list.toArray(emptyArray);
    list.clear();

    return splits;
  }

  public boolean endWith(BitString suffix) {
    return bits.endsWith(suffix.bits);
  }

  /* Helper for handling endWith for StringBuffer */
  public static boolean stringBufferEndWithBits(StringBuffer stringBuf,
      BitString suffix) {
    int suffixLen = suffix.length();
    int bufferLen = stringBuf.length();

    if (bufferLen < suffixLen)
      return false;

    return stringBuf.lastIndexOf(suffix.toString(), bufferLen - suffixLen) != -1;
  }

  /* Cached empty object to avoid allocation in split() */
  private final static BitString[] emptyArray = new BitString[0];

  /* Cached thread-local objects to reduce memory allocations by BitString */
  private final static ThreadLocal<StringBuffer> localStringBuffer = new ThreadLocal<StringBuffer>() {
    @Override
    protected StringBuffer initialValue() {
      return new StringBuffer();
    }
  };

  private final static ThreadLocal<ArrayList<BitString>> localArrayList = new ThreadLocal<ArrayList<BitString>>() {
    @Override
    protected ArrayList<BitString> initialValue() {
      return new ArrayList<BitString>();
    }
  };
}




Java Source Code List

fi_81.cwp_morse_mangle.CWPControlService.java
fi_81.cwp_morse_mangle.CWPControlThread.java
fi_81.cwp_morse_mangle.DefaultSettings.java
fi_81.cwp_morse_mangle.EventLog.java
fi_81.cwp_morse_mangle.MainActivity.java
fi_81.cwp_morse_mangle.MainSettingsActivity.java
fi_81.cwp_morse_mangle.SinAudioLoop.java
fi_81.cwp_morse_mangle.cwp.CWFrequencyChange.java
fi_81.cwp_morse_mangle.cwp.CWInputQueue.java
fi_81.cwp_morse_mangle.cwp.CWInput.java
fi_81.cwp_morse_mangle.cwp.CWOutput.java
fi_81.cwp_morse_mangle.cwp.CWStateChangeQueueFromMorseCode.java
fi_81.cwp_morse_mangle.cwp.CWStateChange.java
fi_81.cwp_morse_mangle.cwp.CWaveQueueToMorseCode.java
fi_81.cwp_morse_mangle.cwp.CWave.java
fi_81.cwp_morse_mangle.morse.BitString.java
fi_81.cwp_morse_mangle.morse.MorseCharList.java
fi_81.cwp_morse_mangle.morse.MorseChar.java
fi_81.cwp_morse_mangle.morse.MorseCodec.java