struct sort_bucket {
cnode n;
+ struct sort_context *ctx;
uns flags;
struct fastbuf *fb;
- byte *name;
+ byte *filename;
u64 size; // Size in bytes (not valid when writing)
uns runs; // Number of runs, 0 if not sorted
uns hash_bits; // Remaining bits of the hash function
SBF_OPEN_WRITE = 256, // We are currently writing to the fastbuf
SBF_OPEN_READ = 512, // We are reading from the fastbuf
SBF_DESTROYED = 1024, // Already done with, no further references allowed
+ SBF_SWAPPED_OUT = 2048, // Swapped out to a named file
};
struct sort_context {
sh_off_t sbuck_size(struct sort_bucket *b);
struct fastbuf *sbuck_read(struct sort_bucket *b);
struct fastbuf *sbuck_write(struct sort_bucket *b);
+void sbuck_swap_out(struct sort_bucket *b);
#endif
#include "lib/mempool.h"
#include "lib/sorter/common.h"
+#include <fcntl.h>
+
void *
sorter_alloc(struct sort_context *ctx, uns size)
{
struct sort_bucket *
sbuck_new(struct sort_context *ctx)
{
- return sorter_alloc(ctx, sizeof(struct sort_bucket));
+ struct sort_bucket *b = sorter_alloc(ctx, sizeof(struct sort_bucket));
+ b->ctx = ctx;
+ return b;
}
void
sh_off_t
sbuck_size(struct sort_bucket *b)
{
- if (b->flags & SBF_OPEN_WRITE)
+ if ((b->flags & SBF_OPEN_WRITE) && !(b->flags & SBF_SWAPPED_OUT))
return btell(b->fb);
else
return b->size;
return b && sbuck_size(b);
}
+static void
+sbuck_swap_in(struct sort_bucket *b)
+{
+ if (b->flags & SBF_SWAPPED_OUT)
+ {
+ b->fb = bopen(b->filename, O_RDWR, sorter_stream_bufsize);
+ if (b->flags & SBF_OPEN_WRITE)
+ bseek(b->fb, 0, SEEK_END);
+ bconfig(b->fb, BCONFIG_IS_TEMP_FILE, 1);
+ b->flags &= ~SBF_SWAPPED_OUT;
+ SORT_XTRACE("Swapped in %s", b->filename);
+ }
+}
+
struct fastbuf *
sbuck_read(struct sort_bucket *b)
{
- /* FIXME: These functions should handle buckets with no fb and only name. */
- ASSERT(b->fb);
+ sbuck_swap_in(b);
if (b->flags & SBF_OPEN_READ)
return b->fb;
else if (b->flags & SBF_OPEN_WRITE)
struct fastbuf *
sbuck_write(struct sort_bucket *b)
{
+ sbuck_swap_in(b);
if (b->flags & SBF_OPEN_WRITE)
ASSERT(b->fb);
else
ASSERT(!(b->flags & (SBF_OPEN_READ | SBF_DESTROYED)));
b->fb = bopen_tmp(sorter_stream_bufsize);
b->flags |= SBF_OPEN_WRITE;
+ b->filename = mp_strdup(b->ctx->pool, b->fb->name);
}
return b->fb;
}
+void
+sbuck_swap_out(struct sort_bucket *b)
+{
+ if ((b->flags & (SBF_OPEN_READ | SBF_OPEN_WRITE)) && b->fb)
+ {
+ if (b->flags & SBF_OPEN_WRITE)
+ b->size = btell(b->fb);
+ bconfig(b->fb, BCONFIG_IS_TEMP_FILE, 0);
+ bclose(b->fb);
+ b->fb = NULL;
+ b->flags |= SBF_SWAPPED_OUT;
+ SORT_XTRACE("Swapped out %s", b->filename);
+ }
+}
+
void
sorter_alloc_buf(struct sort_context *ctx)
{
{
SORT_TRACE("Presorting");
ins[0] = sbuck_new(ctx);
- sbuck_read(b);
if (!sorter_presort(ctx, b, ins[0], join ? : ins[0]))
{
if (join)