java.lang.Object
com.ibm.dtfj.phd.PHDImage
- All Implemented Interfaces:
Image,ManagedImage
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close this image and any associated resources.protected voidfinalize()Called by the virtual machine when there are no longer any (non-weak) references to the receiver.Get the set of address spaces within the image - typically one but may be more on some systems such as Z/OS.longUse the filename if of the form heapdump.yyyyMMdd.HHmmss.pid.seq.phd else the file datelongGet the value of the JVM's high-resolution timer when the image was created.Get the host name of the system where the image was running.longGet the amount of physical memory (in bytes) installed in the system on which the image was running.The set of IP addresses (as InetAddresses) which the system running the image possessed.intGet the number of CPUs running in the system on which the image was running.Get the precise model of the CPU.Get the family name for the processor on which the image was running.Gets the OS specific properties for this image.A unique identifier for the source of this imageGet the detailed name of the operating system.Get the family name for the operating system.voidregisterReader(HeapdumpReader reader) Register a HeapdumpReader as needing to be closed when Image.close() is called on this Image.voidsetImageSource(ManagedImageSource source) voidunregisterReader(HeapdumpReader reader) Unregister a HeapdumpReader so it no longer needs to be closed.Methods declared in class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface com.ibm.dtfj.image.Image
isTruncated
-
Method Details
-
getSource
Description copied from interface:ImageA unique identifier for the source of this image -
getAddressSpaces
Description copied from interface:ImageGet the set of address spaces within the image - typically one but may be more on some systems such as Z/OS.- Specified by:
getAddressSpacesin interfaceImage- Returns:
- an Iterator which iterates over all of the address spaces described by this Image
- See Also:
-
getCreationTime
Use the filename if of the form heapdump.yyyyMMdd.HHmmss.pid.seq.phd else the file date- Specified by:
getCreationTimein interfaceImage- Returns:
- the image creation time in milliseconds since 1970
- Throws:
DataUnavailable
-
getHostName
Description copied from interface:ImageGet the host name of the system where the image was running.- Specified by:
getHostNamein interfaceImage- Returns:
- The host name of the system where the image was running. This string will be non-null and non-empty
- Throws:
DataUnavailable- If the image did not provide this information (would happen if the system did not know its host name or if the image predated this feature).CorruptDataException
-
getIPAddresses
Description copied from interface:ImageThe set of IP addresses (as InetAddresses) which the system running the image possessed.- Specified by:
getIPAddressesin interfaceImage- Returns:
- An Iterator over the IP addresses (as InetAddresses) which the system running the image possessed. The iterator will be non-null (but can be empty if the host is known to have no IP addresses).
- Throws:
DataUnavailable- If the image did not provide this information (would happen if the system failed to look them up or if the image pre-dated this feature).- See Also:
-
getInstalledMemory
Description copied from interface:ImageGet the amount of physical memory (in bytes) installed in the system on which the image was running.- Specified by:
getInstalledMemoryin interfaceImage- Returns:
- the amount of physical memory installed in the system on which the image was running. The return value is specified in bytes.
- Throws:
DataUnavailable- if the information cannot be provided
-
getProcessorCount
Description copied from interface:ImageGet the number of CPUs running in the system on which the image was running.- Specified by:
getProcessorCountin interfaceImage- Returns:
- the number of CPUs running in the system on which the image was running
- Throws:
DataUnavailable- if the information cannot be provided
-
getProcessorSubType
Description copied from interface:ImageGet the precise model of the CPU.- Specified by:
getProcessorSubTypein interfaceImage- Returns:
- the precise model of the CPU (note that this can be an empty string but not null).
e.g. getProcessorType() will returnx86
where getProcessorSubType() may returnPentium IV step 4
Note that this value is platform and implementation dependent.
- Throws:
DataUnavailableCorruptDataException
-
getProcessorType
Description copied from interface:ImageGet the family name for the processor on which the image was running.- Specified by:
getProcessorTypein interfaceImage- Returns:
- the family name for the processor on which the image was running. This corresponds to the value you would find in the "os.arch" System property.
- Throws:
DataUnavailable- if this data cannot be inferred from this core typeCorruptDataException- if expected data cannot be read from the core
-
getSystemSubType
Description copied from interface:ImageGet the detailed name of the operating system.- Specified by:
getSystemSubTypein interfaceImage- Returns:
- the detailed name of the operating system, or an empty string if this information is not available (null will never be returned). This should be the same value that would be returned for the "os.version" system property
- Throws:
DataUnavailableCorruptDataException
-
getSystemType
Description copied from interface:ImageGet the family name for the operating system.- Specified by:
getSystemTypein interfaceImage- Returns:
- the family name for the operating system. This should be the same value that would be returned for the "os.name" system property
- Throws:
DataUnavailable- if this data cannot be inferred from this core typeCorruptDataException- if expected data cannot be read from the core
-
close
public void close()Description copied from interface:ImageClose this image and any associated resources.
Some kinds of Image require the generation of temporary resources, for example temporary files created when reading core files and libraries from .zip archives. Ordinarily, these resources are deleted at JVM shutdown, but DTFJ applications may want to free them earlier. This method should only be called when the Image is no longer needed. After this method has been called, any objects associated with the image will be in an invalid state.
-
finalize
Description copied from class:java.lang.ObjectCalled by the virtual machine when there are no longer any (non-weak) references to the receiver. Subclasses can use this facility to guarantee that any associated resources are cleaned up before the receiver is garbage collected. Uncaught exceptions which are thrown during the running of the method cause it to terminate immediately, but are otherwise ignored.Note: The virtual machine assumes that the implementation in class Object is empty.
-
registerReader
Register a HeapdumpReader as needing to be closed when Image.close() is called on this Image. -
unregisterReader
Unregister a HeapdumpReader so it no longer needs to be closed. This should only be called by HeapdumpReader.close() to make sure that we don't leak readers. -
getProperties
Description copied from interface:ImageGets the OS specific properties for this image.- Specified by:
getPropertiesin interfaceImage- Returns:
- a set of OS specific properties
-
getImageSource
- Specified by:
getImageSourcein interfaceManagedImage
-
setImageSource
- Specified by:
setImageSourcein interfaceManagedImage
-
getCreationTimeNanos
Description copied from interface:ImageGet the value of the JVM's high-resolution timer when the image was created.- Specified by:
getCreationTimeNanosin interfaceImage- Returns:
- the value of the high-resolution timer, in nanoseconds
- Throws:
DataUnavailable- if the image creation time is not availableCorruptDataException- if the image creation time is corrupted
-