X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsorter%2Fsorter.h;h=a0b6b39b76a1407fa7425f300bd0551b75cbac76;hb=8cc8233fed6199da4e451b9517b14622291ec06c;hp=d17f4197d89177f22f4be41971ce3f215306323e;hpb=7119957a2df57af617f432dd429e1d6ae5cbe0fd;p=libucw.git diff --git a/lib/sorter/sorter.h b/lib/sorter/sorter.h index d17f4197..a0b6b39b 100644 --- a/lib/sorter/sorter.h +++ b/lib/sorter/sorter.h @@ -201,6 +201,10 @@ static inline void P(copy_merged)(P(key) **keys, struct fastbuf **data UNUSED, u #include "lib/sorter/s-twoway.h" +#ifndef SORT_UNIFY +#include "lib/sorter/s-multiway.h" +#endif + #if defined(SORT_HASH_BITS) || defined(SORT_INT) #include "lib/sorter/s-radix.h" #endif @@ -269,13 +273,14 @@ static struct fastbuf *P(sort)( ctx.internal_estimate = P(internal_estimate); ctx.twoway_merge = P(twoway_merge); +#ifndef SORT_UNIFY + ctx.multiway_merge = P(multiway_merge); +#endif + sorter_run(&ctx); #ifdef SORT_OUTPUT_FILE - if (rename(ctx.out_fb->name, out) < 0) - die("Cannot rename %s to %s: %m", ctx.out_fb->name, out); - bconfig(ctx.out_fb, BCONFIG_IS_TEMP_FILE, 0); - bclose(ctx.out_fb); + bfix_tmp_file(ctx.out_fb, out); ctx.out_fb = NULL; #endif return ctx.out_fb;