Java Doc for VirtualMachine.java in  » IDE-Eclipse » jdt » org » eclipse » jdi » hcr » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jdt » org.eclipse.jdi.hcr 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.jdi.hcr.VirtualMachine

All known Subclasses:   org.eclipse.jdi.internal.VirtualMachineImpl,
VirtualMachine
public interface VirtualMachine (Code)
Hot code replacement extension to com.sun.jdi.VirtualMachine.


Field Summary
final public static  intRELOAD_FAILURE
    
final public static  intRELOAD_IGNORED
    
final public static  intRELOAD_SUCCESS
    


Method Summary
public  booleancanDoReturn()
     Determines if this implementation supports the early return of the top stack frame of a thread.
public  booleancanGetClassFileVersion()
     Determines if this implementation supports the retrieval of a class file version.
public  booleancanReenterOnExit()
     Determines if this implementation supports the reenter stepping.
public  booleancanReloadClasses()
     Determines if this implementation supports the replacement of classes on the fly.
public  intclassesHaveChanged(String[] arg1)
     Notifies the VM that the class file base that it is running from has changed.

Field Detail
RELOAD_FAILURE
final public static int RELOAD_FAILURE(Code)
The VM is inconsistent after the reload operation



RELOAD_IGNORED
final public static int RELOAD_IGNORED(Code)
The reload operation was ignored



RELOAD_SUCCESS
final public static int RELOAD_SUCCESS(Code)
All the given type were reloaded





Method Detail
canDoReturn
public boolean canDoReturn()(Code)
Determines if this implementation supports the early return of the top stack frame of a thread. true if the feature is supported, false otherwise.



canGetClassFileVersion
public boolean canGetClassFileVersion()(Code)
Determines if this implementation supports the retrieval of a class file version. true if the feature is supported, false otherwise.



canReenterOnExit
public boolean canReenterOnExit()(Code)
Determines if this implementation supports the reenter stepping. true if the feature is supported, false otherwise.



canReloadClasses
public boolean canReloadClasses()(Code)
Determines if this implementation supports the replacement of classes on the fly. true if the feature is supported, false otherwise.



classesHaveChanged
public int classesHaveChanged(String[] arg1)(Code)
Notifies the VM that the class file base that it is running from has changed. Classes are given by their names.

The class file base is the collection of class files available on the various VM's class paths consulted by the class loaders that are integral to the system. In JDK 1.2, these would include all files on the boot class path (used by the bootstrap class loader), the extension directory (used by the extension class loader), and the regular class path (used by the application class loader). The notion is important because only those classes that the VM knows to be in the class file base will be eligible for hot code replacement. Classes that are actually loaded by non-standard class loaders cannot be replaced on the fly (because the VM has no way of asking non-standard class loaders to reload them). Classes loaded from the class file base by cooperating class loaders are said to be HCR-eligible.

The VM is expected to:

  1. Suspend all running threads.
  2. For a given JNI signature, try to find the definition of the corresponding class.
    • If the class definition can be found then it replaces the previous definition for that class.
    • If a definition for the class is not found, then it is unloaded.
      • This operation returns only when the classes have been reloaded and/or deleted.
      • If the suspend policy of the class unload event is not to suspend the VM, then the VM resumes all the threads that it has suspended.
      • Finally for each class that has been reloaded, the VM is expected to
        • send a class unload event,
        • note the VM is already suspended if the suspend policy of class unload event said so,
        • when the frontend resumes the VM, send a class prepare event,
        • suspend the VM according to the suspend policy of the class prepare event request.
      • For each class that has been unloaded, the VM is expected to
        • send a class unload event,
        • suspend the VM if it was requested by the class unload event request.

Subsequent references to classes will work with the new class definition. Note the existing com.sun.jdi.ReferenceType, com.sun.jdi.Method and com.sun.jdi.Field still refer to the old class definition. So they should be discarded when the class unload event come in.

The VM does not discard stack frames automatically:

  • methods on the stack are not affected, and could therefore be referencing obsolete code
  • replacing a class does not affect anything on the stack
  • subsequent class and method lookups find the replacements

Installed breakpoints are not automatically carried over to the reloaded class:

  • breakpoints are resolved to particular locations in particular classes and methods
  • the VM must clear breakpoints to methods in classes that have been reloaded or unloaded (the debugger will reinstall them when it gets the class prepare event.)

A change notice encompasses changes to the content of a class file in the base, the addition of a class files to the base, and the removal of a class file from the base.

Change notices apply to all classes that are HCR-eligible (i.e., loaded by one of the cooperative system class loaders); other classes are never affected.

Returns whether the operation could be completed as specified above, whether it was ignored (for example if the VM doesn't support this kind of replacement), or whether the operation failed and the VM should be restarted.




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.