Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JRE 8 rt.jar - com.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime environment included in JDK 8. JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the com.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ com/sun/corba/se/impl/encoding/TypeCodeOutputStream.java
/* * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.encoding; import org.omg.CORBA.TypeCode ; import org.omg.CORBA.StructMember ; import org.omg.CORBA.UnionMember ; import org.omg.CORBA.ValueMember ; import org.omg.CORBA.TCKind ; import org.omg.CORBA.Any ; import org.omg.CORBA.Principal ; import org.omg.CORBA.CompletionStatus ; import org.omg.CORBA.TypeCodePackage.BadKind ; import org.omg.CORBA_2_3.portable.InputStream; import org.omg.CORBA_2_3.portable.OutputStream; import com.sun.corba.se.spi.orb.ORB; import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry; import com.sun.corba.se.impl.encoding.MarshalInputStream; import com.sun.corba.se.spi.ior.iiop.GIOPVersion; import com.sun.corba.se.impl.encoding.CodeSetConversion; import com.sun.corba.se.impl.encoding.CDRInputStream; import com.sun.corba.se.impl.encoding.CDROutputStream; import java.util.HashMap; import java.util.Map; import java.util.Iterator; import java.util.List; import java.util.Collections; import java.util.ArrayList; import java.io.IOException; import java.io.PrintStream; import java.io.ByteArrayOutputStream; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.ByteBuffer; import sun.corba.EncapsInputStreamFactory; public final class TypeCodeOutputStream extends EncapsOutputStream { private OutputStream enclosure = null; private Map typeMap = null; private boolean isEncapsulation = false; public TypeCodeOutputStream(ORB orb) { super(orb, false); } public TypeCodeOutputStream(ORB orb, boolean littleEndian) { super(orb, littleEndian); } public org.omg.CORBA.portable.InputStream create_input_stream() { TypeCodeInputStream tcis = EncapsInputStreamFactory .newTypeCodeInputStream((ORB) orb(), getByteBuffer(), getIndex(), isLittleEndian(), getGIOPVersion()); //if (TypeCodeImpl.debug) { //System.out.println("Created TypeCodeInputStream " + tcis + " with no parent"); //tcis.printBuffer(); //} return tcis; } public void setEnclosingOutputStream(OutputStream enclosure) { this.enclosure = enclosure; } /* public boolean isEncapsulatedIn(TypeCodeOutputStream outerEnclosure) { if (outerEnclosure == this) return true; if (enclosure == null) return false; if (enclosure instanceof TypeCodeOutputStream) return ((TypeCodeOutputStream)enclosure).isEncapsulatedIn(outerEnclosure); // Last chance! Recursion ends with first non TypeCodeOutputStream. return (enclosure == outerEnclosure); } */ public TypeCodeOutputStream getTopLevelStream() { if (enclosure == null) return this; if (enclosure instanceof TypeCodeOutputStream) return ((TypeCodeOutputStream)enclosure).getTopLevelStream(); return this; } public int getTopLevelPosition() { if (enclosure != null && enclosure instanceof TypeCodeOutputStream) { int pos = ((TypeCodeOutputStream)enclosure).getTopLevelPosition() + getPosition(); // Add four bytes for the encaps length, not another 4 for the byte order // which is included in getPosition(). if (isEncapsulation) pos += 4; //if (TypeCodeImpl.debug) { //System.out.println("TypeCodeOutputStream.getTopLevelPosition using getTopLevelPosition " + //((TypeCodeOutputStream)enclosure).getTopLevelPosition() + //" + getPosition() " + getPosition() + //(isEncapsulation ? " + encaps length 4" : "") + //" = " + pos); //} return pos; } //if (TypeCodeImpl.debug) { //System.out.println("TypeCodeOutputStream.getTopLevelPosition returning getPosition() = " + //getPosition() + ", enclosure is " + enclosure); //} return getPosition(); } public void addIDAtPosition(String id, int position) { if (typeMap == null) typeMap = new HashMap(16); //if (TypeCodeImpl.debug) System.out.println(this + " adding id " + id + " at position " + position); typeMap.put(id, new Integer(position)); } public int getPositionForID(String id) { if (typeMap == null) throw wrapper.refTypeIndirType( CompletionStatus.COMPLETED_NO ) ; //if (TypeCodeImpl.debug) System.out.println("Getting position " + ((Integer)typeMap.get(id)).intValue() + //" for id " + id); return ((Integer)typeMap.get(id)).intValue(); } public void writeRawBuffer(org.omg.CORBA.portable.OutputStream s, int firstLong) { // Writes this streams buffer to the given OutputStream // without byte order flag and length as is the case for encapsulations. // Make sure to align s to 4 byte boundaries. // Unfortunately we can't do just this: // s.alignAndReserve(4, 4); // So we have to take the first four bytes given in firstLong and write them // with a call to write_long which will trigger the alignment. // Then write the rest of the byte array. //if (TypeCodeImpl.debug) { //System.out.println(this + ".writeRawBuffer(" + s + ", " + firstLong + ")"); //if (s instanceof CDROutputStream) { //System.out.println("Parent position before writing kind = " + ((CDROutputStream)s).getIndex()); //} //} s.write_long(firstLong); //if (TypeCodeImpl.debug) { //if (s instanceof CDROutputStream) { //System.out.println("Parent position after writing kind = " + ((CDROutputStream)s).getIndex()); //} //} ByteBuffer byteBuffer = getByteBuffer(); if (byteBuffer.hasArray()) { s.write_octet_array(byteBuffer.array(), 4, getIndex() - 4); } else { // get bytes from DirectByteBuffer // NOTE: Microbenchmarks are showing it is faster to do // a loop of ByteBuffer.get(int) than it is to do // a bulk ByteBuffer.get(byte[], offset, length) byte[] buf = new byte[byteBuffer.limit()]; for (int i = 0; i < buf.length; i++) buf[i] = byteBuffer.get(i); s.write_octet_array(buf, 4, getIndex() - 4); } //if (TypeCodeImpl.debug) { //if (s instanceof CDROutputStream) { //System.out.println("Parent position after writing all " + getIndex() + " bytes = " + ((CDROutputStream)s).getIndex()); //} //} } public TypeCodeOutputStream createEncapsulation(org.omg.CORBA.ORB _orb) { TypeCodeOutputStream encap = sun.corba.OutputStreamFactory.newTypeCodeOutputStream((ORB)_orb, isLittleEndian()); encap.setEnclosingOutputStream(this); encap.makeEncapsulation(); //if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + encap + " with parent " + this); return encap; } protected void makeEncapsulation() { // first entry in an encapsulation is the endianess putEndian(); isEncapsulation = true; } public static TypeCodeOutputStream wrapOutputStream(OutputStream os) { boolean littleEndian = ((os instanceof CDROutputStream) ? ((CDROutputStream)os).isLittleEndian() : false); TypeCodeOutputStream tos = sun.corba.OutputStreamFactory.newTypeCodeOutputStream((ORB)os.orb(), littleEndian); tos.setEnclosingOutputStream(os); //if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + tos + " with parent " + os); return tos; } public int getPosition() { return getIndex(); } public int getRealIndex(int index) { int topPos = getTopLevelPosition(); //if (TypeCodeImpl.debug) System.out.println("TypeCodeOutputStream.getRealIndex using getTopLevelPosition " + //topPos + " instead of getPosition " + getPosition()); return topPos; } /* protected void printBuffer() { super.printBuffer(); } */ public byte[] getTypeCodeBuffer() { // Returns the buffer trimmed of the trailing zeros and without the // known _kind value at the beginning. ByteBuffer theBuffer = getByteBuffer(); //System.out.println("outBuffer length = " + (getIndex() - 4)); byte[] tcBuffer = new byte[getIndex() - 4]; // Micro-benchmarks show that DirectByteBuffer.get(int) is faster // than DirectByteBuffer.get(byte[], offset, length). // REVISIT - May want to check if buffer is direct or non-direct // and use array copy if ByteBuffer is non-direct. for (int i = 0; i < tcBuffer.length; i++) tcBuffer[i] = theBuffer.get(i+4); return tcBuffer; } public void printTypeMap() { System.out.println("typeMap = {"); Iterator i = typeMap.keySet().iterator(); while (i.hasNext()) { String id = (String)i.next(); Integer pos = (Integer)typeMap.get(id); System.out.println(" key = " + id + ", value = " + pos); } System.out.println("}"); } }
⏎ com/sun/corba/se/impl/encoding/TypeCodeOutputStream.java
Or download all of them as a single archive file:
File name: jre-rt-com-1.8.0_191-src.zip File size: 8099783 bytes Release date: 2018-10-28 Download
⇒ Backup JDK 8 Installation Directory
2023-02-07, 325828👍, 3💬
Popular Posts:
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...
JDK 17 jdk.compiler.jmod is the JMOD file for JDK 17 Compiler tool, which can be invoked by the "jav...
JDK 8 tools.jar is the JAR file for JDK 8 tools. It contains Java classes to support different JDK t...
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...