test-treap.con commit describe: Do not use a flex array in struct commit_name (1e1ade1)
   1/*
   2 * test-treap.c: code to exercise the svn importer's treap structure
   3 */
   4
   5#include "cache.h"
   6#include "vcs-svn/obj_pool.h"
   7#include "vcs-svn/trp.h"
   8
   9struct int_node {
  10        uintmax_t n;
  11        struct trp_node children;
  12};
  13
  14obj_pool_gen(node, struct int_node, 3)
  15
  16static int node_cmp(struct int_node *a, struct int_node *b)
  17{
  18        return (a->n > b->n) - (a->n < b->n);
  19}
  20
  21trp_gen(static, treap_, struct int_node, children, node, node_cmp)
  22
  23static void strtonode(struct int_node *item, const char *s)
  24{
  25        char *end;
  26        item->n = strtoumax(s, &end, 10);
  27        if (*s == '\0' || (*end != '\n' && *end != '\0'))
  28                die("invalid integer: %s", s);
  29}
  30
  31int main(int argc, char *argv[])
  32{
  33        struct strbuf sb = STRBUF_INIT;
  34        struct trp_root root = { ~0 };
  35        uint32_t item;
  36
  37        if (argc != 1)
  38                usage("test-treap < ints");
  39
  40        while (strbuf_getline(&sb, stdin, '\n') != EOF) {
  41                item = node_alloc(1);
  42                strtonode(node_pointer(item), sb.buf);
  43                treap_insert(&root, node_pointer(item));
  44        }
  45
  46        item = node_offset(treap_first(&root));
  47        while (~item) {
  48                uint32_t next;
  49                struct int_node *tmp = node_pointer(node_alloc(1));
  50
  51                tmp->n = node_pointer(item)->n;
  52                next = node_offset(treap_next(&root, node_pointer(item)));
  53
  54                treap_remove(&root, node_pointer(item));
  55                item = node_offset(treap_nsearch(&root, tmp));
  56
  57                if (item != next && (!~item || node_pointer(item)->n != tmp->n))
  58                        die("found %"PRIuMAX" in place of %"PRIuMAX"",
  59                                ~item ? node_pointer(item)->n : ~(uintmax_t) 0,
  60                                ~next ? node_pointer(next)->n : ~(uintmax_t) 0);
  61                printf("%"PRIuMAX"\n", tmp->n);
  62        }
  63        node_reset();
  64        return 0;
  65}