X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Ffb-temp.c;h=4bcced6c4ecd56c5d3bac1064845807a09cd5917;hb=1d8112cb590e458baa899805908a8ac910f58163;hp=b8189ab933497315eb71aef37201fcb4d3c30b5f;hpb=47a0795e8a28e8ad6ff55cda89e300267d9e590c;p=libucw.git diff --git a/lib/fb-temp.c b/lib/fb-temp.c index b8189ab9..4bcced6c 100644 --- a/lib/fb-temp.c +++ b/lib/fb-temp.c @@ -1,7 +1,7 @@ /* * UCW Library -- Temporary Fastbufs * - * (c) 2002--2004 Martin Mares + * (c) 2002--2006 Martin Mares * * This software may be freely distributed and used according to the terms * of the GNU Lesser General Public License. @@ -10,33 +10,64 @@ #include "lib/lib.h" #include "lib/conf.h" #include "lib/fastbuf.h" +#include "lib/threads.h" +#include #include #include -static byte *temp_template = "/tmp/temp%d.%d"; +static byte *temp_prefix = "/tmp/temp"; static struct cf_section temp_config = { CF_ITEMS { - CF_STRING("Template", &temp_template), + CF_STRING("Prefix", &temp_prefix), CF_END } }; -static void CONSTRUCTOR temp_init_config(void) +static void CONSTRUCTOR temp_global_init(void) { cf_declare_section("Tempfiles", &temp_config, 0); } +void +temp_file_name(byte *buf) +{ + struct ucwlib_context *ctx = ucwlib_thread_context(); + int cnt = ++ctx->temp_counter; + int pid = getpid(); + if (ctx->thread_id == pid) + sprintf(buf, "%s%d-%d", temp_prefix, pid, cnt); + else + sprintf(buf, "%s%d-%d-%d", temp_prefix, pid, ctx->thread_id, cnt); +} + struct fastbuf * bopen_tmp(uns buflen) { - byte buf[256]; + byte buf[TEMP_FILE_NAME_LEN]; struct fastbuf *f; - static uns temp_counter; - sprintf(buf, temp_template, (int) getpid(), temp_counter++); + temp_file_name(buf); f = bopen(buf, O_RDWR | O_CREAT | O_TRUNC, buflen); bconfig(f, BCONFIG_IS_TEMP_FILE, 1); return f; } + +#ifdef TEST + +#include "lib/getopt.h" + +int main(int argc, char **argv) +{ + log_init(NULL); + if (cf_getopt(argc, argv, CF_SHORT_OPTS, CF_NO_LONG_OPTS, NULL) >= 0) + die("Hey, whaddya want?"); + + struct fastbuf *f = bopen_tmp(65536); + bputsn(f, "Hello, world!"); + bclose(f); + return 0; +} + +#endif