1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
|
/*
Copyright (C) 2012-2018 Brazil
Copyright (C) 2018-2024 Sutou Kouhei <kou@clear-code.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "grn_token.h"
#include "grn_token_metadata.h"
static inline grn_rc
grn_token_init_internal(grn_ctx *ctx, grn_token *token, bool deep)
{
GRN_API_ENTER;
GRN_TEXT_INIT(&(token->data), deep ? 0 : GRN_OBJ_DO_SHALLOW_COPY);
token->status = GRN_TOKEN_CONTINUE;
token->source_offset = 0;
token->source_length = 0;
token->source_first_character_length = 0;
token->have_overlap = false;
grn_token_metadata_init(ctx, &(token->metadata));
token->force_prefix_search = false;
token->position = 0;
token->weight = 0;
GRN_API_RETURN(ctx->rc);
}
grn_rc
grn_token_init(grn_ctx *ctx, grn_token *token)
{
return grn_token_init_internal(ctx, token, false);
}
grn_rc
grn_token_init_deep(grn_ctx *ctx, grn_token *token)
{
return grn_token_init_internal(ctx, token, true);
}
grn_rc
grn_token_fin(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
grn_token_metadata_fin(ctx, &(token->metadata));
GRN_OBJ_FIN(ctx, &(token->data));
GRN_API_RETURN(ctx->rc);
}
grn_obj *
grn_token_get_data(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][data][get] token must not be NULL");
GRN_API_RETURN(NULL);
}
GRN_API_RETURN(&(token->data));
}
const char *
grn_token_get_data_raw(grn_ctx *ctx, grn_token *token, size_t *length)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][data][get][raw] token must not be NULL");
if (length) {
*length = 0;
}
GRN_API_RETURN(NULL);
}
if (length) {
*length = GRN_TEXT_LEN(&(token->data));
}
GRN_API_RETURN(GRN_TEXT_VALUE(&(token->data)));
}
grn_rc
grn_token_set_data(grn_ctx *ctx,
grn_token *token,
const char *str_ptr,
int str_length)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][data][set] token must not be NULL");
goto exit;
}
if (str_length == -1) {
str_length = (int)strlen(str_ptr);
}
GRN_TEXT_SET(ctx, &(token->data), str_ptr, str_length);
exit:
GRN_API_RETURN(ctx->rc);
}
grn_id
grn_token_get_domain(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
grn_id domain = GRN_ID_NIL;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][data][set] token must not be NULL");
goto exit;
}
domain = token->data.header.domain;
exit:
GRN_API_RETURN(domain);
}
grn_rc
grn_token_set_domain(grn_ctx *ctx, grn_token *token, grn_id domain)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][data][set] token must not be NULL");
goto exit;
}
token->data.header.domain = domain;
exit:
GRN_API_RETURN(ctx->rc);
}
grn_token_status
grn_token_get_status(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][status][get] token must not be NULL");
GRN_API_RETURN(GRN_TOKEN_CONTINUE);
}
GRN_API_RETURN(token->status);
}
grn_rc
grn_token_set_status(grn_ctx *ctx, grn_token *token, grn_token_status status)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][status][set] token must not be NULL");
goto exit;
}
token->status = status;
exit:
GRN_API_RETURN(ctx->rc);
}
grn_rc
grn_token_add_status(grn_ctx *ctx, grn_token *token, grn_token_status status)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][status][add] token must not be NULL");
goto exit;
}
token->status |= status;
exit:
GRN_API_RETURN(ctx->rc);
}
grn_rc
grn_token_remove_status(grn_ctx *ctx, grn_token *token, grn_token_status status)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][status][remove] token must not be NULL");
goto exit;
}
token->status &= ~status;
exit:
GRN_API_RETURN(ctx->rc);
}
uint64_t
grn_token_get_source_offset(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-offset][get] token must not be NULL");
GRN_API_RETURN(0);
}
GRN_API_RETURN(token->source_offset);
}
grn_rc
grn_token_set_source_offset(grn_ctx *ctx, grn_token *token, uint64_t offset)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-offset][set] token must not be NULL");
goto exit;
}
token->source_offset = offset;
exit:
GRN_API_RETURN(ctx->rc);
}
uint32_t
grn_token_get_source_length(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-length][get] token must not be NULL");
GRN_API_RETURN(0);
}
GRN_API_RETURN(token->source_length);
}
grn_rc
grn_token_set_source_length(grn_ctx *ctx, grn_token *token, uint32_t length)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-length][set] token must not be NULL");
goto exit;
}
token->source_length = length;
exit:
GRN_API_RETURN(ctx->rc);
}
uint32_t
grn_token_get_source_first_character_length(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-first-character-length][get] token must not be NULL");
GRN_API_RETURN(0);
}
GRN_API_RETURN(token->source_first_character_length);
}
grn_rc
grn_token_set_source_first_character_length(grn_ctx *ctx,
grn_token *token,
uint32_t length)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][source-first-character-length][set] token must not be NULL");
goto exit;
}
token->source_first_character_length = length;
exit:
GRN_API_RETURN(ctx->rc);
}
bool
grn_token_have_overlap(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][overlap][have] token must not be NULL");
GRN_API_RETURN(false);
}
GRN_API_RETURN(token->have_overlap);
}
grn_rc
grn_token_set_overlap(grn_ctx *ctx, grn_token *token, bool have_overlap)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][overlap][set] token must not be NULL");
goto exit;
}
token->have_overlap = have_overlap;
exit:
GRN_API_RETURN(ctx->rc);
}
grn_obj *
grn_token_get_metadata(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][metadata][get] token must not be NULL");
GRN_API_RETURN(NULL);
}
GRN_API_RETURN(&(token->metadata));
}
bool
grn_token_get_force_prefix_search(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][force-prefix-search][get] token must not be NULL");
GRN_API_RETURN(false);
}
GRN_API_RETURN(token->force_prefix_search);
}
grn_rc
grn_token_set_force_prefix_search(grn_ctx *ctx, grn_token *token, bool force)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT,
"[token][force-prefix-search][set] token must not be NULL");
GRN_API_RETURN(ctx->rc);
}
token->force_prefix_search = force;
GRN_API_RETURN(ctx->rc);
}
uint32_t
grn_token_get_position(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][position][get] token must not be NULL");
GRN_API_RETURN(0);
}
GRN_API_RETURN(token->position);
}
grn_rc
grn_token_set_position(grn_ctx *ctx, grn_token *token, uint32_t position)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][position][set] token must not be NULL");
GRN_API_RETURN(ctx->rc);
}
token->position = position;
GRN_API_RETURN(ctx->rc);
}
float
grn_token_get_weight(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][weight][get] token must not be NULL");
GRN_API_RETURN(0.0);
}
GRN_API_RETURN(token->weight);
}
grn_rc
grn_token_set_weight(grn_ctx *ctx, grn_token *token, float weight)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][float][set] token must not be NULL");
GRN_API_RETURN(ctx->rc);
}
token->weight = weight;
GRN_API_RETURN(ctx->rc);
}
grn_rc
grn_token_reset(grn_ctx *ctx, grn_token *token)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][reset] token must not be NULL");
goto exit;
}
GRN_BULK_REWIND(&(token->data));
token->status = GRN_TOKEN_CONTINUE;
token->source_offset = 0;
token->source_length = 0;
token->source_first_character_length = 0;
token->have_overlap = false;
grn_token_metadata_reset(ctx, &(token->metadata));
token->force_prefix_search = false;
token->position = 0;
token->weight = 0.0;
exit:
GRN_API_RETURN(ctx->rc);
}
grn_rc
grn_token_copy(grn_ctx *ctx, grn_token *token, grn_token *source)
{
GRN_API_ENTER;
if (!token) {
ERR(GRN_INVALID_ARGUMENT, "[token][copy] token must not be NULL");
goto exit;
}
GRN_TEXT_SET(ctx,
&(token->data),
GRN_TEXT_VALUE(&(source->data)),
GRN_TEXT_LEN(&(source->data)));
token->status = source->status;
token->source_offset = source->source_offset;
token->source_length = source->source_length;
token->source_first_character_length = source->source_first_character_length;
token->have_overlap = source->have_overlap;
grn_token_metadata_reset(ctx, &(token->metadata));
grn_token_metadata_copy(ctx, &(token->metadata), &(source->metadata));
token->force_prefix_search = source->force_prefix_search;
token->position = source->position;
token->weight = source->weight;
exit:
GRN_API_RETURN(ctx->rc);
}
|