Re: Satisfy extension dependency by one of multiple extensions

Lists: pgsql-hackers
From: Yeb Havinga <yebhavinga(at)gmail(dot)com>
To: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Satisfy extension dependency by one of multiple extensions
Date: 2011-09-23 11:56:36
Message-ID: 4E7C73F4.1040203@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Hello list,

I have a use case where an extension dependency can be satisfied by one
of five other extensions. Currently I'm unable to express that in the
extension control file, since the elements from 'requires' are currently
searched on exact name match. The attached patch changes this behaviour
for list elements that end with a *, into prefix matching, so that e.g.
table* matches tablefunc.

This allows me to specify in a controlfile

requires 'vocab*'

which is satisfied by having either one of the following extensions loaded:

vocab2005
vocab2006
vocab2008
vocab2009
vocab2010

thoughts?

regards,
Yeb Havinga

--
Yeb Havinga
http://www.mgrid.net/
Mastering Medical Data

Attachment Content-Type Size
extension_dependency_choice.patch text/x-patch 2.2 KB

From: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>
To: Yeb Havinga <yebhavinga(at)gmail(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Satisfy extension dependency by one of multiple extensions
Date: 2011-09-23 12:19:34
Message-ID: 4E7C7956.7060400@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 23.09.2011 14:56, Yeb Havinga wrote:
> I have a use case where an extension dependency can be satisfied by one
> of five other extensions. Currently I'm unable to express that in the
> extension control file, since the elements from 'requires' are currently
> searched on exact name match. The attached patch changes this behaviour
> for list elements that end with a *, into prefix matching, so that e.g.
> table* matches tablefunc.

That's going to quickly extend into even more complex rules, like "foo
OR bar", "(foo OR bar) AND (foobar)" etc. IIRC the extension control
file format was modeled after some other package management system (.deb
?). You might want to look at the past discussions when the extension
control file format was decided.

We might want to have a system where an extension can declare that it
"provides" capabilites, and then have another extension "require" those
capabilities. That would be a neater solution to the case that there are
multiple extensions that all provide the same capability.

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com


From: Yeb Havinga <yebhavinga(at)gmail(dot)com>
To: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Satisfy extension dependency by one of multiple extensions
Date: 2011-09-23 13:30:55
Message-ID: 4E7C8A0F.3030007@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On 2011-09-23 14:19, Heikki Linnakangas wrote:
> On 23.09.2011 14:56, Yeb Havinga wrote:
>> I have a use case where an extension dependency can be satisfied by one
>> of five other extensions. Currently I'm unable to express that in the
>> extension control file, since the elements from 'requires' are currently
>> searched on exact name match. The attached patch changes this behaviour
>> for list elements that end with a *, into prefix matching, so that e.g.
>> table* matches tablefunc.
>
> That's going to quickly extend into even more complex rules, like "foo
> OR bar", "(foo OR bar) AND (foobar)" etc. IIRC the extension control
> file format was modeled after some other package management system
> (.deb ?). You might want to look at the past discussions when the
> extension control file format was decided.

Ech.. 2364 hits on 'extension' in my mailbox. However I found a thread
'extension dependency checking' that also talks about version numbers
and the 'provides' capability you mention below.
>
> We might want to have a system where an extension can declare that it
> "provides" capabilites, and then have another extension "require"
> those capabilities. That would be a neater solution to the case that
> there are multiple extensions that all provide the same capability.
>

Yes that would be neater. I can't think of anything else however than to
add 'extprovides' to pg_extension, fill it with an explicit 'provides'
from the control file when present, or extname otherwise, and use that
column to check the 'requires' list on extension creation time.

--
Yeb Havinga
http://www.mgrid.net/
Mastering Medical Data


From: Dimitri Fontaine <dimitri(at)2ndQuadrant(dot)fr>
To: Yeb Havinga <yebhavinga(at)gmail(dot)com>
Cc: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Satisfy extension dependency by one of multiple extensions
Date: 2011-09-24 19:15:25
Message-ID: m2pqipvjjm.fsf@2ndQuadrant.fr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Yeb Havinga <yebhavinga(at)gmail(dot)com> writes:
>> We might want to have a system where an extension can declare that it
>> "provides" capabilites, and then have another extension "require" those
>> capabilities. That would be a neater solution to the case that there are
>> multiple extensions that all provide the same capability.

+1

> Yes that would be neater. I can't think of anything else however than to add
> extprovides' to pg_extension, fill it with an explicit 'provides' from the
> control file when present, or extname otherwise, and use that column to
> check the 'requires' list on extension creation time.

That sounds like a good rough plan.

Then we need to think about maintenance down the road, some releases
from now we will need more features around the same topic. Debian
control file also has Conflicts and Replaces entries, so that using the
three of them you can handle a smooth upgrade even when the extension
changed its name or has been superseded by a new one which often has the
advantage of being maintained.

Regards,
--
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support


From: Joshua Berkus <josh(at)agliodbs(dot)com>
To: Dimitri Fontaine <dimitri(at)2ndQuadrant(dot)fr>
Cc: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>, Yeb Havinga <yebhavinga(at)gmail(dot)com>
Subject: Re: Satisfy extension dependency by one of multiple extensions
Date: 2011-09-24 21:01:00
Message-ID: 1059002111.45820.1316898060450.JavaMail.root@mail-1.01.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

All,

> >> We might want to have a system where an extension can declare that
> >> it
> >> "provides" capabilites, and then have another extension "require"
> >> those
> >> capabilities. That would be a neater solution to the case that
> >> there are
> >> multiple extensions that all provide the same capability.
>
> +1

As a warning, this is the sort of thing which DEB and RPM have spent years implementing ... and still have problems with. Not that we shouldn't do it, but we should be prepared for the amount of troubleshooting involved, which will be considerable.

--Josh Berkus