| 
001002
 003
 004
 005
 006
 007
 008
 009
 010
 011
 012
 013
 014
 015
 016
 017
 018
 019
 020
 021
 022
 023
 024
 025
 026
 027
 028
 029
 030
 031
 032
 033
 034
 035
 036
 037
 038
 039
 040
 041
 042
 043
 044
 045
 046
 047
 048
 049
 050
 051
 052
 053
 054
 055
 056
 057
 058
 059
 060
 061
 062
 063
 064
 065
 066
 067
 068
 069
 070
 071
 072
 073
 074
 075
 076
 077
 078
 079
 080
 081
 082
 083
 084
 085
 086
 087
 088
 089
 090
 091
 092
 093
 094
 095
 096
 097
 098
 099
 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
 
 | package stdlib;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.Socket;
/* ***********************************************************************
 *  Compilation:  javac BinaryOut.java
 *  Execution:    java BinaryOut
 *
 *  Write binary data to an output stream, either one 1-bit boolean,
 *  one 8-bit char, one 32-bit int, one 64-bit double, one 32-bit float,
 *  or one 64-bit long at a time. The output stream can be standard
 *  output, a file, an OutputStream or a Socket.
 *
 *  The bytes written are not aligned.
 *
 *  [wayne 7.17.2013] fixed bugs in write(char x, int r) and
 *  write(int x, int r) to add return statement for (r == 8)
 *  and (r == 32) cases, respectively.
 *
 *************************************************************************/
/**
 *  <i>Binary output</i>. This class provides methods for converting
 *  primtive type variables ({@code boolean}, {@code byte}, {@code char},
 *  {@code int}, {@code long}, {@code float}, and {@code double})
 *  to sequences of bits and writing them to an output stream.
 *  The output stream can be standard output, a file, an OutputStream or a Socket.
 *  Uses big-endian (most-significant byte first).
 *  <p>
 *  The client must {@code flush()} the output stream when finished writing bits.
 *  <p>
 *  The client should not intermixing calls to {@code BinaryOut} with calls
 *  to {@code Out}; otherwise unexpected behavior will result.
 */
public final class BinaryOut {
  private BufferedOutputStream out;  // the output stream
  private int buffer;                // 8-bit buffer of bits to write out
  private int N;                     // number of bits remaining in buffer
  /**
   * Create a binary output stream from an OutputStream.
   */
  public BinaryOut(OutputStream os) {
    out = new BufferedOutputStream(os);
  }
  /**
   * Create a binary output stream from standard output.
   */
  public BinaryOut() {
    out = new BufferedOutputStream(System.out);
  }
  /**
   * Create a binary output stream from a filename.
   */
  public BinaryOut(String s) {
    try {
      OutputStream os = new FileOutputStream(s);
      out = new BufferedOutputStream(os);
    }
    catch (IOException e) { e.printStackTrace(); }
  }
  /**
   * Create a binary output stream from a Socket.
   */
  public BinaryOut(Socket socket) {
    try {
      OutputStream os = socket.getOutputStream();
      out = new BufferedOutputStream(os);
    }
    catch (IOException e) { e.printStackTrace(); }
  }
  /**
   * Write the specified bit to the binary output stream.
   */
  private void writeBit(boolean bit) {
    // add bit to buffer
    buffer <<= 1;
    if (bit) buffer |= 1;
    // if buffer is full (8 bits), write out as a single byte
    N++;
    if (N == 8) clearBuffer();
  }
  /**
   * Write the 8-bit byte to the binary output stream.
   */
  private void writeByte(int x) {
    assert x >= 0 && x < 256;
    // optimized if byte-aligned
    if (N == 0) {
      try { out.write(x); }
      catch (IOException e) { e.printStackTrace(); }
      return;
    }
    // otherwise write one bit at a time
    for (int i = 0; i < 8; i++) {
      boolean bit = ((x >>> (8 - i - 1)) & 1) == 1;
      writeBit(bit);
    }
  }
  // write out any remaining bits in buffer to the binary output stream, padding with 0s
  private void clearBuffer() {
    if (N == 0) return;
    if (N > 0) buffer <<= (8 - N);
    try { out.write(buffer); }
    catch (IOException e) { e.printStackTrace(); }
    N = 0;
    buffer = 0;
  }
  /**
   * Flush the binary output stream, padding 0s if number of bits written so far
   * is not a multiple of 8.
   */
  public void flush() {
    clearBuffer();
    try { out.flush(); }
    catch (IOException e) { e.printStackTrace(); }
  }
  /**
   * Close and flush the binary output stream. Once it is closed, you can no longer write bits.
   */
  public void close() {
    flush();
    try { out.close(); }
    catch (IOException e) { e.printStackTrace(); }
  }
  /**
   * Write the specified bit to the binary output stream.
   * @param x the {@code boolean} to write.
   */
  public void write(boolean x) {
    writeBit(x);
  }
  /**
   * Write the 8-bit byte to the binary output stream.
   * @param x the {@code byte} to write.
   */
  public void write(byte x) {
    writeByte(x & 0xff);
  }
  /**
   * Write the 32-bit int to the binary output stream.
   * @param x the {@code int} to write.
   */
  public void write(int x) {
    writeByte((x >>> 24) & 0xff);
    writeByte((x >>> 16) & 0xff);
    writeByte((x >>>  8) & 0xff);
    writeByte((x >>>  0) & 0xff);
  }
  /**
   * Write the r-bit int to the binary output stream.
   * @param x the {@code int} to write.
   * @param r the number of relevant bits in the char.
   * @throws RuntimeException if {@code r} is not between 1 and 32.
   * @throws RuntimeException if {@code x} is not between 0 and 2<sup>r</sup> - 1.
   */
  public void write(int x, int r) {
    if (r == 32) { write(x); return; }
    if (r < 1 || r > 32)        throw new RuntimeException("Illegal value for r = " + r);
    if (x < 0 || x >= (1 << r)) throw new RuntimeException("Illegal " + r + "-bit char = " + x);
    for (int i = 0; i < r; i++) {
      boolean bit = ((x >>> (r - i - 1)) & 1) == 1;
      writeBit(bit);
    }
  }
  /**
   * Write the 64-bit double to the binary output stream.
   * @param x the {@code double} to write.
   */
  public void write(double x) {
    write(Double.doubleToRawLongBits(x));
  }
  /**
   * Write the 64-bit long to the binary output stream.
   * @param x the {@code long} to write.
   */
  public void write(long x) {
    writeByte((int) ((x >>> 56) & 0xff));
    writeByte((int) ((x >>> 48) & 0xff));
    writeByte((int) ((x >>> 40) & 0xff));
    writeByte((int) ((x >>> 32) & 0xff));
    writeByte((int) ((x >>> 24) & 0xff));
    writeByte((int) ((x >>> 16) & 0xff));
    writeByte((int) ((x >>>  8) & 0xff));
    writeByte((int) ((x >>>  0) & 0xff));
  }
  /**
   * Write the 32-bit float to the binary output stream.
   * @param x the {@code float} to write.
   */
  public void write(float x) {
    write(Float.floatToRawIntBits(x));
  }
  /**
   * Write the 16-bit int to the binary output stream.
   * @param x the {@code short} to write.
   */
  public void write(short x) {
    writeByte((x >>>  8) & 0xff);
    writeByte((x >>>  0) & 0xff);
  }
  /**
   * Write the 8-bit char to the binary output stream.
   * @param x the {@code char} to write.
   * @throws RuntimeException if {@code x} is not betwen 0 and 255.
   */
  public void write(char x) {
    if (x < 0 || x >= 256) throw new RuntimeException("Illegal 8-bit char = " + x);
    writeByte(x);
  }
  /**
   * Write the r-bit char to the binary output stream.
   * @param x the {@code char} to write.
   * @param r the number of relevant bits in the char.
   * @throws RuntimeException if {@code r} is not between 1 and 16.
   * @throws RuntimeException if {@code x} is not between 0 and 2<sup>r</sup> - 1.
   */
  public void write(char x, int r) {
    if (r == 8) { write(x); return; }
    if (r < 1 || r > 16)        throw new RuntimeException("Illegal value for r = " + r);
    if (x < 0 || x >= (1 << r)) throw new RuntimeException("Illegal " + r + "-bit char = " + x);
    for (int i = 0; i < r; i++) {
      boolean bit = ((x >>> (r - i - 1)) & 1) == 1;
      writeBit(bit);
    }
  }
  /**
   * Write the string of 8-bit characters to the binary output stream.
   * @param s the {@code String} to write.
   * @throws RuntimeException if any character in the string is not
   * between 0 and 255.
   */
  public void write(String s) {
    for (int i = 0; i < s.length(); i++)
      write(s.charAt(i));
  }
  /**
   * Write the String of r-bit characters to the binary output stream.
   * @param s the {@code String} to write.
   * @param r the number of relevants bits in each character.
   * @throws RuntimeException if r is not between 1 and 16.
   * @throws RuntimeException if any character in the string is not
   * between 0 and 2<sup>r</sup> - 1.
   */
  public void write(String s, int r) {
    for (int i = 0; i < s.length(); i++)
      write(s.charAt(i), r);
  }
  /**
   * Test client. Read bits from standard input and write to the file
   * specified on command line.
   */
  public static void main(String[] args) {
    // create binary output stream to write to file
    String filename = args[0];
    BinaryOut out = new BinaryOut(filename);
    BinaryIn  in  = new BinaryIn();
    // read from standard input and write to file
    while (!in.isEmpty()) {
      char c = in.readChar();
      out.write(c);
    }
    out.flush();
  }
}
 |