Skip to main content



      Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Cyclic dependency
Cyclic dependency [message #32611] Fri, 14 November 2008 04:16 Go to next message
Eclipse UserFriend
Hi
I would like to know about plugin cyclic dependency? How to solve this
cyclic dependency with an example.

please provide me a simple exmaple with two plugins.


Thanks in advance
Naag
Re: Cyclic dependency [message #32942 is a reply to message #32611] Fri, 14 November 2008 11:54 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse-news.rizzoweb.com

On 11/14/2008 4:16 AM, Naag wrote:
> Hi
> I would like to know about plugin cyclic dependency? How to solve this
> cyclic dependency with an example.
>
> please provide me a simple exmaple with two plugins.

I'm not sure what kind of example you're expecting. Any two plugins that
don't depend on each other is an example of avoiding a cyclic dependency.
The way to "solve" a cyclic dependency between PluginA and PluginB is to
NOT make PluginA depend on PluginB if PluginB already depends on
PluginA. It's a pretty simple rule.

If you want more help than that you'll have to provide more detail about
what you're trying to do (for example, why do both of your plugins
depend on each other).

Eric
Re: Cyclic dependency [message #33155 is a reply to message #32942] Sun, 16 November 2008 22:47 Go to previous messageGo to next message
Eclipse UserFriend
Hi Eric

Thanks for the response.

All i need is to access the methods and variables of PLUG-IN A in PLUG-IN
B and PLUG-IN B in PLUG-IN A.(Communication between two plugins).

Also i would like to request to let me know about dependency and extension
point if provided with an example.

Regards
Naag
Re: Cyclic dependency [message #33224 is a reply to message #33155] Mon, 17 November 2008 01:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Naag,

you should rethink your architecture -
as Eric already asks you: WHY do you need this cyclic dependency

if you're the owner of plug-in a and b then you should find a way
without cyclic dependencies - perhaps using a third plug-in C or
re-structuring the content of your plug-ins or use of fragments

if there's really no way without these cyclic dependencies perhaps
eclipse-buddy is the way to go

ekke

Naag schrieb:
> Hi Eric
>
> Thanks for the response.
>
> All i need is to access the methods and variables of PLUG-IN A in
> PLUG-IN B and PLUG-IN B in PLUG-IN A.(Communication between two plugins).
>
> Also i would like to request to let me know about dependency and
> extension point if provided with an example.
>
> Regards
> Naag
>
>
Re: Cyclic dependency [message #33259 is a reply to message #33224] Mon, 17 November 2008 07:01 Go to previous messageGo to next message
Eclipse UserFriend
HI ekke

There is no way restructure my architecture. I want to know about eclipse
buddy policy. It will be a great help if u explain me buddy policy with a
simple example.

I am awaiting for your response.

Regards
Naag
Re: Cyclic dependency [message #33512 is a reply to message #33259] Mon, 17 November 2008 10:09 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Naag schrieb:
> HI ekke
>
> There is no way restructure my architecture. I want to know about
> eclipse buddy policy. It will be a great help if u explain me buddy
> policy with a simple example.
>
> I am awaiting for your response.
>
> Regards
> Naag
>
theres a good article from alex blewitt:
http://www.eclipsezone.com/articles/eclipse-vms/

ekke
Re: Cyclic dependency [message #33544 is a reply to message #33512] Mon, 17 November 2008 10:19 Go to previous messageGo to next message
Eclipse UserFriend
Where's the reason to split 2 things into 2 bundles if they can't live
without each other.

Extract the things of A and B which need each other in C and make A and
B depend on C or if everything needs everything then move everything in
one plugin.

Tom

ekke schrieb:
> Naag schrieb:
>> HI ekke
>>
>> There is no way restructure my architecture. I want to know about
>> eclipse buddy policy. It will be a great help if u explain me buddy
>> policy with a simple example.
>>
>> I am awaiting for your response.
>>
>> Regards
>> Naag
>>
> theres a good article from alex blewitt:
> http://www.eclipsezone.com/articles/eclipse-vms/
>
> ekke


--
B e s t S o l u t i o n . at
------------------------------------------------------------ --------
Tom Schindl JFace-Committer
------------------------------------------------------------ --------
Re: Cyclic dependency [message #33715 is a reply to message #33544] Mon, 17 November 2008 11:00 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Tom Schindl schrieb:
> Where's the reason to split 2 things into 2 bundles if they can't live
> without each other.
>
thats also my question to Naaq,
I understand that - with 3rd party bundles - there are situations you
have to use buddies or dynamic imports
But with bundles "under own control" there's always a way without cycles

ekke
> Extract the things of A and B which need each other in C and make A and
> B depend on C or if everything needs everything then move everything in
> one plugin.
>
> Tom
>
> ekke schrieb:
>> Naag schrieb:
>>> HI ekke
>>>
>>> There is no way restructure my architecture. I want to know about
>>> eclipse buddy policy. It will be a great help if u explain me buddy
>>> policy with a simple example.
>>>
>>> I am awaiting for your response.
>>>
>>> Regards
>>> Naag
>>>
>> theres a good article from alex blewitt:
>> http://www.eclipsezone.com/articles/eclipse-vms/
>>
>> ekke
>
>
Re: Cyclic dependency [message #585172 is a reply to message #32611] Fri, 14 November 2008 11:54 Go to previous message
Eclipse UserFriend
On 11/14/2008 4:16 AM, Naag wrote:
> Hi
> I would like to know about plugin cyclic dependency? How to solve this
> cyclic dependency with an example.
>
> please provide me a simple exmaple with two plugins.

I'm not sure what kind of example you're expecting. Any two plugins that
don't depend on each other is an example of avoiding a cyclic dependency.
The way to "solve" a cyclic dependency between PluginA and PluginB is to
NOT make PluginA depend on PluginB if PluginB already depends on
PluginA. It's a pretty simple rule.

If you want more help than that you'll have to provide more detail about
what you're trying to do (for example, why do both of your plugins
depend on each other).

Eric
Re: Cyclic dependency [message #585284 is a reply to message #32942] Sun, 16 November 2008 22:47 Go to previous message
Eclipse UserFriend
Hi Eric

Thanks for the response.

All i need is to access the methods and variables of PLUG-IN A in PLUG-IN
B and PLUG-IN B in PLUG-IN A.(Communication between two plugins).

Also i would like to request to let me know about dependency and extension
point if provided with an example.

Regards
Naag
Re: Cyclic dependency [message #585317 is a reply to message #33155] Mon, 17 November 2008 01:56 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Naag,

you should rethink your architecture -
as Eric already asks you: WHY do you need this cyclic dependency

if you're the owner of plug-in a and b then you should find a way
without cyclic dependencies - perhaps using a third plug-in C or
re-structuring the content of your plug-ins or use of fragments

if there's really no way without these cyclic dependencies perhaps
eclipse-buddy is the way to go

ekke

Naag schrieb:
> Hi Eric
>
> Thanks for the response.
>
> All i need is to access the methods and variables of PLUG-IN A in
> PLUG-IN B and PLUG-IN B in PLUG-IN A.(Communication between two plugins).
>
> Also i would like to request to let me know about dependency and
> extension point if provided with an example.
>
> Regards
> Naag
>
>
Re: Cyclic dependency [message #585326 is a reply to message #33224] Mon, 17 November 2008 07:01 Go to previous message
Eclipse UserFriend
HI ekke

There is no way restructure my architecture. I want to know about eclipse
buddy policy. It will be a great help if u explain me buddy policy with a
simple example.

I am awaiting for your response.

Regards
Naag
Re: Cyclic dependency [message #585450 is a reply to message #33259] Mon, 17 November 2008 10:09 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Naag schrieb:
> HI ekke
>
> There is no way restructure my architecture. I want to know about
> eclipse buddy policy. It will be a great help if u explain me buddy
> policy with a simple example.
>
> I am awaiting for your response.
>
> Regards
> Naag
>
theres a good article from alex blewitt:
http://www.eclipsezone.com/articles/eclipse-vms/

ekke
Re: Cyclic dependency [message #585455 is a reply to message #33512] Mon, 17 November 2008 10:19 Go to previous message
Eclipse UserFriend
Where's the reason to split 2 things into 2 bundles if they can't live
without each other.

Extract the things of A and B which need each other in C and make A and
B depend on C or if everything needs everything then move everything in
one plugin.

Tom

ekke schrieb:
> Naag schrieb:
>> HI ekke
>>
>> There is no way restructure my architecture. I want to know about
>> eclipse buddy policy. It will be a great help if u explain me buddy
>> policy with a simple example.
>>
>> I am awaiting for your response.
>>
>> Regards
>> Naag
>>
> theres a good article from alex blewitt:
> http://www.eclipsezone.com/articles/eclipse-vms/
>
> ekke


--
B e s t S o l u t i o n . at
------------------------------------------------------------ --------
Tom Schindl JFace-Committer
------------------------------------------------------------ --------
Re: Cyclic dependency [message #585526 is a reply to message #33544] Mon, 17 November 2008 11:00 Go to previous message
Eclipse UserFriend
Originally posted by: ekkehard.gentz-software.de

Tom Schindl schrieb:
> Where's the reason to split 2 things into 2 bundles if they can't live
> without each other.
>
thats also my question to Naaq,
I understand that - with 3rd party bundles - there are situations you
have to use buddies or dynamic imports
But with bundles "under own control" there's always a way without cycles

ekke
> Extract the things of A and B which need each other in C and make A and
> B depend on C or if everything needs everything then move everything in
> one plugin.
>
> Tom
>
> ekke schrieb:
>> Naag schrieb:
>>> HI ekke
>>>
>>> There is no way restructure my architecture. I want to know about
>>> eclipse buddy policy. It will be a great help if u explain me buddy
>>> policy with a simple example.
>>>
>>> I am awaiting for your response.
>>>
>>> Regards
>>> Naag
>>>
>> theres a good article from alex blewitt:
>> http://www.eclipsezone.com/articles/eclipse-vms/
>>
>> ekke
>
>
Previous Topic:PDE build support for pack 200
Next Topic:HeadLess Build
Goto Forum:
  


Current Time: Fri May 09 12:54:39 EDT 2025

Powered by FUDForum. Page generated in 0.04832 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top