Blame src/regtrav.c

Packit b89d10
/**********************************************************************
Packit b89d10
  regtrav.c -  Oniguruma (regular expression library)
Packit b89d10
**********************************************************************/
Packit b89d10
/*-
Packit b89d10
 * Copyright (c) 2002-2004  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>
Packit b89d10
 * All rights reserved.
Packit b89d10
 *
Packit b89d10
 * Redistribution and use in source and binary forms, with or without
Packit b89d10
 * modification, are permitted provided that the following conditions
Packit b89d10
 * are met:
Packit b89d10
 * 1. Redistributions of source code must retain the above copyright
Packit b89d10
 *    notice, this list of conditions and the following disclaimer.
Packit b89d10
 * 2. Redistributions in binary form must reproduce the above copyright
Packit b89d10
 *    notice, this list of conditions and the following disclaimer in the
Packit b89d10
 *    documentation and/or other materials provided with the distribution.
Packit b89d10
 *
Packit b89d10
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
Packit b89d10
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit b89d10
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit b89d10
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
Packit b89d10
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit b89d10
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit b89d10
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit b89d10
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit b89d10
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit b89d10
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit b89d10
 * SUCH DAMAGE.
Packit b89d10
 */
Packit b89d10
Packit b89d10
#include "regint.h"
Packit b89d10
Packit b89d10
#ifdef USE_CAPTURE_HISTORY
Packit b89d10
Packit b89d10
static int
Packit b89d10
capture_tree_traverse(OnigCaptureTreeNode* node, int at,
Packit b89d10
                      int(*callback_func)(int,int,int,int,int,void*),
Packit b89d10
                      int level, void* arg)
Packit b89d10
{
Packit b89d10
  int r, i;
Packit b89d10
Packit b89d10
  if (node == (OnigCaptureTreeNode* )0)
Packit b89d10
    return 0;
Packit b89d10
Packit b89d10
  if ((at & ONIG_TRAVERSE_CALLBACK_AT_FIRST) != 0) {
Packit b89d10
    r = (*callback_func)(node->group, node->beg, node->end,
Packit b89d10
                         level, ONIG_TRAVERSE_CALLBACK_AT_FIRST, arg);
Packit b89d10
    if (r != 0) return r;
Packit b89d10
  }
Packit b89d10
Packit b89d10
  for (i = 0; i < node->num_childs; i++) {
Packit b89d10
    r = capture_tree_traverse(node->childs[i], at,
Packit b89d10
                              callback_func, level + 1, arg);
Packit b89d10
    if (r != 0) return r;
Packit b89d10
  }
Packit b89d10
Packit b89d10
  if ((at & ONIG_TRAVERSE_CALLBACK_AT_LAST) != 0) {
Packit b89d10
    r = (*callback_func)(node->group, node->beg, node->end,
Packit b89d10
                         level, ONIG_TRAVERSE_CALLBACK_AT_LAST, arg);
Packit b89d10
    if (r != 0) return r;
Packit b89d10
  }
Packit b89d10
Packit b89d10
  return 0;
Packit b89d10
}
Packit b89d10
#endif /* USE_CAPTURE_HISTORY */
Packit b89d10
Packit b89d10
extern int
Packit b89d10
onig_capture_tree_traverse(OnigRegion* region, int at,
Packit b89d10
                  int(*callback_func)(int,int,int,int,int,void*), void* arg)
Packit b89d10
{
Packit b89d10
#ifdef USE_CAPTURE_HISTORY
Packit b89d10
  return capture_tree_traverse(region->history_root, at,
Packit b89d10
                               callback_func, 0, arg);
Packit b89d10
#else
Packit b89d10
  return ONIG_NO_SUPPORT_CONFIG;
Packit b89d10
#endif
Packit b89d10
}