/[cvs]/joko/Uni/BSArch/04/bmp_fractal.c
ViewVC logotype

Diff of /joko/Uni/BSArch/04/bmp_fractal.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by joko, Sun Jul 2 01:51:26 2006 UTC revision 1.14 by joko, Sun Jul 2 11:44:57 2006 UTC
# Line 15  Line 15 
15  #define YSIZE 500  #define YSIZE 500
16  #include "algorithm.h"  #include "algorithm.h"
17    
18  #define MASTER -1  BOOL VERBOSE = FALSE;
   
 BOOL VERBOSE = TRUE;  
19    
20    
21  /* BMP Header */  /* BMP Header */
# Line 51  void printErrorAndExit(const char *msg, Line 49  void printErrorAndExit(const char *msg,
49                                            0,                                            0,
50                                            NULL ))                                            NULL ))
51          {          {
52                  fprintf(stderr,"%s : %s\n",msg,lpMsgBuf);                  fprintf(stdout, "%s: %s\n", msg, lpMsgBuf);
53                  LocalFree(lpMsgBuf);                  LocalFree(lpMsgBuf);
54          }          }
55          else          else
56          {          {
57                  fprintf(stderr,"Error at FormatMesage: %d\n",err=GetLastError());                  fprintf(stdout, "Error at FormatMesage: %d\n",err=GetLastError());
58          }          }
59          exit(err);          exit(err);
60  }  }
# Line 127  DWORD WINAPI fractal_create_segment (LPV Line 125  DWORD WINAPI fractal_create_segment (LPV
125    
126    // debugging    // debugging
127    if (VERBOSE) {    if (VERBOSE) {
128      printf("----------------------------------------------\n");      fprintf(stdout, "----------------------------------------------\n");
129      printf("thread_id: %i\n", thread_id);      fprintf(stdout, "thread_id: %i\n", thread_id);
130      printf("arg.start_row: %i\n", args->start_row);      fprintf(stdout, "arg.start_row: %i\n", args->start_row);
131      printf("arg.number_of_rows: %i\n", args->number_of_rows);      fprintf(stdout, "arg.number_of_rows: %i\n", args->number_of_rows);
132      printf("segment_start: %p\n", pDataBitmapSegment);      fprintf(stdout, "segment_start: %p\n", pDataBitmapSegment);
133    }    }
134        
135    // calculate fractal    // calculate fractal
136    for (y = (args->start_row + args->number_of_rows) - 1; y >= args->start_row; y--) {    for (y = (args->start_row + args->number_of_rows) - 1; y >= args->start_row; y--) {
137      //printf("calc: thread=%i; y=%i            limits: %i,%i    p: %p\n", thread_id, y, args->start_row, args->number_of_rows, pDataBitmapSegment);      //fprintf(stdout, "calc: thread=%i; y=%i            limits: %i,%i    p: %p\n", thread_id, y, args->start_row, args->number_of_rows, pDataBitmapSegment);
138      for (x = 0; x < XSIZE; x++) {      for (x = 0; x < XSIZE; x++) {
139        getColorValuesAt(x * (2.0 / XSIZE) - 1.5, y * (2.0 / YSIZE) - 1.0, &bgr[2], &bgr[1], &bgr[0]);        getColorValuesAt(x * (2.0 / XSIZE) - 1.5, y * (2.0 / YSIZE) - 1.0, &bgr[2], &bgr[1], &bgr[0]);
140                
# Line 153  DWORD WINAPI fractal_create_segment (LPV Line 151  DWORD WINAPI fractal_create_segment (LPV
151    }    }
152    
153    if (VERBOSE)    if (VERBOSE)
154      printf("thread finished: %i\n", thread_id);      fprintf(stdout, "thread finished: %i\n", thread_id);
155    return 0;    return 0;
156    
157  }  }
158    
159    //BOOL scan_argv(int argc, char *argv[], char opt_name[], char *opt_value[]) {
160    BOOL scan_argv(int argc, char *argv[], char opt_name[], char *opt_value) {
161      int i;
162      char * opt_current_name;
163      char * opt_current_value;
164    
165      //printf("searching for: '%s'\n", opt_name);
166      
167      for (i = 1; i < argc; i++) {
168        opt_current_name = argv[i];
169        if (strcmp(opt_current_name, opt_name) == 0) {
170          opt_current_value = argv[i+1];
171          if (opt_current_value != NULL) {
172            strcpy(opt_value, opt_current_value);
173          }
174          return TRUE;
175        }
176      }
177      return FALSE;
178    }
179    
180    
181  int main(int argc, char *argv[]) {  int main(int argc, char *argv[]) {
182    
# Line 174  int main(int argc, char *argv[]) { Line 193  int main(int argc, char *argv[]) {
193    PWORKERARGS worker_args;    PWORKERARGS worker_args;
194    
195    // threads or processes?    // threads or processes?
196    BOOL use_processes = TRUE;    BOOL use_processes = FALSE;
197    int worker_id = MASTER;    BOOL is_worker_process = FALSE;
198        
199    // information for creating processes    // information for creating processes
200    STARTUPINFO si;    STARTUPINFO si;
201    PROCESS_INFORMATION pi;    PROCESS_INFORMATION pi;
202    char szCmdline[1024];    char szCmdline[65536];
203        
204      // command line stuff
205      char arg_option[1024];
206      char arg_value[1024];
207      char *bmp_filename;
208      char *verbose_option = "";
209        
210    // "parse" command line arguments  
211    if (argc >= 2) {    // parse command line arguments
212      worker_id = atoi(argv[1]);    if (argc < 2) {
213        fprintf(stderr, "Can not run without arguments!\nPlease specify '-t {number of threads}' or '-p {number of processes}' and an image filename.\n");
214        exit(EXIT_FAILURE);
215    }    }
216        
217    if (VERBOSE) {    if (scan_argv(argc, argv, "--verbose", arg_value)) {
218      printf("==============================================================\n");      VERBOSE = TRUE;
219      printf("worker-id: %i\n", worker_id);    }
220      
221      if (scan_argv(argc, argv, "--worker", arg_value)) {
222        use_processes = TRUE;
223        is_worker_process = TRUE;
224      
225      } else if (scan_argv(argc, argv, "-p", arg_value)) {
226        if (strlen(arg_value) == 0) {
227          fprintf(stderr, "Please specify number of processes!\n");
228          exit(EXIT_FAILURE);
229        }
230        use_processes = TRUE;
231        is_worker_process = FALSE;
232        workers = atoi(arg_value);
233      
234      } else if (scan_argv(argc, argv, "-t", arg_value)) {
235        if (strlen(arg_value) == 0) {
236          fprintf(stderr, "Please specify number of threads!\n");
237          exit(EXIT_FAILURE);
238        }
239        use_processes = FALSE;
240        is_worker_process = FALSE;
241        workers = atoi(arg_value);
242        
243    }    }
244        
245    // create empty bmp-file (black background)    
246    if (worker_id == MASTER)    if (VERBOSE && use_processes) {
247      write_blank_file("test.bmp");      fprintf(stdout, "===================================================== ");
248        if (is_worker_process)
249          fprintf(stdout, "WORKER-PROCESS\n");
250        else
251          fprintf(stdout, "MASTER-PROCESS\n");
252      }
253    
254    if (worker_id == MASTER) {    
255      // master creates memory mapped file ("empty" image)
256      if (!is_worker_process) {
257            
258      /* open file for reading and writing */      if (argc < 4) {
259      hFile = CreateFile("test.bmp", GENERIC_WRITE|GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);        fprintf(stderr, "Must give filename of image as third argument!\n");
260          exit(EXIT_FAILURE);
261        }
262        
263        bmp_filename = argv[3];
264        
265        // create empty bmp-file (black background)
266        write_blank_file(bmp_filename);
267    
268        // open file for reading and writing
269        hFile = CreateFile(bmp_filename, GENERIC_WRITE|GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
270      if (INVALID_HANDLE_VALUE == hFile) {      if (INVALID_HANDLE_VALUE == hFile) {
271        err = GetLastError();        err = GetLastError();
272        printErrorAndExit("Error at CreateFile",err);        printErrorAndExit("Error at CreateFile",err);
273      }      }
274    
275      /* create the file mapping object */      // create the file mapping object
276      hMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE, 0, 0, "bmp_fractal");      hMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE, 0, 0, "bmp_fractal");
277      if (NULL == hMap) {      if (NULL == hMap) {
278        printErrorAndExit("Error at CreateFileMapping", GetLastError());        printErrorAndExit("Error at CreateFileMapping", GetLastError());
279      }      }
280          
281      // worker uses existing memory mapped file
282    } else {    } else {
283            
284      // open existing mapping object      // open existing mapping object
# Line 220  int main(int argc, char *argv[]) { Line 287  int main(int argc, char *argv[]) {
287        printErrorAndExit("Error at OpenFileMapping", GetLastError());        printErrorAndExit("Error at OpenFileMapping", GetLastError());
288    }    }
289        
290    /* map the whole file into the process context */    // map the whole file into the process context
291    pData = MapViewOfFile(hMap, FILE_MAP_WRITE, 0, 0, 0);    pData = MapViewOfFile(hMap, FILE_MAP_WRITE, 0, 0, 0);
292    if (NULL == pData) {    if (NULL == pData) {
293      printErrorAndExit("Error at MapViewOfFile", GetLastError());      printErrorAndExit("Error at MapViewOfFile", GetLastError());
# Line 232  int main(int argc, char *argv[]) { Line 299  int main(int argc, char *argv[]) {
299        
300    // debugging    // debugging
301    if (VERBOSE) {    if (VERBOSE) {
302      printf("pos. of file: %p\n", pData);      fprintf(stdout, "pos. of file: %p\n", pData);
303      printf("pos. of bitmap: %p\n", pDataBitmap);      fprintf(stdout, "pos. of bitmap: %p\n", pDataBitmap);
304    }    }
305    
306        
307    if (use_processes && worker_id != MASTER) {      if (use_processes && is_worker_process) {
308        
309      if (VERBOSE)      if (VERBOSE)
310        printf("inside worker-process\n");        fprintf(stdout, "inside worker-process\n");
       
     worker_index = worker_id;  
311            
312        // get segment information from command line
313      worker_startrow = atoi(argv[2]);      worker_startrow = atoi(argv[2]);
314      worker_rows = atoi(argv[3]);      worker_rows = atoi(argv[3]);
315            
# Line 257  int main(int argc, char *argv[]) { Line 323  int main(int argc, char *argv[]) {
323      worker_args[0].pBitmap = pDataBitmap;      worker_args[0].pBitmap = pDataBitmap;
324    
325      fractal_create_segment(&worker_args[0]);      fractal_create_segment(&worker_args[0]);
326    
327        // cleanup mmap-handle
328        if (!CloseHandle(hMap))
329          printErrorAndExit("Error at CloseHandle", GetLastError());
330            
331      return 0;      return 0;
332    }    }
333        
334    /*    /*
# Line 288  int main(int argc, char *argv[]) { Line 358  int main(int argc, char *argv[]) {
358    // calculate bitmap segment length for workers    // calculate bitmap segment length for workers
359    worker_rows = YSIZE / workers;    worker_rows = YSIZE / workers;
360    if (VERBOSE)    if (VERBOSE)
361      printf("rows for each worker: %i\n", worker_rows);      fprintf(stdout, "rows for each worker: %i\n", worker_rows);
362        
363    // start workers    // start workers
364    for (worker_index = 0; worker_index < workers; worker_index++) {    for (worker_index = 0; worker_index < workers; worker_index++) {
# Line 304  int main(int argc, char *argv[]) { Line 374  int main(int argc, char *argv[]) {
374      if (worker_index == workers - 1) {      if (worker_index == workers - 1) {
375        worker_rows = YSIZE - worker_startrow;        worker_rows = YSIZE - worker_startrow;
376        if (VERBOSE)        if (VERBOSE)
377          printf("rows for last worker: %i\n", worker_rows);          fprintf(stdout, "rows for last worker: %i\n", worker_rows);
378      }      }
379            
380      // assign each worker's arguments      // assign each worker's arguments
# Line 328  int main(int argc, char *argv[]) { Line 398  int main(int argc, char *argv[]) {
398                
399      } else {      } else {
400    
401        _snprintf(szCmdline, 1023, "%s %i %i %i", argv[0], worker_index + 1, worker_startrow, worker_rows);        if (VERBOSE)
402            verbose_option = "--verbose";
403          _snprintf(szCmdline, 1023, "%s %s %i %i %s", argv[0], "--worker", worker_startrow, worker_rows, verbose_option);
404          if (VERBOSE)
405            fprintf(stdout, "starting worker process: %s\n", szCmdline);
406        ZeroMemory( &si, sizeof(si) );        ZeroMemory( &si, sizeof(si) );
407        si.cb = sizeof(si);        si.cb = sizeof(si);
408        ZeroMemory( &pi, sizeof(pi) );        ZeroMemory( &pi, sizeof(pi) );
# Line 355  int main(int argc, char *argv[]) { Line 429  int main(int argc, char *argv[]) {
429    
430    // wait for all threads    // wait for all threads
431    if (VERBOSE)    if (VERBOSE)
432      printf("waiting for workers to finish...\n");      fprintf(stdout, "waiting for workers to finish...\n");
433    if (WaitForMultipleObjects(workers, worker_handles, TRUE, INFINITE) == WAIT_FAILED)    if (WaitForMultipleObjects(workers, worker_handles, TRUE, INFINITE) == WAIT_FAILED)
434      perror("WaitForMultipleObjects");      perror("WaitForMultipleObjects");
435    
# Line 367  int main(int argc, char *argv[]) { Line 441  int main(int argc, char *argv[]) {
441    for (worker_index = 0; worker_index < workers; worker_index++)    for (worker_index = 0; worker_index < workers; worker_index++)
442      CloseHandle(worker_handles[worker_index]);      CloseHandle(worker_handles[worker_index]);
443            
444    /* write the result into the file */    // write the result into the file
445    if (!FlushViewOfFile(pData, 0)) {    if (!FlushViewOfFile(pData, 0)) {
446      err = GetLastError();      err = GetLastError();
447      printErrorAndExit("Error at UnmapViewOfFile", err);      printErrorAndExit("Error at UnmapViewOfFile", err);
448    }    }
449    
450    /* remove the mapped file */    // remove the mapped file
451    if (!UnmapViewOfFile(pData)) {    if (!UnmapViewOfFile(pData)) {
452      err = GetLastError();      err = GetLastError();
453      printErrorAndExit("Error at UnmapViewOfFile", err);      printErrorAndExit("Error at UnmapViewOfFile", err);
454      exit(err);      exit(err);
455    }    }
456        
457    /* cleanup handles */    // cleanup handles
458    if (!CloseHandle(hMap) || !CloseHandle(hFile) ) {    if (!CloseHandle(hMap) || !CloseHandle(hFile) ) {
459      err = GetLastError();      err = GetLastError();
460      printErrorAndExit("Error at CloseHandle", err);      printErrorAndExit("Error at CloseHandle", err);

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.14

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed