SYNOPSIS

    use CQL::Parser;
    my $parser = CQL::Parser->new();
    my $root = $parser->parse( $cql );

DESCRIPTION

CQL::Parser provides a mechanism to parse Common Query Language (\s-1CQL\s0) statements. The best description of \s-1CQL\s0 comes from the \s-1CQL\s0 homepage at the Library of Congress <http://www.loc.gov/z3950/agency/zing/cql/>

\s-1CQL\s0 is a formal language for representing queries to information retrieval systems such as web indexes, bibliographic catalogs and museum collection information. The \s-1CQL\s0 design objective is that queries be human readable and human writable, and that the language be intuitive while maintaining the expressiveness of more complex languages.

A \s-1CQL\s0 statement can be as simple as a single keyword, or as complicated as a set of compoenents indicating search indexes, relations, relational modifiers, proximity clauses and boolean logic. CQL::Parser will parse \s-1CQL\s0 statements and return the root node for a tree of nodes which describes the \s-1CQL\s0 statement. This data structure can then be used by a client application to analyze the statement, and possibly turn it into a query for a local repository.

Each \s-1CQL\s0 component in the tree inherits from CQL::Node and can be one of the following: CQL::AndNode, CQL::NotNode, CQL::OrNode, CQL::ProxNode, CQL::TermNode, CQL::PrefixNode. See the documentation for those modules for their respective APIs.

Here are some examples of \s-1CQL\s0 statements:

  • george

  • dc.creator=george

  • dc.creator=\*(L"George Clinton\*(R"

  • clinton and funk

  • clinton and parliament and funk

  • (clinton or bootsy) and funk

  • dc.creator=\*(L"clinton\*(R" and dc.date=\*(L"1976\*(R"

METHODS

\fInew()\fP

Pass in a \s-1CQL\s0 query and you'll get back the root node for the \s-1CQL\s0 parse tree. If the \s-1CQL\s0 is invalid an exception will be thrown. Pass in a \s-1CQL\s0 query and you'll get back the root node for the \s-1CQL\s0 parse tree. If the \s-1CQL\s0 is invalid, an error code from the \s-1SRU\s0 Diagnostics List will be returned.

XCQL

\s-1CQL\s0 has an \s-1XML\s0 representation which you can generate from a \s-1CQL\s0 parse tree. Just call the toXCQL() method on the root node you get back from a call to parse().

ERRORS AND DIAGNOSTICS

As mentioned above, a \s-1CQL\s0 syntax error will result in an exception being thrown. So if you have any doubts about the \s-1CQL\s0 that you are parsing you should wrap the call to parse() in an eval block, and check $@ afterwards to make sure everything went ok.

eval { my $node = $parser->parse( $cql ); }; if ( $@ ) { print "uhoh, exception $@\n"; }

If you'd like to see blow by blow details while your \s-1CQL\s0 is being parsed set $CQL::DEBUG equal to 1, and you will get details on \s-1STDERR\s0. This is useful if the parse tree is incorrect and you want to locate where things are going wrong. Hopefully this won't happen, but if it does please notify the author.

TODO

  • toYourEngineHere() please feel free to add functionality and send in patches!

THANKYOUS

CQL::Parser is essentially a Perl port of Mike Taylor's cql-java package http://zing.z3950.org/cql/java/. Mike and IndexData were kind enough to allow the author to write this port, and to make it available under the terms of the Artistic License. Thanks Mike!

The CQL::Lexer package relies heavily on Stevan Little's excellent String::Tokenizer. Thanks Stevan!

CQL::Parser was developed as a component of the Ockham project, which is funded by the National Science Foundation. See http://www.ockham.org for more information about Ockham.

AUTHOR

  • Ed Summers - ehs at pobox dot com

  • Brian Cassidy - bricas at cpan dot org

  • Wilbert Hengst - W.Hengst at uva dot nl

COPYRIGHT AND LICENSE

Copyright 2004-2009 by Ed Summers

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.