X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fcql.h;h=817e04b3e324bf669f587d6199acefabd073fb6c;hp=83b6217e445c94ce8a27dbfe45409263531f157f;hb=2cf1b669768e41118f6937dd0afab37c8ed586a8;hpb=4d827d4162155ab4514acb05dd2a1a38c29f4bcf diff --git a/include/yaz/cql.h b/include/yaz/cql.h index 83b6217..817e04b 100644 --- a/include/yaz/cql.h +++ b/include/yaz/cql.h @@ -243,6 +243,23 @@ void cql_to_xml_stdio(struct cql_node *cn, FILE *f); YAZ_EXPORT int cql_to_xml_buf(struct cql_node *cn, char *out, int max); +/** \brief converts CQL tree to CCL and writes to user-defined stream + \param cn CQL node (tree) + \param pr print function + \param client_data data to be passed to pr function + */ +YAZ_EXPORT +int cql_to_ccl(struct cql_node *cn, + void (*pr)(const char *buf, void *client_data), + void *client_data); + +/** \brief converts CQL tree to CCL and writes to file + \param cn CQL node (tree) + \param f file handle + */ +YAZ_EXPORT +void cql_to_ccl_stdio(struct cql_node *cn, FILE *f); + /** \brief stream handle for file (used by cql_to_xml_stdio) */ YAZ_EXPORT void cql_fputs(const char *buf, void *client_data); @@ -417,6 +434,16 @@ int cql_sortby_to_sortkeys(struct cql_node *cn, void (*pr)(const char *buf, void *client_data), void *client_data); +/** \brief converts CQL sortby to sortkeys .. + \param cn CQL tree + \param out result buffer + \param max size of buffer (allocated) + \retval 0 OK + \retval -1 ERROR +*/ +YAZ_EXPORT +int cql_sortby_to_sortkeys_buf(struct cql_node *cn, char *out, int max); + YAZ_END_CDECL #endif