ObjectOutputStream.java 46.2 KB
Newer Older
Tom Tromey committed
1
/* ObjectOutputStream.java -- Class used to write serialized objects
2
   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008
Tom Tromey committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
   Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package java.io;

42
import gnu.java.io.ObjectIdentityMap2Int;
Tom Tromey committed
43 44 45 46 47 48 49
import gnu.java.lang.reflect.TypeSignature;
import gnu.java.security.action.SetAccessibleAction;

import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
50

51 52
import java.security.AccessController;
import java.security.PrivilegedAction;
Tom Tromey committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118

/**
 * An <code>ObjectOutputStream</code> can be used to write objects
 * as well as primitive data in a platform-independent manner to an
 * <code>OutputStream</code>.
 *
 * The data produced by an <code>ObjectOutputStream</code> can be read
 * and reconstituted by an <code>ObjectInputStream</code>.
 *
 * <code>writeObject (Object)</code> is used to write Objects, the
 * <code>write&lt;type&gt;</code> methods are used to write primitive
 * data (as in <code>DataOutputStream</code>). Strings can be written
 * as objects or as primitive data.
 *
 * Not all objects can be written out using an
 * <code>ObjectOutputStream</code>.  Only those objects that are an
 * instance of <code>java.io.Serializable</code> can be written.
 *
 * Using default serialization, information about the class of an
 * object is written, all of the non-transient, non-static fields of
 * the object are written, if any of these fields are objects, they are
 * written out in the same manner.
 *
 * An object is only written out the first time it is encountered.  If
 * the object is encountered later, a reference to it is written to
 * the underlying stream.  Thus writing circular object graphs
 * does not present a problem, nor are relationships between objects
 * in a graph lost.
 *
 * Example usage:
 * <pre>
 * Hashtable map = new Hashtable ();
 * map.put ("one", new Integer (1));
 * map.put ("two", new Integer (2));
 *
 * ObjectOutputStream oos =
 * new ObjectOutputStream (new FileOutputStream ("numbers"));
 * oos.writeObject (map);
 * oos.close ();
 *
 * ObjectInputStream ois =
 * new ObjectInputStream (new FileInputStream ("numbers"));
 * Hashtable newmap = (Hashtable)ois.readObject ();
 *
 * System.out.println (newmap);
 * </pre>
 *
 * The default serialization can be overriden in two ways.
 *
 * By defining a method <code>private void
 * writeObject (ObjectOutputStream)</code>, a class can dictate exactly
 * how information about itself is written.
 * <code>defaultWriteObject ()</code> may be called from this method to
 * carry out default serialization.  This method is not
 * responsible for dealing with fields of super-classes or subclasses.
 *
 * By implementing <code>java.io.Externalizable</code>.  This gives
 * the class complete control over the way it is written to the
 * stream.  If this approach is used the burden of writing superclass
 * and subclass data is transfered to the class implementing
 * <code>java.io.Externalizable</code>.
 *
 * @see java.io.DataOutputStream
 * @see java.io.Externalizable
 * @see java.io.ObjectInputStream
 * @see java.io.Serializable
119 120 121 122 123
 * @author Tom Tromey (tromey@redhat.com)
 * @author Jeroen Frijters (jeroen@frijters.net)
 * @author Guilhem Lavaux (guilhem@kaffe.org)
 * @author Michael Koch (konqueror@gmx.de)
 * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
Tom Tromey committed
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
 */
public class ObjectOutputStream extends OutputStream
  implements ObjectOutput, ObjectStreamConstants
{
  /**
   * Creates a new <code>ObjectOutputStream</code> that will do all of
   * its writing onto <code>out</code>.  This method also initializes
   * the stream by writing the header information (stream magic number
   * and stream version).
   *
   * @exception IOException Writing stream header to underlying
   * stream cannot be completed.
   *
   * @see #writeStreamHeader()
   */
  public ObjectOutputStream (OutputStream out) throws IOException
  {
141 142 143 144
    SecurityManager secMan = System.getSecurityManager();
    if (secMan != null && overridesMethods(getClass()))
      secMan.checkPermission(SUBCLASS_IMPLEMENTATION_PERMISSION);

Tom Tromey committed
145 146 147 148 149 150 151 152
    realOutput = new DataOutputStream(out);
    blockData = new byte[ BUFFER_SIZE ];
    blockDataCount = 0;
    blockDataOutput = new DataOutputStream(this);
    setBlockDataMode(true);
    replacementEnabled = false;
    isSerializing = false;
    nextOID = baseWireHandle;
153
    OIDLookupTable = new ObjectIdentityMap2Int();
Tom Tromey committed
154 155 156 157 158 159
    protocolVersion = defaultProtocolVersion;
    useSubclassMethod = false;
    writeStreamHeader();

    if (DEBUG)
      {
160 161 162
        String val = System.getProperty("gcj.dumpobjects");
        if (val != null && !val.equals(""))
          dump = true;
Tom Tromey committed
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
      }
  }

  /**
   * Writes a representation of <code>obj</code> to the underlying
   * output stream by writing out information about its class, then
   * writing out each of the objects non-transient, non-static
   * fields.  If any of these fields are other objects,
   * they are written out in the same manner.
   *
   * This method can be overriden by a class by implementing
   * <code>private void writeObject (ObjectOutputStream)</code>.
   *
   * If an exception is thrown from this method, the stream is left in
   * an undefined state.
   *
179
   * @param obj the object to serialize.
Tom Tromey committed
180 181 182 183 184 185 186 187
   * @exception NotSerializableException An attempt was made to
   * serialize an <code>Object</code> that is not serializable.
   *
   * @exception InvalidClassException Somebody tried to serialize
   * an object which is wrongly formatted.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
188
   * @see #writeUnshared(Object)
Tom Tromey committed
189 190 191
   */
  public final void writeObject(Object obj) throws IOException
  {
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
    writeObject(obj, true);
  }

  /**
   * Writes an object to the stream in the same manner as
   * {@link #writeObject(Object)}, but without the use of
   * references.  As a result, the object is always written
   * to the stream in full.  Likewise, if an object is written
   * by this method and is then later written again by
   * {@link #writeObject(Object)}, both calls will write out
   * the object in full, as the later call to
   * {@link #writeObject(Object)} will know nothing of the
   * earlier use of {@link #writeUnshared(Object)}.
   *
   * @param obj the object to serialize.
   * @throws NotSerializableException if the object being
   *                                  serialized does not implement
   *                                  {@link Serializable}.
   * @throws InvalidClassException if a problem occurs with
   *                               the class of the object being
   *                               serialized.
   * @throws IOException if an I/O error occurs on the underlying
   *                     <code>OutputStream</code>.
   * @since 1.4
   * @see #writeObject(Object)
   */
  public void writeUnshared(Object obj)
    throws IOException
  {
    writeObject(obj, false);
  }

  /**
   * Writes a representation of <code>obj</code> to the underlying
   * output stream by writing out information about its class, then
   * writing out each of the objects non-transient, non-static
   * fields.  If any of these fields are other objects,
   * they are written out in the same manner.
   *
   * This method can be overriden by a class by implementing
   * <code>private void writeObject (ObjectOutputStream)</code>.
   *
   * If an exception is thrown from this method, the stream is left in
   * an undefined state.
   *
   * @param obj the object to serialize.
   * @param shared true if the serialized object should be
   *               shared with later calls.
   * @exception NotSerializableException An attempt was made to
   * serialize an <code>Object</code> that is not serializable.
   *
   * @exception InvalidClassException Somebody tried to serialize
   * an object which is wrongly formatted.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   * @see #writeUnshared(Object)
   */
  private final void writeObject(Object obj, boolean shared)
    throws IOException
  {
Tom Tromey committed
253 254
    if (useSubclassMethod)
      {
255 256 257 258 259
        if (dump)
          dumpElementln ("WRITE OVERRIDE: " + obj);

        writeObjectOverride(obj);
        return;
Tom Tromey committed
260 261 262
      }

    if (dump)
263
      dumpElementln ("WRITE: ", obj);
264 265

    depth += 2;
Tom Tromey committed
266 267 268 269 270

    boolean was_serializing = isSerializing;
    boolean old_mode = setBlockDataMode(false);
    try
      {
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 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
        isSerializing = true;
        boolean replaceDone = false;
        Object replacedObject = null;

        while (true)
          {
            if (obj == null)
              {
                realOutput.writeByte(TC_NULL);
                break;
              }

            int handle = findHandle(obj);
            if (handle >= 0 && shared)
              {
                realOutput.writeByte(TC_REFERENCE);
                realOutput.writeInt(handle);
                break;
              }

            if (obj instanceof Class)
              {
                Class cl = (Class)obj;
                ObjectStreamClass osc = ObjectStreamClass.lookupForClassObject(cl);
                realOutput.writeByte(TC_CLASS);
                if (!osc.isProxyClass)
                  {
                    writeObject (osc);
                  }
                else
                  {System.err.println("1");
                    realOutput.writeByte(TC_PROXYCLASSDESC);
                    Class[] intfs = cl.getInterfaces();
                    realOutput.writeInt(intfs.length);
                    for (int i = 0; i < intfs.length; i++)
                      realOutput.writeUTF(intfs[i].getName());

                    boolean oldmode = setBlockDataMode(true);
                    annotateProxyClass(cl);
                    setBlockDataMode(oldmode);
                    realOutput.writeByte(TC_ENDBLOCKDATA);

                    writeObject(osc.getSuper());
                  }
                if (shared)
                  assignNewHandle(obj);
                break;
              }

            if (obj instanceof ObjectStreamClass)
              {
                writeClassDescriptor((ObjectStreamClass) obj);
                break;
              }

            Class clazz = obj.getClass();
            ObjectStreamClass osc = ObjectStreamClass.lookupForClassObject(clazz);
            if (osc == null)
              throw new NotSerializableException(clazz.getName());

            if (osc.isEnum())
              {
                /* TC_ENUM classDesc newHandle enumConstantName */
                realOutput.writeByte(TC_ENUM);
                writeObject(osc);
                if (shared)
                  assignNewHandle(obj);
                writeObject(((Enum) obj).name());
                break;
              }

            if ((replacementEnabled || obj instanceof Serializable)
                && ! replaceDone)
              {
                replacedObject = obj;

                if (obj instanceof Serializable)
                  {
                    try
                      {
Tom Tromey committed
351 352 353
                        Method m = osc.writeReplaceMethod;
                        if (m != null)
                            obj = m.invoke(obj, new Object[0]);
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
                      }
                    catch (IllegalAccessException ignore)
                      {
                      }
                    catch (InvocationTargetException ignore)
                      {
                      }
                  }

                if (replacementEnabled)
                  obj = replaceObject(obj);

                replaceDone = true;
                continue;
              }

            if (obj instanceof String)
              {
372 373 374 375
                String s = (String)obj;
                long l = realOutput.getUTFlength(s, 0, 0);
                if (l <= 65535)
                  {
376 377 378 379
                    realOutput.writeByte(TC_STRING);
                    if (shared)
                      assignNewHandle(obj);
                    realOutput.writeUTFShort(s, (int)l);
380 381 382
                  }
                else
                  {
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
                    realOutput.writeByte(TC_LONGSTRING);
                    if (shared)
                      assignNewHandle(obj);
                    realOutput.writeUTFLong(s, l);
                  }
                break;
              }

            if (clazz.isArray ())
              {
                realOutput.writeByte(TC_ARRAY);
                writeObject(osc);
                if (shared)
                  assignNewHandle(obj);
                writeArraySizeAndElements(obj, clazz.getComponentType());
                break;
              }

            realOutput.writeByte(TC_OBJECT);
            writeObject(osc);

            if (shared)
              if (replaceDone)
                assignNewHandle(replacedObject);
              else
                assignNewHandle(obj);

            if (obj instanceof Externalizable)
              {
                if (protocolVersion == PROTOCOL_VERSION_2)
                  setBlockDataMode(true);

                ((Externalizable)obj).writeExternal(this);

                if (protocolVersion == PROTOCOL_VERSION_2)
                  {
                    setBlockDataMode(false);
                    realOutput.writeByte(TC_ENDBLOCKDATA);
                  }

                break;
              }

            if (obj instanceof Serializable)
              {
                Object prevObject = this.currentObject;
                ObjectStreamClass prevObjectStreamClass = this.currentObjectStreamClass;
                currentObject = obj;
                ObjectStreamClass[] hierarchy = osc.hierarchy();

                for (int i = 0; i < hierarchy.length; i++)
                  {
                    currentObjectStreamClass = hierarchy[i];

                    fieldsAlreadyWritten = false;
                    if (currentObjectStreamClass.hasWriteMethod())
                      {
                        if (dump)
                          dumpElementln ("WRITE METHOD CALLED FOR: ", obj);
                        setBlockDataMode(true);
                        callWriteMethod(obj, currentObjectStreamClass);
                        setBlockDataMode(false);
                        realOutput.writeByte(TC_ENDBLOCKDATA);
                        if (dump)
                          dumpElementln ("WRITE ENDBLOCKDATA FOR: ", obj);
                      }
                    else
                      {
                        if (dump)
                          dumpElementln ("WRITE FIELDS CALLED FOR: ", obj);
                        writeFields(obj, currentObjectStreamClass);
                      }
455
                  }
456 457 458 459 460 461 462 463 464 465 466

                this.currentObject = prevObject;
                this.currentObjectStreamClass = prevObjectStreamClass;
                currentPutField = null;
                break;
              }

            throw new NotSerializableException(clazz.getName()
                                               + " in "
                                               + obj.getClass());
          } // end pseudo-loop
Tom Tromey committed
467 468 469
      }
    catch (ObjectStreamException ose)
      {
470 471
        // Rethrow these are fatal.
        throw ose;
Tom Tromey committed
472 473 474
      }
    catch (IOException e)
      {
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
        realOutput.writeByte(TC_EXCEPTION);
        reset(true);

        setBlockDataMode(false);
        try
          {
            if (DEBUG)
              {
                e.printStackTrace(System.out);
              }
            writeObject(e);
          }
        catch (IOException ioe)
          {
            StreamCorruptedException ex =
              new StreamCorruptedException
              (ioe + " thrown while exception was being written to stream.");
            if (DEBUG)
              {
                ex.printStackTrace(System.out);
              }
            throw ex;
          }

        reset (true);

Tom Tromey committed
501 502 503
      }
    finally
      {
504 505 506
        isSerializing = was_serializing;
        setBlockDataMode(old_mode);
        depth -= 2;
Tom Tromey committed
507

508 509
        if (dump)
          dumpElementln ("END: ", obj);
Tom Tromey committed
510 511 512 513 514
      }
  }

  protected void writeClassDescriptor(ObjectStreamClass osc) throws IOException
  {
515 516 517
    if (osc.isProxyClass)
      {
        realOutput.writeByte(TC_PROXYCLASSDESC);
518 519 520 521
        Class[] intfs = osc.forClass().getInterfaces();
        realOutput.writeInt(intfs.length);
        for (int i = 0; i < intfs.length; i++)
          realOutput.writeUTF(intfs[i].getName());
522

523
        assignNewHandle(osc);
524

525 526 527 528 529 530 531 532 533
        boolean oldmode = setBlockDataMode(true);
        annotateProxyClass(osc.forClass());
        setBlockDataMode(oldmode);
        realOutput.writeByte(TC_ENDBLOCKDATA);
      }
    else
      {
        realOutput.writeByte(TC_CLASSDESC);
        realOutput.writeUTF(osc.getName());
534 535 536 537
        if (osc.isEnum())
          realOutput.writeLong(0L);
        else
          realOutput.writeLong(osc.getSerialVersionUID());
538
        assignNewHandle(osc);
Tom Tromey committed
539

540
        int flags = osc.getFlags();
Tom Tromey committed
541

542
        if (protocolVersion == PROTOCOL_VERSION_2
543
            && osc.isExternalizable())
544
        flags |= SC_BLOCK_DATA;
Tom Tromey committed
545

546
        realOutput.writeByte(flags);
Tom Tromey committed
547

548
        ObjectStreamField[] fields = osc.fields;
549

550 551 552
        if (fields == ObjectStreamClass.INVALID_FIELDS)
          throw new InvalidClassException
                  (osc.getName(), "serialPersistentFields is invalid");
553

554
        realOutput.writeShort(fields.length);
Tom Tromey committed
555

556 557 558
        ObjectStreamField field;
        for (int i = 0; i < fields.length; i++)
          {
559 560 561
            field = fields[i];
            realOutput.writeByte(field.getTypeCode ());
            realOutput.writeUTF(field.getName ());
Tom Tromey committed
562

563 564
            if (! field.isPrimitive())
              writeObject(field.getTypeString());
565
          }
Tom Tromey committed
566

567 568 569 570 571
        boolean oldmode = setBlockDataMode(true);
        annotateClass(osc.forClass());
        setBlockDataMode(oldmode);
        realOutput.writeByte(TC_ENDBLOCKDATA);
      }
Tom Tromey committed
572 573 574 575 576 577

    if (osc.isSerializable() || osc.isExternalizable())
      writeObject(osc.getSuper());
    else
      writeObject(null);
  }
578

Tom Tromey committed
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
  /**
   * Writes the current objects non-transient, non-static fields from
   * the current class to the underlying output stream.
   *
   * This method is intended to be called from within a object's
   * <code>private void writeObject (ObjectOutputStream)</code>
   * method.
   *
   * @exception NotActiveException This method was called from a
   * context other than from the current object's and current class's
   * <code>private void writeObject (ObjectOutputStream)</code>
   * method.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   */
  public void defaultWriteObject()
    throws IOException, NotActiveException
  {
    markFieldsWritten();
    writeFields(currentObject, currentObjectStreamClass);
  }


  private void markFieldsWritten() throws IOException
  {
    if (currentObject == null || currentObjectStreamClass == null)
      throw new NotActiveException
607
        ("defaultWriteObject called by non-active class and/or object");
Tom Tromey committed
608 609 610

    if (fieldsAlreadyWritten)
      throw new IOException
611
        ("Only one of writeFields and defaultWriteObject may be called, and it may only be called once");
Tom Tromey committed
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637

    fieldsAlreadyWritten = true;
  }

  /**
   * Resets stream to state equivalent to the state just after it was
   * constructed.
   *
   * Causes all objects previously written to the stream to be
   * forgotten.  A notification of this reset is also written to the
   * underlying stream.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code> or reset called while serialization is
   * in progress.
   */
  public void reset() throws IOException
  {
    reset(false);
  }


  private void reset(boolean internal) throws IOException
  {
    if (!internal)
      {
638 639
        if (isSerializing)
          throw new IOException("Reset called while serialization in progress");
Tom Tromey committed
640

641
        realOutput.writeByte(TC_RESET);
Tom Tromey committed
642
      }
643

Tom Tromey committed
644 645 646 647 648 649 650 651 652 653
    clearHandles();
  }


  /**
   * Informs this <code>ObjectOutputStream</code> to write data
   * according to the specified protocol.  There are currently two
   * different protocols, specified by <code>PROTOCOL_VERSION_1</code>
   * and <code>PROTOCOL_VERSION_2</code>.  This implementation writes
   * data using <code>PROTOCOL_VERSION_2</code> by default, as is done
654 655
   * since the JDK 1.2.
   * <p>
656
   * For an explanation of the differences between the two protocols
657 658
   * see the Java Object Serialization Specification.
   * </p>
659
   *
660
   * @param version the version to use.
661 662
   *
   * @throws IllegalArgumentException if <code>version</code> is not a valid
663 664 665 666
   * protocol.
   * @throws IllegalStateException if called after the first the first object
   * was serialized.
   * @throws IOException if an I/O error occurs.
667
   *
668 669
   * @see ObjectStreamConstants#PROTOCOL_VERSION_1
   * @see ObjectStreamConstants#PROTOCOL_VERSION_2
670
   *
671
   * @since 1.2
Tom Tromey committed
672 673 674 675
   */
  public void useProtocolVersion(int version) throws IOException
  {
    if (version != PROTOCOL_VERSION_1 && version != PROTOCOL_VERSION_2)
676
      throw new IllegalArgumentException("Invalid protocol version requested.");
677

678
    if (nextOID != baseWireHandle)
679
      throw new IllegalStateException("Protocol version cannot be changed "
680
                                      + "after serialization started.");
681

Tom Tromey committed
682 683 684 685 686 687 688 689 690 691 692 693 694 695
    protocolVersion = version;
  }

  /**
   * An empty hook that allows subclasses to write extra information
   * about classes to the stream.  This method is called the first
   * time each class is seen, and after all of the standard
   * information about the class has been written.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   *
   * @see ObjectInputStream#resolveClass(java.io.ObjectStreamClass)
   */
696
  protected void annotateClass(Class<?> cl) throws IOException
Tom Tromey committed
697 698 699
  {
  }

700
  protected void annotateProxyClass(Class<?> cl) throws IOException
Tom Tromey committed
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
  {
  }

  /**
   * Allows subclasses to replace objects that are written to the
   * stream with other objects to be written in their place.  This
   * method is called the first time each object is encountered
   * (modulo reseting of the stream).
   *
   * This method must be enabled before it will be called in the
   * serialization process.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   *
   * @see #enableReplaceObject(boolean)
   */
  protected Object replaceObject(Object obj) throws IOException
  {
    return obj;
  }


  /**
   * If <code>enable</code> is <code>true</code> and this object is
   * trusted, then <code>replaceObject (Object)</code> will be called
   * in subsequent calls to <code>writeObject (Object)</code>.
   * Otherwise, <code>replaceObject (Object)</code> will not be called.
   *
   * @exception SecurityException This class is not trusted.
   */
  protected boolean enableReplaceObject(boolean enable)
    throws SecurityException
  {
    if (enable)
      {
737 738 739
        SecurityManager sm = System.getSecurityManager();
        if (sm != null)
          sm.checkPermission(new SerializablePermission("enableSubstitution"));
Tom Tromey committed
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
      }

    boolean old_val = replacementEnabled;
    replacementEnabled = enable;
    return old_val;
  }


  /**
   * Writes stream magic and stream version information to the
   * underlying stream.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   */
  protected void writeStreamHeader() throws IOException
  {
    realOutput.writeShort(STREAM_MAGIC);
    realOutput.writeShort(STREAM_VERSION);
  }

  /**
   * Protected constructor that allows subclasses to override
   * serialization.  This constructor should be called by subclasses
   * that wish to override <code>writeObject (Object)</code>.  This
   * method does a security check <i>NOTE: currently not
   * implemented</i>, then sets a flag that informs
   * <code>writeObject (Object)</code> to call the subclasses
   * <code>writeObjectOverride (Object)</code> method.
   *
   * @see #writeObjectOverride(Object)
   */
  protected ObjectOutputStream() throws IOException, SecurityException
  {
    SecurityManager sec_man = System.getSecurityManager ();
    if (sec_man != null)
      sec_man.checkPermission(SUBCLASS_IMPLEMENTATION_PERMISSION);
    useSubclassMethod = true;
  }


  /**
   * This method allows subclasses to override the default
   * serialization mechanism provided by
   * <code>ObjectOutputStream</code>.  To make this method be used for
   * writing objects, subclasses must invoke the 0-argument
   * constructor on this class from there constructor.
   *
   * @see #ObjectOutputStream()
   *
   * @exception NotActiveException Subclass has arranged for this
   * method to be called, but did not implement this method.
   */
  protected void writeObjectOverride(Object obj) throws NotActiveException,
    IOException
  {
    throw new NotActiveException
      ("Subclass of ObjectOutputStream must implement writeObjectOverride");
  }


  /**
   * @see DataOutputStream#write(int)
   */
  public void write (int data) throws IOException
  {
    if (writeDataAsBlocks)
      {
808 809
        if (blockDataCount == BUFFER_SIZE)
          drain();
Tom Tromey committed
810

811
        blockData[ blockDataCount++ ] = (byte)data;
Tom Tromey committed
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
      }
    else
      realOutput.write(data);
  }


  /**
   * @see DataOutputStream#write(byte[])
   */
  public void write(byte[] b) throws IOException
  {
    write(b, 0, b.length);
  }


  /**
   * @see DataOutputStream#write(byte[],int,int)
   */
  public void write(byte[] b, int off, int len) throws IOException
  {
    if (writeDataAsBlocks)
      {
834 835 836 837 838 839 840 841 842 843 844 845 846 847
        if (len < 0)
          throw new IndexOutOfBoundsException();

        if (blockDataCount + len < BUFFER_SIZE)
          {
            System.arraycopy(b, off, blockData, blockDataCount, len);
            blockDataCount += len;
          }
        else
          {
            drain();
            writeBlockDataHeader(len);
            realOutput.write(b, off, len);
          }
Tom Tromey committed
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
      }
    else
      realOutput.write(b, off, len);
  }


  /**
   * @see DataOutputStream#flush()
   */
  public void flush () throws IOException
  {
    drain();
    realOutput.flush();
  }


  /**
   * Causes the block-data buffer to be written to the underlying
   * stream, but does not flush underlying stream.
   *
   * @exception IOException Exception from underlying
   * <code>OutputStream</code>.
   */
  protected void drain() throws IOException
  {
    if (blockDataCount == 0)
      return;

    if (writeDataAsBlocks)
      writeBlockDataHeader(blockDataCount);
    realOutput.write(blockData, 0, blockDataCount);
    blockDataCount = 0;
  }


  /**
   * @see java.io.DataOutputStream#close ()
   */
  public void close() throws IOException
  {
    flush();
    realOutput.close();
  }


  /**
   * @see java.io.DataOutputStream#writeBoolean (boolean)
   */
  public void writeBoolean(boolean data) throws IOException
  {
    blockDataOutput.writeBoolean(data);
  }


  /**
   * @see java.io.DataOutputStream#writeByte (int)
   */
  public void writeByte(int data) throws IOException
  {
    blockDataOutput.writeByte(data);
  }


  /**
   * @see java.io.DataOutputStream#writeShort (int)
   */
  public void writeShort (int data) throws IOException
  {
    blockDataOutput.writeShort(data);
  }


  /**
   * @see java.io.DataOutputStream#writeChar (int)
   */
  public void writeChar(int data) throws IOException
  {
    blockDataOutput.writeChar(data);
  }


  /**
   * @see java.io.DataOutputStream#writeInt (int)
   */
  public void writeInt(int data) throws IOException
  {
    blockDataOutput.writeInt(data);
  }


  /**
   * @see java.io.DataOutputStream#writeLong (long)
   */
  public void writeLong(long data) throws IOException
  {
    blockDataOutput.writeLong(data);
  }


  /**
   * @see java.io.DataOutputStream#writeFloat (float)
   */
  public void writeFloat(float data) throws IOException
  {
    blockDataOutput.writeFloat(data);
  }


  /**
   * @see java.io.DataOutputStream#writeDouble (double)
   */
  public void writeDouble(double data) throws IOException
  {
    blockDataOutput.writeDouble(data);
  }


  /**
   * @see java.io.DataOutputStream#writeBytes (java.lang.String)
   */
  public void writeBytes(String data) throws IOException
  {
    blockDataOutput.writeBytes(data);
  }


  /**
   * @see java.io.DataOutputStream#writeChars (java.lang.String)
   */
  public void writeChars(String data) throws IOException
  {
    dataOutput.writeChars(data);
  }


  /**
   * @see java.io.DataOutputStream#writeUTF (java.lang.String)
   */
  public void writeUTF(String data) throws IOException
  {
    dataOutput.writeUTF(data);
  }


  /**
   * This class allows a class to specify exactly which fields should
   * be written, and what values should be written for these fields.
   *
   * XXX: finish up comments
   */
  public abstract static class PutField
  {
    public abstract void put (String name, boolean value);
    public abstract void put (String name, byte value);
    public abstract void put (String name, char value);
    public abstract void put (String name, double value);
    public abstract void put (String name, float value);
    public abstract void put (String name, int value);
    public abstract void put (String name, long value);
    public abstract void put (String name, short value);
    public abstract void put (String name, Object value);

    /**
     * @deprecated
     */
    public abstract void write (ObjectOutput out) throws IOException;
  }

  public PutField putFields() throws IOException
  {
    if (currentPutField != null)
      return currentPutField;

    currentPutField = new PutField()
      {
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
        private byte[] prim_field_data
          = new byte[currentObjectStreamClass.primFieldSize];
        private Object[] objs
          = new Object[currentObjectStreamClass.objectFieldCount];

        private ObjectStreamField getField (String name)
        {
          ObjectStreamField field
            = currentObjectStreamClass.getField(name);

          if (field == null)
            throw new IllegalArgumentException("no such serializable field " + name);

          return field;
        }

        public void put(String name, boolean value)
        {
          ObjectStreamField field = getField(name);

          checkType(field, 'Z');
          prim_field_data[field.getOffset ()] = (byte)(value ? 1 : 0);
        }

        public void put(String name, byte value)
        {
          ObjectStreamField field = getField(name);

          checkType(field, 'B');
          prim_field_data[field.getOffset()] = value;
        }

        public void put(String name, char value)
        {
          ObjectStreamField field = getField(name);

          checkType(field, 'C');
          int off = field.getOffset();
          prim_field_data[off++] = (byte)(value >>> 8);
          prim_field_data[off] = (byte)value;
        }

        public void put(String name, double value)
        {
          ObjectStreamField field = getField (name);

          checkType(field, 'D');
          int off = field.getOffset();
          long l_value = Double.doubleToLongBits (value);
          prim_field_data[off++] = (byte)(l_value >>> 52);
          prim_field_data[off++] = (byte)(l_value >>> 48);
          prim_field_data[off++] = (byte)(l_value >>> 40);
          prim_field_data[off++] = (byte)(l_value >>> 32);
          prim_field_data[off++] = (byte)(l_value >>> 24);
          prim_field_data[off++] = (byte)(l_value >>> 16);
          prim_field_data[off++] = (byte)(l_value >>> 8);
          prim_field_data[off] = (byte)l_value;
        }

        public void put(String name, float value)
        {
          ObjectStreamField field = getField(name);

          checkType(field, 'F');
          int off = field.getOffset();
          int i_value = Float.floatToIntBits(value);
          prim_field_data[off++] = (byte)(i_value >>> 24);
          prim_field_data[off++] = (byte)(i_value >>> 16);
          prim_field_data[off++] = (byte)(i_value >>> 8);
          prim_field_data[off] = (byte)i_value;
        }

        public void put(String name, int value)
        {
          ObjectStreamField field = getField(name);
          checkType(field, 'I');
          int off = field.getOffset();
          prim_field_data[off++] = (byte)(value >>> 24);
          prim_field_data[off++] = (byte)(value >>> 16);
          prim_field_data[off++] = (byte)(value >>> 8);
          prim_field_data[off] = (byte)value;
        }

        public void put(String name, long value)
        {
          ObjectStreamField field = getField(name);
          checkType(field, 'J');
          int off = field.getOffset();
          prim_field_data[off++] = (byte)(value >>> 52);
          prim_field_data[off++] = (byte)(value >>> 48);
          prim_field_data[off++] = (byte)(value >>> 40);
          prim_field_data[off++] = (byte)(value >>> 32);
          prim_field_data[off++] = (byte)(value >>> 24);
          prim_field_data[off++] = (byte)(value >>> 16);
          prim_field_data[off++] = (byte)(value >>> 8);
          prim_field_data[off] = (byte)value;
        }

        public void put(String name, short value)
        {
          ObjectStreamField field = getField(name);
          checkType(field, 'S');
          int off = field.getOffset();
          prim_field_data[off++] = (byte)(value >>> 8);
          prim_field_data[off] = (byte)value;
        }

        public void put(String name, Object value)
        {
          ObjectStreamField field = getField(name);

          if (value != null &&
              ! field.getType().isAssignableFrom(value.getClass ()))
            throw new IllegalArgumentException("Class " + value.getClass() +
                                               " cannot be cast to " + field.getType());
          objs[field.getOffset()] = value;
        }

        public void write(ObjectOutput out) throws IOException
        {
          // Apparently Block data is not used with PutField as per
          // empirical evidence against JDK 1.2.  Also see Mauve test
          // java.io.ObjectInputOutput.Test.GetPutField.
          boolean oldmode = setBlockDataMode(false);
          out.write(prim_field_data);
          for (int i = 0; i < objs.length; ++ i)
            out.writeObject(objs[i]);
          setBlockDataMode(oldmode);
        }

        private void checkType(ObjectStreamField field, char type)
          throws IllegalArgumentException
        {
          if (TypeSignature.getEncodingOfClass(field.getType()).charAt(0)
              != type)
            throw new IllegalArgumentException();
        }
Tom Tromey committed
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
      };
    // end PutFieldImpl

    return currentPutField;
  }


  public void writeFields() throws IOException
  {
    if (currentPutField == null)
      throw new NotActiveException("writeFields can only be called after putFields has been called");

    markFieldsWritten();
    currentPutField.write(this);
  }


  // write out the block-data buffer, picking the correct header
  // depending on the size of the buffer
  private void writeBlockDataHeader(int size) throws IOException
  {
    if (size < 256)
      {
1183 1184
        realOutput.writeByte(TC_BLOCKDATA);
        realOutput.write(size);
Tom Tromey committed
1185 1186 1187
      }
    else
      {
1188 1189
        realOutput.writeByte(TC_BLOCKDATALONG);
        realOutput.writeInt(size);
Tom Tromey committed
1190 1191 1192 1193 1194 1195
      }
  }


  // lookup the handle for OBJ, return null if OBJ doesn't have a
  // handle yet
1196
  private int findHandle(Object obj)
Tom Tromey committed
1197
  {
1198
    return OIDLookupTable.get(obj);
Tom Tromey committed
1199 1200 1201 1202 1203 1204
  }


  // assigns the next availible handle to OBJ
  private int assignNewHandle(Object obj)
  {
1205
    OIDLookupTable.put(obj, nextOID);
Tom Tromey committed
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
    return nextOID++;
  }


  // resets mapping from objects to handles
  private void clearHandles()
  {
    nextOID = baseWireHandle;
    OIDLookupTable.clear();
  }


  // write out array size followed by each element of the array
  private void writeArraySizeAndElements(Object array, Class clazz)
    throws IOException
  {
    int length = Array.getLength(array);

    if (clazz.isPrimitive())
      {
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
        if (clazz == Boolean.TYPE)
          {
            boolean[] cast_array = (boolean[])array;
            realOutput.writeInt (length);
            for (int i = 0; i < length; i++)
              realOutput.writeBoolean(cast_array[i]);
            return;
          }
        if (clazz == Byte.TYPE)
          {
            byte[] cast_array = (byte[])array;
            realOutput.writeInt(length);
            realOutput.write(cast_array, 0, length);
            return;
          }
        if (clazz == Character.TYPE)
          {
            char[] cast_array = (char[])array;
            realOutput.writeInt(length);
            for (int i = 0; i < length; i++)
              realOutput.writeChar(cast_array[i]);
            return;
          }
        if (clazz == Double.TYPE)
          {
            double[] cast_array = (double[])array;
            realOutput.writeInt(length);
            for (int i = 0; i < length; i++)
              realOutput.writeDouble(cast_array[i]);
            return;
          }
        if (clazz == Float.TYPE)
          {
            float[] cast_array = (float[])array;
            realOutput.writeInt(length);
            for (int i = 0; i < length; i++)
              realOutput.writeFloat(cast_array[i]);
            return;
          }
        if (clazz == Integer.TYPE)
          {
            int[] cast_array = (int[])array;
            realOutput.writeInt(length);
            for (int i = 0; i < length; i++)
              realOutput.writeInt(cast_array[i]);
            return;
          }
        if (clazz == Long.TYPE)
          {
            long[] cast_array = (long[])array;
            realOutput.writeInt (length);
            for (int i = 0; i < length; i++)
              realOutput.writeLong(cast_array[i]);
            return;
          }
        if (clazz == Short.TYPE)
          {
            short[] cast_array = (short[])array;
            realOutput.writeInt (length);
            for (int i = 0; i < length; i++)
              realOutput.writeShort(cast_array[i]);
            return;
          }
Tom Tromey committed
1289 1290 1291
      }
    else
      {
1292 1293 1294 1295
        Object[] cast_array = (Object[])array;
        realOutput.writeInt(length);
        for (int i = 0; i < length; i++)
          writeObject(cast_array[i]);
Tom Tromey committed
1296 1297 1298 1299
      }
  }


1300
/* GCJ LOCAL */
Tom Tromey committed
1301
  // writes out FIELDS of OBJECT for the specified ObjectStreamClass.
1302 1303 1304
  // FIELDS are already supposed already to be in canonical order, but
  // under some circumstances (to do with Proxies) this isn't the
  // case, so we call ensureFieldsSet().
Tom Tromey committed
1305 1306 1307
  private void writeFields(Object obj, ObjectStreamClass osc)
    throws IOException
  {
1308 1309 1310
    osc.ensureFieldsSet(osc.forClass());
/* END GCJ LOCAL */

Tom Tromey committed
1311 1312 1313
    ObjectStreamField[] fields = osc.fields;
    boolean oldmode = setBlockDataMode(false);

1314
    try
Tom Tromey committed
1315
      {
1316 1317 1318 1319 1320 1321 1322 1323
        writeFields(obj,fields);
      }
    catch (IllegalArgumentException _)
      {
        InvalidClassException e = new InvalidClassException
          ("writing fields of class " + osc.forClass().getName());
        e.initCause(_);
        throw e;
Tom Tromey committed
1324
      }
1325 1326 1327 1328 1329 1330 1331 1332 1333
    catch (IOException e)
      {
        throw e;
      }
    catch (Exception _)
      {
        IOException e = new IOException("Unexpected exception " + _);
        e.initCause(_);
        throw(e);
1334
      }
1335

Tom Tromey committed
1336 1337
    setBlockDataMode(oldmode);
  }
1338

1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355

  /**
   * Helper function for writeFields(Object,ObjectStreamClass): write
   * fields from given fields array.  Pass exception on.
   *
   * @param obj the object to be written
   *
   * @param fields the fields of obj to be written.
   */
  private void writeFields(Object obj, ObjectStreamField[] fields)
    throws
      IllegalArgumentException, IllegalAccessException, IOException
  {
    for (int i = 0; i < fields.length; i++)
      {
        ObjectStreamField osf = fields[i];
        Field field = osf.field;
1356

1357 1358
        if (DEBUG && dump)
          dumpElementln ("WRITE FIELD: " + osf.getName() + " type=" + osf.getType());
1359

1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
        switch (osf.getTypeCode())
          {
          case 'Z': realOutput.writeBoolean(field.getBoolean(obj)); break;
          case 'B': realOutput.writeByte   (field.getByte   (obj)); break;
          case 'S': realOutput.writeShort  (field.getShort  (obj)); break;
          case 'C': realOutput.writeChar   (field.getChar   (obj)); break;
          case 'I': realOutput.writeInt    (field.getInt    (obj)); break;
          case 'F': realOutput.writeFloat  (field.getFloat  (obj)); break;
          case 'J': realOutput.writeLong   (field.getLong   (obj)); break;
          case 'D': realOutput.writeDouble (field.getDouble (obj)); break;
1370
          case 'L':
1371
          case '[':            writeObject (field.get       (obj)); break;
1372
          default:
1373 1374 1375 1376
            throw new IOException("Unexpected type code " + osf.getTypeCode());
          }
      }
  }
Tom Tromey committed
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410


  // Toggles writing primitive data to block-data buffer.
  // Package-private to avoid a trampoline constructor.
  boolean setBlockDataMode(boolean on) throws IOException
  {
    if (on == writeDataAsBlocks)
      return on;

    drain();
    boolean oldmode = writeDataAsBlocks;
    writeDataAsBlocks = on;

    if (on)
      dataOutput = blockDataOutput;
    else
      dataOutput = realOutput;

    return oldmode;
  }


  private void callWriteMethod(Object obj, ObjectStreamClass osc)
    throws IOException
  {
    currentPutField = null;
    try
      {
        Object args[] = {this};
        osc.writeObjectMethod.invoke(obj, args);
      }
    catch (InvocationTargetException x)
      {
        /* Rethrow if possible. */
1411 1412 1413 1414 1415 1416 1417 1418 1419
        Throwable exception = x.getTargetException();
        if (exception instanceof RuntimeException)
          throw (RuntimeException) exception;
        if (exception instanceof IOException)
          throw (IOException) exception;

        IOException ioe
          = new IOException("Exception thrown from writeObject() on " +
                            osc.forClass().getName() + ": " +
Tom Tromey committed
1420
                            exception.getClass().getName());
1421 1422
        ioe.initCause(exception);
        throw ioe;
Tom Tromey committed
1423 1424 1425
      }
    catch (Exception x)
      {
1426 1427 1428 1429 1430 1431
        IOException ioe
          = new IOException("Failure invoking writeObject() on " +
                            osc.forClass().getName() + ": " +
                            x.getClass().getName());
        ioe.initCause(x);
        throw ioe;
Tom Tromey committed
1432 1433 1434
      }
  }

1435 1436 1437 1438
  private void dumpElementln (String msg, Object obj)
  {
    try
      {
1439 1440 1441 1442 1443 1444 1445 1446
        for (int i = 0; i < depth; i++)
          System.out.print (" ");
        System.out.print (Thread.currentThread() + ": ");
        System.out.print (msg);
        if (java.lang.reflect.Proxy.isProxyClass(obj.getClass()))
          System.out.print (obj.getClass());
        else
          System.out.print (obj);
1447 1448 1449 1450 1451 1452
      }
    catch (Exception _)
      {
      }
    finally
      {
1453
        System.out.println ();
1454 1455 1456
      }
  }

Tom Tromey committed
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483
  private void dumpElementln (String msg)
  {
    for (int i = 0; i < depth; i++)
      System.out.print (" ");
    System.out.print (Thread.currentThread() + ": ");
    System.out.println(msg);
  }

  // this value comes from 1.2 spec, but is used in 1.1 as well
  private static final int BUFFER_SIZE = 1024;

  private static int defaultProtocolVersion = PROTOCOL_VERSION_2;

  private DataOutputStream dataOutput;
  private boolean writeDataAsBlocks;
  private DataOutputStream realOutput;
  private DataOutputStream blockDataOutput;
  private byte[] blockData;
  private int blockDataCount;
  private Object currentObject;
  // Package-private to avoid a trampoline.
  ObjectStreamClass currentObjectStreamClass;
  private PutField currentPutField;
  private boolean fieldsAlreadyWritten;
  private boolean replacementEnabled;
  private boolean isSerializing;
  private int nextOID;
1484
  private ObjectIdentityMap2Int OIDLookupTable;
Tom Tromey committed
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
  private int protocolVersion;
  private boolean useSubclassMethod;
  private SetAccessibleAction setAccessible = new SetAccessibleAction();

  // The nesting depth for debugging output
  private int depth = 0;

  // Set if we're generating debugging dumps
  private boolean dump = false;

  private static final boolean DEBUG = false;
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535

  /**
   * Returns true if the given class overrides either of the
   * methods <code>putFields</code> or <code>writeUnshared</code>.
   *
   * @param clazz the class to check.
   * @return true if the class overrides one of the methods.
   */
  private static boolean overridesMethods(final Class<?> clazz)
  {
    if (clazz == ObjectOutputStream.class)
      return false;

    return AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
        public Boolean run()
        {
          Method[] methods = clazz.getDeclaredMethods();
          for (int a = 0; a < methods.length; ++a)
            {
              String name = methods[a].getName();
              if (name.equals("writeUnshared"))
                {
                  Class<?>[] paramTypes = methods[a].getParameterTypes();
                  if (paramTypes.length == 1 &&
                      paramTypes[0] == Object.class &&
                      methods[a].getReturnType() == Void.class)
                    return true;
                }
              else if (name.equals("putFields"))
                {
                  if (methods[a].getParameterTypes().length == 0 &&
                      methods[a].getReturnType() == PutField.class)
                    return true;
                }
            }
          return false;
        }
      });
  }

Tom Tromey committed
1536
}