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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
/* Copyright (c) 2007 Paul Rosenfeld
James Antill -- See LICENSE file for terms. */
#ifndef USTR_SUB_H
#error " Include ustr-sub.h before this file."
#endif
USTR_CONF_i_PROTO int ustrp__sub_undef(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, size_t len)
{
size_t clen;
USTR_ASSERT(ps1 && ustrp__assert_valid(!!p, *ps1));
if (!len)
return (USTR_TRUE);
clen = ustrp__assert_valid_subustr(!!p, *ps1, pos, 1);
if (!clen)
return (USTR_FALSE);
--pos;
if ((clen - pos) < len)
{ /* need to expand s1, it's basically like ustr_set() with an offset */
if (!ustrp__add_undef(p, ps1, len - (clen - pos)))
return (USTR_FALSE);
}
else if (!ustrp__sc_ensure_owner(p, ps1))
return (USTR_FALSE);
return (USTR_TRUE);
}
USTR_CONF_I_PROTO
int ustr_sub_undef(struct Ustr **ps1, size_t pos, size_t len)
{ return (ustrp__sub_undef(0, ps1, pos, len)); }
USTR_CONF_I_PROTO int ustrp_sub_undef(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub_undef(p, &tmp, pos, len);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO int ustrp__sub_buf(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, const void *buf, size_t len)
{
if (!ustrp__sub_undef(p, ps1, pos, len))
return (USTR_FALSE);
--pos;
ustr__memcpy(*ps1, pos, buf, len);
return (USTR_TRUE);
}
USTR_CONF_I_PROTO
int ustr_sub_buf(struct Ustr **ps1, size_t pos, const void *buf, size_t len)
{ return (ustrp__sub_buf(0, ps1, pos, buf, len)); }
USTR_CONF_I_PROTO int ustrp_sub_buf(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, const void *buf, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub_buf(p, &tmp, pos, buf, len);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO int ustrp__sub(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, const struct Ustr *s2)
{
if (*ps1 == s2)
return (ustrp__ins_subustr(p, ps1, pos - 1, s2, 1, pos - 1));
return (ustrp__sub_buf(p, ps1, pos, ustr_cstr(s2), ustr_len(s2)));
}
USTR_CONF_I_PROTO
int ustr_sub(struct Ustr **ps1, size_t pos, const struct Ustr *s2)
{ return (ustrp__sub(0, ps1, pos, s2)); }
USTR_CONF_I_PROTO int ustrp_sub(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, const struct Ustrp *s2)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub(p, &tmp, pos, &s2->s);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sub_subustr(struct Ustr_pool *p, struct Ustr **ps1, size_t pos1,
const struct Ustr *s2, size_t pos2, size_t len2)
{
size_t clen2 = 0;
if (!len2)
return (USTR_TRUE);
if (!(clen2 = ustrp__assert_valid_subustr(!!p, s2, pos2, len2)))
return (USTR_FALSE);
if (clen2 == len2)
return (ustrp__sub(p, ps1, pos1, s2));
if ((*ps1 == s2) && ustr_owner(*ps1))
{
struct Ustr *tmp = USTR_NULL;
int ret = USTR_FALSE;
if (pos1 == pos2) /* delete from end */
return (ustrp__del(p, ps1, ((ustr_len(*ps1) - pos1) + 1) - len2));
/* This is somewhat difficult to do "well". So punt. */
if (!(tmp = ustrp__dup_subustr(p, s2, pos2, len2)))
return (USTR_FALSE);
ret = ustrp__sub(p, ps1, pos1, tmp);
ustrp__free(p, tmp);
return (ret);
}
--pos2;
return (ustrp__sub_buf(p, ps1, pos1, ustr_cstr(s2) + pos2, len2));
}
USTR_CONF_I_PROTO
int ustr_sub_subustr(struct Ustr **ps1, size_t pos1,
const struct Ustr *s2, size_t pos2, size_t len2)
{ return (ustrp__sub_subustr(0, ps1, pos1, s2, pos2, len2)); }
USTR_CONF_I_PROTO
int ustrp_sub_subustrp(struct Ustr_pool *p, struct Ustrp **ps1, size_t pos1,
const struct Ustrp *s2, size_t pos2, size_t len2)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub_subustr(p, &tmp, pos1, &s2->s, pos2, len2);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO int ustrp__sub_rep_chr(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, char chr, size_t len)
{
if (!ustrp__sub_undef(p, ps1, pos, len))
return (USTR_FALSE);
--pos;
ustr__memset(*ps1, pos, chr, len);
return (USTR_TRUE);
}
USTR_CONF_I_PROTO
int ustr_sub_rep_chr(struct Ustr **ps1, size_t pos, char chr, size_t len)
{ return (ustrp__sub_rep_chr(0, ps1, pos, chr, len)); }
USTR_CONF_I_PROTO int ustrp_sub_rep_chr(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, char chr, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub_rep_chr(p, &tmp, pos, chr, len);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO int ustrp__sc_sub_undef(struct Ustr_pool *p,struct Ustr **ps1,
size_t pos, size_t olen, size_t len)
{
USTR_ASSERT(ps1);
if (!olen)
return (ustrp__ins_undef(p, ps1, pos - 1, len));
if (!ustrp__assert_valid_subustr(!!p, *ps1, pos, olen))
return (USTR_FALSE);
if (len == olen)
return (ustrp__sc_ensure_owner(p, ps1));
/* work at end, so we don't have to memmove as much */
if (len < olen)
return (ustrp__del_subustr(p, ps1, pos + len, olen - len));
return (ustrp__ins_undef( p, ps1, pos + olen - 1, len - olen));
}
USTR_CONF_I_PROTO
int ustr_sc_sub_undef(struct Ustr **ps1, size_t pos, size_t olen, size_t len)
{ return (ustrp__sc_sub_undef(0, ps1, pos, olen, len)); }
USTR_CONF_I_PROTO int ustrp_sc_sub_undef(struct Ustr_pool *p,struct Ustrp **ps1,
size_t pos, size_t olen, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub_undef(p, &tmp, pos, olen, len);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sc_sub_buf(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, size_t olen, const void *buf, size_t len)
{
if (!ustrp__sc_sub_undef(p, ps1, pos, olen, len))
return (USTR_FALSE);
return (ustrp__sub_buf(p, ps1, pos, buf, len));
}
USTR_CONF_I_PROTO
int ustr_sc_sub_buf(struct Ustr **ps1,
size_t pos, size_t olen, const void *buf, size_t len)
{ return (ustrp__sc_sub_buf(0, ps1, pos, olen, buf, len)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub_buf(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, size_t olen, const void *buf, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub_buf(p, &tmp, pos, olen, buf, len);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sc_sub(struct Ustr_pool *p, struct Ustr **ps1,size_t pos,size_t olen,
const struct Ustr *s2)
{
if (!olen)
return (ustrp__ins(p, ps1, pos - 1, s2));
if ((*ps1 == s2) && ustr_owner(*ps1))
{
size_t clen = ustrp__assert_valid_subustr(!!p, *ps1, pos, olen);
size_t alen = (clen - olen);
size_t epos = ( pos + olen);
size_t elen = (clen - epos) + 1;
char *ptr;
if (!clen)
return (USTR_FALSE);
/*
abcd/1.2 => abcdcd
abcd/2.2 => aabcdd
abcd/3.2 => ababcd
*/
if (!ustrp__add_undef(p, ps1, alen))
return (USTR_FALSE);
ptr = ustr_wstr(*ps1);
if (pos != 1)
{
size_t bpos = pos - 1;
size_t blen = bpos;
/* move current data, to make room */
memmove(ptr + bpos, ptr, clen);
memcpy(ptr, ptr + bpos, blen);
epos += blen;
clen += blen;
}
ustr__memcpy(*ps1, clen, ptr + epos - 1, elen);
USTR_ASSERT(ps1 && ustrp__assert_valid(!!p, *ps1));
return (USTR_TRUE);
}
return (ustrp__sc_sub_buf(p, ps1, pos, olen, ustr_cstr(s2), ustr_len(s2)));
}
USTR_CONF_I_PROTO
int ustr_sc_sub(struct Ustr **ps1,size_t pos,size_t olen,
const struct Ustr *s2)
{ return (ustrp__sc_sub(0, ps1, pos, olen, s2)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub(struct Ustr_pool *p, struct Ustrp **ps1,size_t pos,size_t olen,
const struct Ustrp *s2)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub(p, &tmp, pos, olen, &s2->s);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sc_sub_subustr(struct Ustr_pool *p,
struct Ustr **ps1, size_t pos1, size_t len1,
const struct Ustr *s2, size_t pos2, size_t len2)
{
size_t clen2 = 0;
if (!len2)
return (ustrp__del_subustr(p, ps1, pos1, len1));
if (!(clen2 = ustrp__assert_valid_subustr(!!p, s2, pos2, len2)))
return (USTR_FALSE);
if (clen2 == len2)
return (ustrp__sc_sub(p, ps1, pos1, len1, s2));
if ((*ps1 == s2) && ustr_owner(*ps1))
{
struct Ustr *tmp = USTR_NULL;
int ret = USTR_FALSE;
/* This is somewhat difficult to do "well". So punt. */
if (!(tmp = ustrp__dup_subustr(p, s2, pos2, len2)))
return (USTR_FALSE);
ret = ustrp__sc_sub(p, ps1, pos1, len1, tmp);
ustrp__free(p, tmp);
return (ret);
}
--pos2;
return (ustrp__sc_sub_buf(p, ps1, pos1, len1, ustr_cstr(s2) + pos2, len2));
}
USTR_CONF_I_PROTO
int ustr_sc_sub_subustr(struct Ustr **ps1, size_t pos1, size_t len1,
const struct Ustr *s2, size_t pos2, size_t len2)
{ return (ustrp__sc_sub_subustr(0, ps1, pos1, len1, s2, pos2, len2)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub_subustrp(struct Ustr_pool *p,
struct Ustrp **ps1, size_t pos1, size_t len1,
const struct Ustrp *s2, size_t pos2, size_t len2)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub_subustr(p, &tmp, pos1, len1, &s2->s, pos2, len2);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sc_sub_rep_chr(struct Ustr_pool *p, struct Ustr **ps1,
size_t pos, size_t olen, char chr, size_t len)
{
if (!ustrp__sc_sub_undef(p, ps1, pos, olen, len))
return (USTR_FALSE);
return (ustrp__sub_rep_chr(p, ps1, pos, chr, len));
}
USTR_CONF_I_PROTO int ustr_sc_sub_rep_chr(struct Ustr **ps1, size_t pos,
size_t olen, char chr, size_t len)
{ return (ustrp__sc_sub_rep_chr(0, ps1, pos, olen, chr, len)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub_rep_chr(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, size_t olen, char chr, size_t len)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub_rep_chr(p, &tmp, pos, olen, chr, len);
*ps1 = USTRP(tmp);
return (ret);
}
#ifdef USTR_FMT_H
# if USTR_CONF_HAVE_VA_COPY
USTR_CONF_i_PROTO
int ustrp__sub_vfmt_lim(struct Ustr_pool *p, struct Ustr **ps1, size_t pos,
size_t lim, const char *fmt, va_list ap)
{ /* NOTE: Copy and pasted so we can use ustrp_set_undef() */
va_list nap;
int rc = -1;
char buf[USTR__SNPRINTF_LOCAL];
char *ptr;
char save_end;
USTR__VA_COPY(nap, ap);
rc = USTR_CONF_VSNPRINTF_BEG(buf, sizeof(buf), fmt, nap);
va_end(nap);
if ((rc == -1) && ((rc = ustr__retard_vfmt_ret(fmt, ap)) == -1))
return (USTR_FALSE);
if (lim && ((size_t)rc > lim))
rc = lim;
if ((size_t)rc < sizeof(buf)) /* everything is done */
return (ustrp__sub_buf(p, ps1, pos, buf, rc));
if (!ustrp__sub_undef(p, ps1, pos--, rc))
return (USTR_FALSE);
ptr = ustr_wstr(*ps1);
save_end = ptr[pos + rc]; /* might be NIL, might be a char */
USTR_CONF_VSNPRINTF_END(ptr + pos, rc + 1, fmt, ap);
ptr[pos + rc] = save_end;
USTR_ASSERT(ustrp__assert_valid(!!p, *ps1));
return (USTR_TRUE);
}
USTR_CONF_I_PROTO int ustr_sub_vfmt_lim(struct Ustr **ps1,size_t pos,size_t lim,
const char *fmt, va_list ap)
{ return (ustrp__sub_vfmt_lim(0, ps1, pos, lim, fmt, ap)); }
USTR_CONF_I_PROTO
int ustrp_sub_vfmt_lim(struct Ustr_pool *p,struct Ustrp **ps1, size_t pos,
size_t lim, const char *fmt, va_list ap)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sub_vfmt_lim(p, &tmp, pos, lim, fmt, ap);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_I_PROTO int ustr_sub_fmt_lim(struct Ustr **ps1, size_t pos,
size_t lim, const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustr_sub_vfmt_lim(ps1, pos, lim, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO
int ustrp_sub_fmt_lim(struct Ustr_pool *p, struct Ustrp **ps1, size_t pos,
size_t lim, const char*fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustrp_sub_vfmt_lim(p, ps1, pos, lim, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO int ustr_sub_vfmt(struct Ustr **ps1, size_t pos,
const char *fmt, va_list ap)
{ return (ustr_sub_vfmt_lim(ps1, pos, 0, fmt, ap)); }
USTR_CONF_I_PROTO int ustrp_sub_vfmt(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, const char *fmt, va_list ap)
{ return (ustrp_sub_vfmt_lim(p, ps1, pos, 0, fmt, ap)); }
USTR_CONF_I_PROTO
int ustr_sub_fmt(struct Ustr **ps1, size_t pos, const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustr_sub_vfmt(ps1, pos, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO int ustrp_sub_fmt(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustrp_sub_vfmt(p, ps1, pos, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_i_PROTO
int ustrp__sc_sub_vfmt_lim(struct Ustr_pool *p, struct Ustr **ps1, size_t pos,
size_t len, size_t lim, const char *fmt, va_list ap)
{ /* NOTE: Copy and pasted so we can use ustrp_set_undef() */
va_list nap;
int rc = -1;
char buf[USTR__SNPRINTF_LOCAL];
char *ptr;
char save_end;
USTR__VA_COPY(nap, ap);
rc = USTR_CONF_VSNPRINTF_BEG(buf, sizeof(buf), fmt, nap);
va_end(nap);
if ((rc == -1) && ((rc = ustr__retard_vfmt_ret(fmt, ap)) == -1))
return (USTR_FALSE);
if (lim && ((size_t)rc > lim))
rc = lim;
if ((size_t)rc < sizeof(buf)) /* everything is done */
return (ustrp__sc_sub_buf(p, ps1, pos, len, buf, rc));
if (!ustrp__sc_sub_undef(p, ps1, pos--, len, rc))
return (USTR_FALSE);
ptr = ustr_wstr(*ps1);
save_end = ptr[pos + rc]; /* might be NIL if at end, might be a char */
USTR_CONF_VSNPRINTF_END(ptr + pos, rc + 1, fmt, ap);
ptr[pos + rc] = save_end;
USTR_ASSERT(ustrp__assert_valid(!!p, *ps1));
return (USTR_TRUE);
}
USTR_CONF_I_PROTO
int ustr_sc_sub_vfmt_lim(struct Ustr **ps1,size_t pos, size_t len,
size_t lim, const char *fmt, va_list ap)
{ return (ustrp__sc_sub_vfmt_lim(0, ps1, pos, len, lim, fmt, ap)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub_vfmt_lim(struct Ustr_pool *p,struct Ustrp **ps1, size_t pos,
size_t len, size_t lim, const char *fmt, va_list ap)
{
struct Ustr *tmp = &(*ps1)->s;
int ret = ustrp__sc_sub_vfmt_lim(p, &tmp, pos, len, lim, fmt, ap);
*ps1 = USTRP(tmp);
return (ret);
}
USTR_CONF_I_PROTO
int ustr_sc_sub_fmt_lim(struct Ustr **ps1, size_t pos, size_t len,
size_t lim, const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustr_sc_sub_vfmt_lim(ps1, pos, len, lim, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO
int ustrp_sc_sub_fmt_lim(struct Ustr_pool *p, struct Ustrp **ps1, size_t pos,
size_t len, size_t lim, const char*fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustrp_sc_sub_vfmt_lim(p, ps1, pos, len, lim, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO int ustr_sc_sub_vfmt(struct Ustr **ps1, size_t pos,
size_t len, const char *fmt, va_list ap)
{ return (ustr_sc_sub_vfmt_lim(ps1, pos, len, 0, fmt, ap)); }
USTR_CONF_I_PROTO
int ustrp_sc_sub_vfmt(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, size_t len, const char *fmt, va_list ap)
{ return (ustrp_sc_sub_vfmt_lim(p, ps1, pos, len, 0, fmt, ap)); }
USTR_CONF_I_PROTO int ustr_sc_sub_fmt(struct Ustr **ps1, size_t pos, size_t len,
const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustr_sc_sub_vfmt(ps1, pos, len, fmt, ap);
va_end(ap);
return (ret);
}
USTR_CONF_I_PROTO
int ustrp_sc_sub_fmt(struct Ustr_pool *p, struct Ustrp **ps1,
size_t pos, size_t len, const char *fmt, ...)
{
va_list ap;
int ret = USTR_FALSE;
va_start(ap, fmt);
ret = ustrp_sc_sub_vfmt(p, ps1, pos, len, fmt, ap);
va_end(ap);
return (ret);
}
# endif
#endif
|