/[pgestraier]/trunk/pgest.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/pgest.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 48 by dpavlin, Thu Oct 20 16:24:26 2005 UTC revision 56 by dpavlin, Thu May 11 15:52:50 2006 UTC
# Line 25  Line 25 
25  #include "funcapi.h"  #include "funcapi.h"
26  #include "utils/builtins.h"  #include "utils/builtins.h"
27  #include "utils/array.h"  #include "utils/array.h"
28    #include "utils/lsyscache.h"
29  #include "miscadmin.h"  #include "miscadmin.h"
30  #include <estraier.h>  #include <estraier.h>
31  #include <cabin.h>  #include <cabin.h>
# Line 45  Line 46 
46  /* prototype */  /* prototype */
47  char *attr2text(ESTDOC *doc, char *attr);  char *attr2text(ESTDOC *doc, char *attr);
48  char *node_attr2text(ESTRESDOC *rdoc, char *attr);  char *node_attr2text(ESTRESDOC *rdoc, char *attr);
49    void cond_add_attr(ESTCOND *cond, char *attr);
50    
51    
52  /* work in progress */  /* work in progress */
# Line 77  Datum pgest_attr(PG_FUNCTION_ARGS) Line 79  Datum pgest_attr(PG_FUNCTION_ARGS)
79          ESTDB *db;          ESTDB *db;
80          ESTCOND *cond;          ESTCOND *cond;
81          ESTDOC *doc;          ESTDOC *doc;
         const CBLIST *texts;  
82          int ecode, *est_result, resnum;          int ecode, *est_result, resnum;
83          int limit = 0;          int limit = 0;
84          int offset = 0;          int offset = 0;
# Line 208  Datum pgest_attr(PG_FUNCTION_ARGS) Line 209  Datum pgest_attr(PG_FUNCTION_ARGS)
209          /* minimum valid attribute length is 10: @a STREQ a */          /* minimum valid attribute length is 10: @a STREQ a */
210          if (! PG_ARGISNULL(2) && strlen(attr) >= 10) {          if (! PG_ARGISNULL(2) && strlen(attr) >= 10) {
211                  elog(DEBUG1,"attributes: %s", attr);                  elog(DEBUG1,"attributes: %s", attr);
212                  char *curr_attr;                  cond_add_attr(cond, attr);
                 curr_attr = strtok(attr, ATTR_DELIMITER);  
                 while (curr_attr) {  
                         elog(DEBUG1,"est_cond_add_attr(%s)", curr_attr);  
                         est_cond_add_attr(cond, curr_attr);  
                         curr_attr = strtok(NULL, ATTR_DELIMITER);  
                 }  
213          }          }
214    
215          /* set the search phrase to the search condition object */          /* set the search phrase to the search condition object */
# Line 323  char *attr2text(ESTDOC *doc, char *attr) Line 318  char *attr2text(ESTDOC *doc, char *attr)
318    
319          if (! doc) return (Datum) NULL;          if (! doc) return (Datum) NULL;
320    
321          elog(DEBUG1, "doc: %08x, attr: %s", doc, attr);          elog(DEBUG1, "doc: %p, attr: %s", doc, attr);
322    
323          if ( (attrval = est_doc_attr(doc, attr)) && (attrlen = strlen(attrval)) ) {          if ( (attrval = est_doc_attr(doc, attr)) && (attrlen = strlen(attrval)) ) {
324                  val = (char *) palloc(attrlen * sizeof(char));                  val = (char *) palloc(attrlen * sizeof(char));
# Line 359  char *attr2text(ESTDOC *doc, char *attr) Line 354  char *attr2text(ESTDOC *doc, char *attr)
354  #define _arg_node_uri 0  #define _arg_node_uri 0
355  #define _arg_login 1  #define _arg_login 1
356  #define _arg_passwd 2  #define _arg_passwd 2
357  #define _arg_query 3  #define _arg_depth 3
358  #define _arg_attr 4  #define _arg_query 4
359  #define _arg_order 5  #define _arg_attr 5
360  #define _arg_limit 6  #define _arg_order 6
361  #define _arg_offset 7  #define _arg_limit 7
362  #define _arg_attr_array 8  #define _arg_offset 8
363    #define _arg_attr_array 9
364  /* as (foo text, ... ); */  /* as (foo text, ... ); */
365    
366    
# Line 398  Datum pgest_node(PG_FUNCTION_ARGS) Line 394  Datum pgest_node(PG_FUNCTION_ARGS)
394          ESTCOND *cond;          ESTCOND *cond;
395          ESTNODERES *nres;          ESTNODERES *nres;
396          ESTRESDOC *rdoc;          ESTRESDOC *rdoc;
         const CBLIST *texts;  
397          int resnum = 0;          int resnum = 0;
398          int limit = 0;          int limit = 0;
399          int offset = 0;          int offset = 0;
400            int depth = 0;
401    
402          char            *node_url;          char            *node_url;
403          char            *user, *passwd;          char            *user, *passwd;
# Line 479  Datum pgest_node(PG_FUNCTION_ARGS) Line 475  Datum pgest_node(PG_FUNCTION_ARGS)
475          user = _textout(PG_GETARG_TEXT_P(_arg_login));          user = _textout(PG_GETARG_TEXT_P(_arg_login));
476          passwd = _textout(PG_GETARG_TEXT_P(_arg_passwd));          passwd = _textout(PG_GETARG_TEXT_P(_arg_passwd));
477    
478            /* depth of search */
479            if (PG_ARGISNULL(_arg_depth)) {
480                    depth = 0;
481            } else {
482                    depth = PG_GETARG_INT32(_arg_depth);
483            }
484    
485          /* query string */          /* query string */
486          if (PG_ARGISNULL(_arg_query)) {          if (PG_ARGISNULL(_arg_query)) {
487                  query = "";                  query = "";
# Line 526  Datum pgest_node(PG_FUNCTION_ARGS) Line 529  Datum pgest_node(PG_FUNCTION_ARGS)
529          node = est_node_new(node_url);          node = est_node_new(node_url);
530          est_node_set_auth(node, user, passwd);          est_node_set_auth(node, user, passwd);
531    
532          elog(DEBUG1, "pgest_node: query[%s] attr[%s] limit %d offset %d", query, (PG_ARGISNULL(_arg_attr) ? "NULL" : attr), limit, offset);          elog(DEBUG1, "pgest_node: node: %s (d:%d) query[%s] attr[%s] limit %d offset %d", node_url, depth, query, (PG_ARGISNULL(_arg_attr) ? "NULL" : attr), limit, offset);
533                    
534          /* create a search condition object */          /* create a search condition object */
535          if (!(cond = est_cond_new())) {          if (!(cond = est_cond_new())) {
# Line 541  Datum pgest_node(PG_FUNCTION_ARGS) Line 544  Datum pgest_node(PG_FUNCTION_ARGS)
544          /* minimum valid attribute length is 10: @a STREQ a */          /* minimum valid attribute length is 10: @a STREQ a */
545          if (! PG_ARGISNULL(_arg_attr) && strlen(attr) >= 10) {          if (! PG_ARGISNULL(_arg_attr) && strlen(attr) >= 10) {
546                  elog(DEBUG1,"attributes: %s", attr);                  elog(DEBUG1,"attributes: %s", attr);
547                  char *curr_attr;                  cond_add_attr(cond, attr);
                 curr_attr = strtok(attr, ATTR_DELIMITER);  
                 while (curr_attr) {  
                         elog(DEBUG1,"est_cond_add_attr(%s)", curr_attr);  
                         est_cond_add_attr(cond, curr_attr);  
                         curr_attr = strtok(NULL, ATTR_DELIMITER);  
                 }  
548          }          }
549    
550          /* set the search phrase to the search condition object */          /* set the search phrase to the search condition object */
# Line 561  Datum pgest_node(PG_FUNCTION_ARGS) Line 558  Datum pgest_node(PG_FUNCTION_ARGS)
558                  est_cond_set_max(cond, limit + offset);                  est_cond_set_max(cond, limit + offset);
559          }          }
560    
561            if (offset) {
562                    elog(DEBUG1,"est_cond_set_skip(%d)", offset);
563                    est_cond_set_skip(cond, offset);
564            }
565    
566          /* get the result of search */          /* get the result of search */
567          /* FIXME: allow user to specify depath of search */          nres = est_node_search(node, cond, depth);
         nres = est_node_search(node, cond, 0);  
568    
569          if (! nres) {          if (! nres) {
570                  int status = est_node_status(node);                  int status = est_node_status(node);
# Line 589  Datum pgest_node(PG_FUNCTION_ARGS) Line 590  Datum pgest_node(PG_FUNCTION_ARGS)
590                  nrows = resnum - offset;                  nrows = resnum - offset;
591          }          }
592    
   
593          elog(DEBUG1, "pgest_node: found %d hits for %s", resnum, query);          elog(DEBUG1, "pgest_node: found %d hits for %s", resnum, query);
594    
595    
# Line 599  Datum pgest_node(PG_FUNCTION_ARGS) Line 599  Datum pgest_node(PG_FUNCTION_ARGS)
599          {          {
600    
601                  /* get result from estraier */                  /* get result from estraier */
602                  if (! ( rdoc = est_noderes_get_doc(nres, i + offset) )) {                  if (! ( rdoc = est_noderes_get_doc(nres, i) )) {
603                          elog(INFO, "pgest_node: can't find result %d", i + offset);                          elog(INFO, "pgest_node: can't find result %d", i + offset);
604                  } else {                  } else {
605                          elog(DEBUG1, "URI: %s\n Title: %s\n",                          elog(DEBUG1, "URI: %s\n Title: %s\n",
# Line 671  char *node_attr2text(ESTRESDOC *rdoc, ch Line 671  char *node_attr2text(ESTRESDOC *rdoc, ch
671    
672          if (! rdoc) return (Datum) NULL;          if (! rdoc) return (Datum) NULL;
673    
674          elog(DEBUG1, "doc: %08x, attr: %s", rdoc, attr);          elog(DEBUG1, "doc: %p, attr: %s", rdoc, attr);
675    
676          if ( (attrval = est_resdoc_attr(rdoc, attr)) && (attrlen = strlen(attrval)) ) {          if ( (attrval = est_resdoc_attr(rdoc, attr)) && (attrlen = strlen(attrval)) ) {
677                  val = (char *) palloc(attrlen * sizeof(char));                  val = (char *) palloc(attrlen * sizeof(char));
# Line 697  char *node_attr2text(ESTRESDOC *rdoc, ch Line 697  char *node_attr2text(ESTRESDOC *rdoc, ch
697          return val;          return val;
698  }  }
699    
700    /* parse attributes and add them to confition */
701    void cond_add_attr(ESTCOND *cond, char *attr) {
702            char *next;
703            char *curr_attr;
704            while ( strlen(attr) > 0 ) {
705                    printf("len [%s] = %d\n", attr, strlen(attr));
706                    if ((next = strstr(attr, ATTR_DELIMITER)) != NULL) {
707                            curr_attr = palloc( next - attr + 1 );
708                            memcpy(curr_attr, attr, next-attr);
709                            curr_attr[next-attr] = '\0';
710                            next += strlen(ATTR_DELIMITER);
711                    } else {
712                            next = "";
713                            curr_attr = attr;
714                    }
715                    elog(DEBUG1, "est_cond_add_attr(%s)", curr_attr);
716                    est_cond_add_attr(cond, curr_attr);
717                    attr = next;
718            }
719    }

Legend:
Removed from v.48  
changed lines
  Added in v.56

  ViewVC Help
Powered by ViewVC 1.1.26