On Fri, 11 Oct 2002, Carsten Ziegeler wrote:

>
> Stephan Michels wrote:
> >
> > On Fri, 11 Oct 2002, Carsten Ziegeler wrote:
> >
> > > Stephan Michels wrote:
> > > >
> > > > On my intentions to integrate Slide into Cocoon I developed
> > > > the InspectableSource and SourceInspector IFs. And now I'm
> > > > thinking about merging the two concepts, InputModules and
> > > > SourceInspectors.
> > > >
> > > > The SourceInspectors are used to get information about
> > > > a Source, e.g. the height of an image. It should be an replacement
> > > > for the ImageDirectoryGenerator, and MP3DirectoryGenerator etc.
> > > >
> > > > The InspectableSource should create the posibility to store
> > > > properties with the a source, like title, owner etc. It
> > > > should work similar to the WebDAV propfind and proppatch method.
> > > >
> > > Ehm, why do you need an extra marker interface for this? The
> > > Source interface has already these methods:
> > >     String getParameter( String name );
> > >     long getParameterAsLong( String name );
> > >     Iterator getParameterNames();
> >
> > Two points:
> >
> > 1. There is no way to set a property.
> We could extend WriteableSource with a setParameter() method.
>
> > 2. There is also a need for a namespace of properties.
> > namespace="DAV:" name="getcontentlength"
> > namespace="http://jakarta.apache.org/slide/"; name="password"
> > etc.
> >
> You can use namespaces with getParameter() as well, like
> "DAV:getcontentlength" or "http://jakarta.apache.org/slide/password";
> or any other syntax.

Hmmm, could work, then I would prefer the first one.

The following proposal
Source:
  Object getProperty(String name);


WriteableSource:
  void setProperty(String name, Object value);

The value could be XMLizable ;-)

> > > So, you ask a source for any information, e.g. the height or
> > > anything else and if the source supports this information,
> > > you will get it.
> >
> > There is a difference between InspectableSource and
> > SourceInspector. The SourceInspector allows to apply an action
> > to an source, independent of the implementation of the Source
> > object, like retriving information of the inputstream.
> >
> Ok, so this is a general component, right? Shouldn't that go into
> Excalibur then?

It's like the InputModules, with only difference that you
need to specify a Source URI.

Another example is the evaluation of a XPath Expression.

String title = module.getValue("context://myfile.xml",
"/document/title");

And I don't know if it's general enough for excalibur.

Stephan Michels.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to