/* -*- C++ -*- * File: halt_mt.c * Copyright 2008-2009 Alex Tutubalin * Created: Sat Mar 8 , 2008 * * LibRaw C API mutithreaded sample (emulates call to "dcraw -h [-w] [-a] [-v]") * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ #include #include #include #include #include #include "libraw/libraw.h" #define HANDLE_ERRORS(ret) do { \ if(ret) \ { \ fprintf(stderr,"%s: %s\n",fn,libraw_strerror(ret)); \ if(LIBRAW_FATAL_ERROR(ret)) \ { \ libraw_close(iprc); \ return -1; \ } \ } \ }while(0) // global settings int verbose=0,use_camera_wb=0,use_auto_wb=0,tiff_mode=0; // global file queue pthread_mutex_t qm; char **queue=NULL; size_t qsize=0,qptr=0; char *get_next_file() { char *ret; if(!queue) return NULL; if(qptr>=qsize) return NULL; pthread_mutex_lock(&qm); ret = queue[qptr++]; pthread_mutex_unlock(&qm); return ret; } // thread routine int process_files(void *q) { int ret; int count=0; char outfn[1024], *fn; libraw_data_t *iprc = libraw_init(0); if(!iprc) { fprintf(stderr,"Cannot create libraw handle\n"); return -1; } while((fn = get_next_file())) { iprc->params.half_size = 1; /* dcraw -h */ iprc->params.use_camera_wb = use_camera_wb; iprc->params.use_auto_wb = use_auto_wb; iprc->params.output_tiff = tiff_mode; ret = libraw_open_file(iprc,fn); if(verbose) fprintf(stderr,"%s: %s/%s\n",fn,iprc->idata.make,iprc->idata.model); HANDLE_ERRORS(ret); ret = libraw_unpack(iprc); HANDLE_ERRORS(ret); ret = libraw_dcraw_process(iprc); HANDLE_ERRORS(ret); snprintf(outfn,1023,"%s.ppm",fn); if(verbose) fprintf(stderr,"Writing file %s\n",outfn); ret = libraw_dcraw_ppm_tiff_writer(iprc,outfn); HANDLE_ERRORS(ret); count++; } libraw_close(iprc); return count; } void usage(const char*p) { printf("%s: Multi-threaded LibRaw sample app. Emulates dcraw -h [-w] [-a]\n",p); printf( "Options:\n" "-J n - set parrallel job coun (default 2)\n" "-v - verbose\n" "-w - use camera white balance\n" "-a - average image for white balance\n"); exit(1); } int show_files(void *q) { char *p; int cnt = 0; while(p = get_next_file()) { printf("%s\n",p); cnt++; } return cnt; } int main(int ac, char *av[]) { int i, thread_count,max_threads = 2; pthread_t *threads; if(ac<2) usage(av[0]); queue = calloc(ac-1,sizeof(queue[0])); for (i=1;i