X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Ftermlists.c;h=9741eb253103fb31373ce8c4f6a17dd4f3841dc4;hb=3ae3cb006afc68eefad30f1a3f0674e58a74fe5f;hp=c0a7c132df13c7c2f03f68b817ab7e5361a34456;hpb=6ff7cb53029747ad6ac60fde903630ea063b5218;p=pazpar2-moved-to-github.git diff --git a/src/termlists.c b/src/termlists.c index c0a7c13..9741eb2 100644 --- a/src/termlists.c +++ b/src/termlists.c @@ -107,15 +107,16 @@ static void update_highscore(struct termlist *tl, struct termlist_score *t) } } -void termlist_insert(struct termlist *tl, const char *term, int freq) +void termlist_insert(struct termlist *tl, const char *display_term, + const char *norm_term, int freq) { unsigned int bucket; struct termlist_bucket **p; char buf[256], *cp; - if (strlen(term) > 255) + if (strlen(norm_term) > 255) return; - strcpy(buf, term); + strcpy(buf, norm_term); /* chop right */ for (cp = buf + strlen(buf); cp != buf && strchr(",. -", cp[-1]); cp--) cp[-1] = '\0'; @@ -123,7 +124,7 @@ void termlist_insert(struct termlist *tl, const char *term, int freq) bucket = jenkins_hash((unsigned char *)buf) % tl->hash_size; for (p = &tl->hashtable[bucket]; *p; p = &(*p)->next) { - if (!strcmp(buf, (*p)->term.term)) + if (!strcmp(buf, (*p)->term.norm_term)) { (*p)->term.frequency += freq; update_highscore(tl, &((*p)->term)); @@ -134,7 +135,9 @@ void termlist_insert(struct termlist *tl, const char *term, int freq) { struct termlist_bucket *new = nmem_malloc(tl->nmem, sizeof(struct termlist_bucket)); - new->term.term = nmem_strdup(tl->nmem, buf); + new->term.norm_term = nmem_strdup(tl->nmem, buf); + new->term.display_term = *display_term ? + nmem_strdup(tl->nmem, display_term) : new->term.norm_term; new->term.frequency = freq; new->next = 0; *p = new;