Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDO/Legacy Mode"

< CDO
(Switch me on)
Line 1: Line 1:
 
= Advantages =
 
= Advantages =
 +
The most obvious advantage of the legacy mode is that you don not need to convert your model and to regenerate your classes. This is very useful if you e.g. cannot change the source because only own the binaries. In this case legacy mode is the perfect best choice.
 +
  
 
= Drawbacks =  
 
= Drawbacks =  
 +
 +
The disadvantage of the legacy mode lies in its nature. It is just a bridge between EMF and the CDO framework. Thus it inherits the limited scalability of “normal” EMF implementations. It is also a bit slower than the native CDO approach. See the chapter about performance for more information.
  
 
= Switch me on =  
 
= Switch me on =  

Revision as of 15:44, 26 March 2010

Advantages

The most obvious advantage of the legacy mode is that you don not need to convert your model and to regenerate your classes. This is very useful if you e.g. cannot change the source because only own the binaries. In this case legacy mode is the perfect best choice.


Drawbacks

The disadvantage of the legacy mode lies in its nature. It is just a bridge between EMF and the CDO framework. Thus it inherits the limited scalability of “normal” EMF implementations. It is also a bit slower than the native CDO approach. See the chapter about performance for more information.

Switch me on

We decided to make the legacy mode switchable. This has two reasons. First, native mode is always recommended. Use legacy objects only if you have not other chance. But then you should be aware of the disadvantaged. The second reason is the automatically attaching EObject to CDO could be harder to debug. Guess a user forgot to convert it’s model by accident and than receives an error which is related to legacy. This fact might not be show in the behaior of the error or even the stack trace of the exception. With a switchable legacy mode we can assure the user who are using legacy know what they do and that they are aware of using legacy.


From the technical point of view CDO now supports two ways to switch legacy support on or off. The first applies to the CDO session. If legacy is enabled fo a session all transactions on it are created legacy aware. To be exact, this flag also sets the behaviour of the session's transaction. By default legacy is disabled.

public interface InternalCDOSession extends CDOSession, PackageProcessor, PackageLoader, RevisionLocker, ILifecycle
{
 ...
 
  public void setLegacyEnabled(boolean legacyEnabled);
 
  public boolean isLegacyEnabled();
 
}


You can also switch legacy on or off on transaction level. The same methods are attached to the InternalCDOTransaction giving you the possibility to switch on certain transaction. You can also disable legacy integration for some transactions even if the session allows by default.

public interface InternalCDOSession extends CDOSession, PackageProcessor, PackageLoader, RevisionLocker, ILifecycle
{
 
 public void setLegacyEnabled(boolean legacyEnabled);
 
 public boolean isLegacyEnabled();
 
}

The snippet below shows how legacy can be enabled or disabled.

((InternalCDOSession)session).setLegacyEnabled(true);
((InternalCDOTransaction)transaction).setLegacyEnabled(true);

DynamicEObjects

While it was forbidden and punished with an exception to use DynamicEObjects on CDO this is now possible. You can create the dynamic objects as you are used to and store them in CDO. But remember that this is not the recommended way. Cause dynamic EObject can easily be converted to CDO you encouraged to use CDOUtil.prepareDynamicEPackage(dynamicMapEPackage) whenever possible to convert your dynamic model to a CDO native one. For this reason the tracer, when activated, gives a warning if you have not done so.

Mixed Mode

Performance

Due to its nature legacy mode is slower than the native approach. But have in mind that the loss of performance only applies to the client site. For the communication and the server side legacy is transparent.

Back to the top