X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=buffer_tree.c;h=1a6b6e60d3f977d2d99f600d7a872a1b95250312;hp=cd3a3c78a45db3babb73c34a3b860b55c2d99bd7;hb=764e787bc065694b2e9b05159a92104d585f59eb;hpb=81f6ec36f467795d7f17fcc669395f8a5d1223bb diff --git a/buffer_tree.c b/buffer_tree.c index cd3a3c78..1a6b6e60 100644 --- a/buffer_tree.c +++ b/buffer_tree.c @@ -137,6 +137,17 @@ void btr_pushdown(struct btr_node *btrn) btr_pushdown_br(br, btrn); } +int btr_pushdown_one(struct btr_node *btrn) +{ + struct btr_buffer_reference *br; + + if (list_empty(&btrn->input_queue)) + return 0; + br = list_first_entry(&btrn->input_queue, struct btr_buffer_reference, node); + btr_pushdown_br(br, btrn); + return 1; +} + /* Return true if this node has no children. */ bool btr_no_children(struct btr_node *btrn) { @@ -371,3 +382,20 @@ bool btr_eof(struct btr_node *btrn) return (len == 0 && btr_no_parent(btrn)); } + +void log_tree_recursively(struct btr_node *btrn, int loglevel, int depth) +{ + struct btr_node *ch; + const char spaces[] = " ", *space = spaces + 16 - depth; + + if (depth > 16) + return; + para_log(loglevel, "%s%s\n", space, btrn->name); + FOR_EACH_CHILD(ch, btrn) + log_tree_recursively(ch, loglevel, depth + 1); +} + +void btr_log_tree(struct btr_node *btrn, int loglevel) +{ + return log_tree_recursively(btrn, loglevel, 0); +}