* xmlReversePattern: * @comp: the compiled match expression * * reverse all the stack of expressions * * returns 0 in case of success and -1 in case of error. */
| 405 | * returns 0 in case of success and -1 in case of error. |
| 406 | */ |
| 407 | static int |
| 408 | xmlReversePattern(xmlPatternPtr comp) { |
| 409 | int i, j; |
| 410 | |
| 411 | /* |
| 412 | * remove the leading // for //a or .//a |
| 413 | */ |
| 414 | if ((comp->nbStep > 0) && (comp->steps[0].op == XML_OP_ANCESTOR)) { |
| 415 | for (i = 0, j = 1;j < comp->nbStep;i++,j++) { |
| 416 | comp->steps[i].value = comp->steps[j].value; |
| 417 | comp->steps[i].value2 = comp->steps[j].value2; |
| 418 | comp->steps[i].op = comp->steps[j].op; |
| 419 | } |
| 420 | comp->nbStep--; |
| 421 | } |
| 422 | if (comp->nbStep >= comp->maxStep) { |
| 423 | xmlStepOpPtr temp; |
| 424 | temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * |
| 425 | sizeof(xmlStepOp)); |
| 426 | if (temp == NULL) { |
| 427 | ERROR(ctxt, NULL, NULL, |
| 428 | "xmlReversePattern: realloc failed\n"); |
| 429 | return (-1); |
| 430 | } |
| 431 | comp->steps = temp; |
| 432 | comp->maxStep *= 2; |
| 433 | } |
| 434 | i = 0; |
| 435 | j = comp->nbStep - 1; |
| 436 | while (j > i) { |
| 437 | register const xmlChar *tmp; |
| 438 | register xmlPatOp op; |
| 439 | tmp = comp->steps[i].value; |
| 440 | comp->steps[i].value = comp->steps[j].value; |
| 441 | comp->steps[j].value = tmp; |
| 442 | tmp = comp->steps[i].value2; |
| 443 | comp->steps[i].value2 = comp->steps[j].value2; |
| 444 | comp->steps[j].value2 = tmp; |
| 445 | op = comp->steps[i].op; |
| 446 | comp->steps[i].op = comp->steps[j].op; |
| 447 | comp->steps[j].op = op; |
| 448 | j--; |
| 449 | i++; |
| 450 | } |
| 451 | comp->steps[comp->nbStep].value = NULL; |
| 452 | comp->steps[comp->nbStep].value2 = NULL; |
| 453 | comp->steps[comp->nbStep++].op = XML_OP_END; |
| 454 | return(0); |
| 455 | } |
| 456 | |
| 457 | /************************************************************************ |
| 458 | * * |
no outgoing calls
no test coverage detected