X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fccltoken.c;h=d7b0d5f37d83eec9952a100493fb7db7cc27ac68;hb=35c80d96871b33904c9206919d2b31ce753d699b;hp=c4f0a601ead32f37d89b6f75e0e64a3d684d59c6;hpb=4feb736e570d15bbc8254d593e0c44ed5066be85;p=yaz-moved-to-github.git diff --git a/src/ccltoken.c b/src/ccltoken.c index c4f0a60..d7b0d5f 100644 --- a/src/ccltoken.c +++ b/src/ccltoken.c @@ -48,7 +48,7 @@ /* CCL - lexical analysis * Europagate, 1995 * - * $Id: ccltoken.c,v 1.6 2005-03-15 16:32:52 adam Exp $ + * $Id: ccltoken.c,v 1.7 2005-04-15 21:47:56 adam Exp $ * * Old Europagate Log: * @@ -137,68 +137,6 @@ static int token_cmp (CCL_parser cclp, const char *kw, struct ccl_token *token) } /* - * ccl_token_simple: tokenize CCL raw tokens - */ -struct ccl_token *ccl_token_simple (const char *command) -{ - const char *cp = command; - struct ccl_token *first = NULL; - struct ccl_token *last = NULL; - - while (1) - { - while (*cp && strchr (" \t\r\n", *cp)) - { - cp++; - continue; - } - if (!first) - { - first = last = (struct ccl_token *)xmalloc (sizeof (*first)); - ccl_assert (first); - last->prev = NULL; - } - else - { - last->next = (struct ccl_token *)xmalloc (sizeof(*first)); - ccl_assert (last->next); - last->next->prev = last; - last = last->next; - } - last->next = NULL; - last->name = cp; - last->len = 1; - switch (*cp++) - { - case '\0': - last->kind = CCL_TOK_EOL; - return first; - case '\"': - last->kind = CCL_TOK_TERM; - last->name = cp; - last->len = 0; - while (*cp && *cp != '\"') - { - cp++; - ++ last->len; - } - if (*cp == '\"') - cp++; - break; - default: - while (*cp && !strchr (" \t\n\r", *cp)) - { - cp++; - ++ last->len; - } - last->kind = CCL_TOK_TERM; - } - } - return first; -} - - -/* * ccl_tokenize: tokenize CCL command string. * return: CCL token list. */ @@ -213,10 +151,7 @@ struct ccl_token *ccl_parser_tokenize (CCL_parser cclp, const char *command) { const unsigned char *cp0 = cp; while (*cp && strchr (" \t\r\n", *cp)) - { cp++; - continue; - } if (!first) { first = last = (struct ccl_token *)xmalloc (sizeof (*first)); @@ -337,6 +272,8 @@ struct ccl_token *ccl_token_add (struct ccl_token *at) n->kind = CCL_TOK_TERM; n->name = 0; n->len = 0; + n->ws_prefix_buf = 0; + n->ws_prefix_len = 0; return n; }