OSDN Git Service

Fix about 156,199 bytes of leaked memory.
[handbrake-jp/handbrake-jp-git.git] / libhb / hb.c
1 #include "hb.h"
2
3 #include "ffmpeg/avcodec.h"
4
5 struct hb_handle_s
6 {
7     /* The "Check for update" thread */
8     int            build;
9     char           version[16];
10     hb_thread_t  * update_thread;
11
12     /* This thread's only purpose is to check other threads'
13        states */
14     volatile int   die;
15     hb_thread_t  * main_thread;
16     int            pid;
17
18     /* DVD/file scan thread */
19     hb_list_t    * list_title;
20     hb_thread_t  * scan_thread;
21
22     /* The thread which processes the jobs. Others threads are launched
23        from this one (see work.c) */
24     hb_list_t    * jobs;
25     int            job_count;
26     volatile int   work_die;
27     int            work_error;
28     hb_thread_t  * work_thread;
29
30     int            cpu_count;
31
32     hb_lock_t    * state_lock;
33     hb_state_t     state;
34
35     int            paused;
36     hb_lock_t    * pause_lock;
37 };
38
39 hb_work_object_t * hb_objects = NULL;
40
41 static void thread_func( void * );
42
43 /**
44  * Registers work objects, by adding the work object to a liked list.
45  * @param w Handle to hb_work_object_t to register.
46  */
47 void hb_register( hb_work_object_t * w )
48 {
49     w->next    = hb_objects;
50     hb_objects = w;
51 }
52
53 /**
54  * libhb initialization routine.
55  * @param verbose HB_DEBUG_NONE or HB_DEBUG_ALL.
56  * @param update_check signals libhb to check for updated version from HandBrake website.
57  * @return Handle to hb_handle_t for use on all subsequent calls to libhb.
58  */
59 hb_handle_t * hb_init_real( int verbose, int update_check )
60 {
61     hb_handle_t * h = calloc( sizeof( hb_handle_t ), 1 );
62     uint64_t      date;
63
64     /* See hb_log() in common.c */
65     if( verbose > HB_DEBUG_NONE )
66     {
67         putenv( "HB_DEBUG=1" );
68                 av_log_set_level(AV_LOG_DEBUG);
69     }
70
71     /* Check for an update on the website if asked to */
72     h->build = -1;
73
74     if( update_check )
75     {
76         hb_log( "hb_init: checking for updates" );
77         date             = hb_get_date();
78         h->update_thread = hb_update_init( &h->build, h->version );
79
80         for( ;; )
81         {
82             if( hb_thread_has_exited( h->update_thread ) )
83             {
84                 /* Immediate success or failure */
85                 hb_thread_close( &h->update_thread );
86                 break;
87             }
88             if( hb_get_date() > date + 1000 )
89             {
90                 /* Still nothing after one second. Connection problem,
91                    let the thread die */
92                 hb_log( "hb_init: connection problem, not waiting for "
93                         "update_thread" );
94                 break;
95             }
96             hb_snooze( 500 );
97         }
98     }
99
100     /* CPU count detection */
101     hb_log( "hb_init: checking cpu count" );
102     h->cpu_count = hb_get_cpu_count();
103
104     h->list_title = hb_list_init();
105     h->jobs       = hb_list_init();
106
107     h->state_lock  = hb_lock_init();
108     h->state.state = HB_STATE_IDLE;
109
110     h->pause_lock = hb_lock_init();
111
112     /* libavcodec */
113     avcodec_init();
114     register_avcodec( &mpeg4_encoder );
115     register_avcodec( &mp2_decoder );
116     register_avcodec( &ac3_encoder );
117
118     /* Start library thread */
119     hb_log( "hb_init: starting libhb thread" );
120     h->die         = 0;
121     h->main_thread = hb_thread_init( "libhb", thread_func, h,
122                                      HB_NORMAL_PRIORITY );
123
124     return h;
125 }
126
127 /**
128  * libhb initialization routine.
129  * This version is to use when calling the dylib, the macro hb_init isn't available from a dylib call!
130  * @param verbose HB_DEBUG_NONE or HB_DEBUG_ALL.
131  * @param update_check signals libhb to check for updated version from HandBrake website.
132  * @return Handle to hb_handle_t for use on all subsequent calls to libhb.
133  */
134 hb_handle_t * hb_init_dl( int verbose, int update_check )
135 {
136     hb_handle_t * h = calloc( sizeof( hb_handle_t ), 1 );
137     uint64_t      date;
138
139     /* See hb_log() in common.c */
140     if( verbose > HB_DEBUG_NONE )
141     {
142         putenv( "HB_DEBUG=1" );
143                 av_log_set_level(AV_LOG_DEBUG);
144     }
145
146     /* Check for an update on the website if asked to */
147     h->build = -1;
148
149     if( update_check )
150     {
151         hb_log( "hb_init: checking for updates" );
152         date             = hb_get_date();
153         h->update_thread = hb_update_init( &h->build, h->version );
154
155         for( ;; )
156         {
157             if( hb_thread_has_exited( h->update_thread ) )
158             {
159                 /* Immediate success or failure */
160                 hb_thread_close( &h->update_thread );
161                 break;
162             }
163             if( hb_get_date() > date + 1000 )
164             {
165                 /* Still nothing after one second. Connection problem,
166                    let the thread die */
167                 hb_log( "hb_init: connection problem, not waiting for "
168                         "update_thread" );
169                 break;
170             }
171             hb_snooze( 500 );
172         }
173     }
174
175     /* CPU count detection */
176     hb_log( "hb_init: checking cpu count" );
177     h->cpu_count = hb_get_cpu_count();
178
179     h->list_title = hb_list_init();
180     h->jobs       = hb_list_init();
181
182     h->state_lock  = hb_lock_init();
183     h->state.state = HB_STATE_IDLE;
184
185     h->pause_lock = hb_lock_init();
186
187     /* libavcodec */
188     avcodec_init();
189     register_avcodec( &mpeg4_encoder );
190     register_avcodec( &mp2_decoder );
191     register_avcodec( &ac3_encoder );
192
193     /* Start library thread */
194     hb_log( "hb_init: starting libhb thread" );
195     h->die         = 0;
196     h->main_thread = hb_thread_init( "libhb", thread_func, h,
197                                      HB_NORMAL_PRIORITY );
198
199     hb_register( &hb_sync ); 
200         hb_register( &hb_decmpeg2 ); 
201         hb_register( &hb_decsub ); 
202         hb_register( &hb_render ); 
203         hb_register( &hb_encavcodec ); 
204         hb_register( &hb_encxvid ); 
205         hb_register( &hb_encx264 ); 
206         hb_register( &hb_deca52 ); 
207         hb_register( &hb_decavcodec ); 
208         hb_register( &hb_declpcm ); 
209         hb_register( &hb_encfaac ); 
210         hb_register( &hb_enclame ); 
211         hb_register( &hb_encvorbis ); 
212         
213         return h;
214 }
215
216
217 /**
218  * Returns current version of libhb.
219  * @param h Handle to hb_handle_t.
220  * @return character array of version number.
221  */
222 char * hb_get_version( hb_handle_t * h )
223 {
224     return HB_VERSION;
225 }
226
227 /**
228  * Returns current build of libhb.
229  * @param h Handle to hb_handle_t.
230  * @return character array of build number.
231  */
232 int hb_get_build( hb_handle_t * h )
233 {
234     return HB_BUILD;
235 }
236
237 /**
238  * Checks for needed update.
239  * @param h Handle to hb_handle_t.
240  * @param version Pointer to handle where version will be copied.
241  * @return update indicator.
242  */
243 int hb_check_update( hb_handle_t * h, char ** version )
244 {
245     *version = ( h->build < 0 ) ? NULL : h->version;
246     return h->build;
247 }
248
249 /**
250  * Sets the cpu count to the desired value.
251  * @param h Handle to hb_handle_t
252  * @param cpu_count Number of CPUs to use.
253  */
254 void hb_set_cpu_count( hb_handle_t * h, int cpu_count )
255 {
256     cpu_count    = MAX( 1, cpu_count );
257     cpu_count    = MIN( cpu_count, 8 );
258     h->cpu_count = cpu_count;
259 }
260
261 /**
262  * Initializes a scan of the by calling hb_scan_init
263  * @param h Handle to hb_handle_t
264  * @param path location of VIDEO_TS folder.
265  * @param title_index Desired title to scan.  0 for all titles.
266  */
267 void hb_scan( hb_handle_t * h, const char * path, int title_index )
268 {
269     hb_title_t * title;
270
271     /* Clean up from previous scan */
272     while( ( title = hb_list_item( h->list_title, 0 ) ) )
273     {
274         hb_list_rem( h->list_title, title );
275         hb_title_close( &title );
276     }
277     
278     hb_log( "hb_scan: path=%s, title_index=%d", path, title_index );
279     h->scan_thread = hb_scan_init( h, path, title_index, h->list_title );
280 }
281
282 /**
283  * Returns the list of titles found.
284  * @param h Handle to hb_handle_t
285  * @return Handle to hb_list_t of the title list.
286  */
287 hb_list_t * hb_get_titles( hb_handle_t * h )
288 {
289     return h->list_title;
290 }
291
292 /**
293  * Create preview image of desired title a index of picture.
294  * @param h Handle to hb_handle_t.
295  * @param title Handle to hb_title_t of desired title.
296  * @param picture Index in title.
297  * @param buffer Handle to buufer were inage will be drawn.
298  */
299 void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture,
300                      uint8_t * buffer )
301 {
302     hb_job_t           * job = title->job;
303     char                 filename[1024];
304     FILE               * file;
305     uint8_t            * buf1, * buf2, * buf3, * buf4, * pen;
306     uint32_t           * p32;
307     AVPicture            pic1, pic2, pic3, pic4;
308     ImgReSampleContext * context;
309     int                  i;
310
311     buf1 = malloc( title->width * title->height * 3 / 2 );
312     buf2 = malloc( title->width * title->height * 3 / 2 );
313     buf3 = malloc( title->width * title->height * 3 / 2 );
314     buf4 = malloc( title->width * title->height * 4 );
315     avpicture_fill( &pic1, buf1, PIX_FMT_YUV420P,
316                     title->width, title->height );
317     avpicture_fill( &pic2, buf2, PIX_FMT_YUV420P,
318                     title->width, title->height );
319     avpicture_fill( &pic3, buf3, PIX_FMT_YUV420P,
320                     job->width, job->height );
321     avpicture_fill( &pic4, buf4, PIX_FMT_RGBA32,
322                     job->width, job->height );
323     
324     memset( filename, 0, 1024 );
325
326     hb_get_tempory_filename( h, filename, "%x%d",
327                              (int) title, picture );
328
329     file = fopen( filename, "r" );
330     if( !file )
331     {
332         hb_log( "hb_get_preview: fopen failed" );
333         return;
334     }
335
336     fread( buf1, title->width * title->height * 3 / 2, 1, file );
337     fclose( file );
338
339     context = img_resample_full_init(
340             job->width, job->height, title->width, title->height,
341             job->crop[0], job->crop[1], job->crop[2], job->crop[3],
342             0, 0, 0, 0 );
343
344     if( job->deinterlace )
345     {
346         avpicture_deinterlace( &pic2, &pic1, PIX_FMT_YUV420P,
347                                title->width, title->height );
348         img_resample( context, &pic3, &pic2 );
349     }
350     else
351     {
352         img_resample( context, &pic3, &pic1 );
353     }
354     img_convert( &pic4, PIX_FMT_RGBA32, &pic3, PIX_FMT_YUV420P,
355                  job->width, job->height );
356
357     /* Gray background */
358     p32 = (uint32_t *) buffer;
359     for( i = 0; i < ( title->width + 2 ) * ( title->height + 2 ); i++ )
360     {
361         p32[i] = 0xFF808080;
362     }
363
364     /* Draw the picture, centered, and draw the cropping zone */
365     pen = buffer + ( title->height - job->height ) *
366         ( title->width + 2 ) * 2 + ( title->width - job->width ) * 2;
367     memset( pen, 0xFF, 4 * ( job->width + 2 ) );
368     pen += 4 * ( title->width + 2 );
369     for( i = 0; i < job->height; i++ )
370     {
371         uint8_t * nextLine;
372         nextLine = pen + 4 * ( title->width + 2 );
373         memset( pen, 0xFF, 4 );
374         pen += 4;
375         memcpy( pen, buf4 + 4 * job->width * i, 4 * job->width );
376         pen += 4 * job->width;
377         memset( pen, 0xFF, 4 );
378         pen = nextLine;
379     }
380     memset( pen, 0xFF, 4 * ( job->width + 2 ) );
381
382     free( buf1 );
383     free( buf2 );
384     free( buf3 );
385     free( buf4 );
386 }
387
388 /**
389  * Calculates job width, height, and cropping parameters.
390  * @param job Handle to hb_job_t.
391  * @param aspect Desired aspect ratio. Value of -1 uses title aspect.
392  * @param pixels Maximum desired pixel count.
393  */
394 void hb_set_size( hb_job_t * job, int aspect, int pixels )
395 {
396     hb_title_t * title = job->title;
397
398     int croppedWidth  = title->width - title->crop[2] - title->crop[3];
399     int croppedHeight = title->height - title->crop[0] - title->crop[1];
400     int croppedAspect = title->aspect * title->height * croppedWidth /
401                             croppedHeight / title->width;
402     int addCrop;
403     int i, w, h;
404
405     if( aspect <= 0 )
406     {
407         /* Keep the best possible aspect ratio */
408         aspect = croppedAspect;
409     }
410
411     /* Crop if necessary to obtain the desired ratio */
412     memcpy( job->crop, title->crop, 4 * sizeof( int ) );
413     if( aspect < croppedAspect )
414     {
415         /* Need to crop on the left and right */
416         addCrop = croppedWidth - aspect * croppedHeight * title->width /
417                     title->aspect / title->height;
418         if( addCrop & 3 )
419         {
420             addCrop = ( addCrop + 1 ) / 2;
421             job->crop[2] += addCrop;
422             job->crop[3] += addCrop;
423         }
424         else if( addCrop & 2 )
425         {
426             addCrop /= 2;
427             job->crop[2] += addCrop - 1;
428             job->crop[3] += addCrop + 1;
429         }
430         else
431         {
432             addCrop /= 2;
433             job->crop[2] += addCrop;
434             job->crop[3] += addCrop;
435         }
436     }
437     else if( aspect > croppedAspect )
438     {
439         /* Need to crop on the top and bottom */
440         addCrop = croppedHeight - croppedWidth * title->aspect *
441             title->height / aspect / title->width;
442         if( addCrop & 3 )
443         {
444             addCrop = ( addCrop + 1 ) / 2;
445             job->crop[0] += addCrop;
446             job->crop[1] += addCrop;
447         }
448         else if( addCrop & 2 )
449         {
450             addCrop /= 2;
451             job->crop[0] += addCrop - 1;
452             job->crop[1] += addCrop + 1;
453         }
454         else
455         {
456             addCrop /= 2;
457             job->crop[0] += addCrop;
458             job->crop[1] += addCrop;
459         }
460     }
461
462     /* Compute a resolution from the number of pixels and aspect */
463     for( i = 0;; i++ )
464     {
465         w = 16 * i;
466         h = MULTIPLE_16( w * HB_ASPECT_BASE / aspect );
467         if( w * h > pixels )
468         {
469             break;
470         }
471     }
472     i--;
473     job->width  = 16 * i;
474     job->height = MULTIPLE_16( 16 * i * HB_ASPECT_BASE / aspect );
475 }
476
477 /**
478  * Returns the number of jobs in the queue.
479  * @param h Handle to hb_handle_t.
480  * @return Number of jobs.
481  */
482 int hb_count( hb_handle_t * h )
483 {
484     return hb_list_count( h->jobs );
485 }
486
487 /**
488  * Returns handle to job at index i within the job list.
489  * @param h Handle to hb_handle_t.
490  * @param i Index of job.
491  * @returns Handle to hb_job_t of desired job.
492  */
493 hb_job_t * hb_job( hb_handle_t * h, int i )
494 {
495     return hb_list_item( h->jobs, i );
496 }
497
498 /**
499  * Adds a job to the job list.
500  * @param h Handle to hb_handle_t.
501  * @param job Handle to hb_job_t.
502  */
503 void hb_add( hb_handle_t * h, hb_job_t * job )
504 {
505     hb_job_t      * job_copy;
506     hb_title_t    * title,    * title_copy;
507     hb_chapter_t  * chapter,  * chapter_copy;
508     hb_audio_t    * audio,    * audio_copy;
509     hb_subtitle_t * subtitle, * subtitle_copy;
510     int             i;
511
512     /* Copy the title */
513     title      = job->title;
514     title_copy = malloc( sizeof( hb_title_t ) );
515     memcpy( title_copy, title, sizeof( hb_title_t ) );
516
517     title_copy->list_chapter = hb_list_init();
518     for( i = 0; i < hb_list_count( title->list_chapter ); i++ )
519     {
520         chapter      = hb_list_item( title->list_chapter, i );
521         chapter_copy = malloc( sizeof( hb_chapter_t ) );
522         memcpy( chapter_copy, chapter, sizeof( hb_chapter_t ) );
523         hb_list_add( title_copy->list_chapter, chapter_copy );
524     }
525
526     /* Copy the audio track(s) we want */
527     title_copy->list_audio = hb_list_init();
528
529     /* Do nothing about audio during first pass */
530     if( job->pass != 1 )
531     {
532         for( i = 0; i < 8; i++ )
533         {
534             if( job->audios[i] < 0 )
535             {
536                 break;
537             }
538             if( ( audio = hb_list_item( title->list_audio, job->audios[i] ) ) )
539             {
540                 audio_copy = malloc( sizeof( hb_audio_t ) );
541                 memcpy( audio_copy, audio, sizeof( hb_audio_t ) );
542                 hb_list_add( title_copy->list_audio, audio_copy );
543             }
544         }
545     }
546
547     /* Copy the subtitle we want (or not) */
548     title_copy->list_subtitle = hb_list_init();
549     if( ( subtitle = hb_list_item( title->list_subtitle, job->subtitle ) ) )
550     {
551         subtitle_copy = malloc( sizeof( hb_subtitle_t ) );
552         memcpy( subtitle_copy, subtitle, sizeof( hb_subtitle_t ) );
553         hb_list_add( title_copy->list_subtitle, subtitle_copy );
554     }
555
556     /* Copy the job */
557     job_copy        = calloc( sizeof( hb_job_t ), 1 );
558     memcpy( job_copy, job, sizeof( hb_job_t ) );
559     title_copy->job = job_copy;
560     job_copy->title = title_copy;
561     job_copy->file  = strdup( job->file );
562     job_copy->h     = h;
563     job_copy->pause = h->pause_lock;
564
565     /* Add the job to the list */
566     hb_list_add( h->jobs, job_copy );
567 }
568
569 /**
570  * Removes a job from the job list.
571  * @param h Handle to hb_handle_t.
572  * @param job Handle to hb_job_t.
573  */
574 void hb_rem( hb_handle_t * h, hb_job_t * job )
575 {
576     hb_list_rem( h->jobs, job );
577
578     /* XXX free everything XXX */
579 }
580
581 /**
582  * Starts the conversion process.
583  * Sets state to HB_STATE_WORKING.
584  * calls hb_work_init, to launch work thread. Stores handle to work thread.
585  * @param h Handle to hb_handle_t.
586  */
587 void hb_start( hb_handle_t * h )
588 {
589     /* XXX Hack */
590     h->job_count = hb_list_count( h->jobs );
591
592     hb_lock( h->state_lock );
593     h->state.state = HB_STATE_WORKING;
594 #define p h->state.param.working
595     p.progress  = 0.0;
596     p.job_cur   = 1;
597     p.job_count = h->job_count;
598     p.rate_cur  = 0.0;
599     p.rate_avg  = 0.0;
600     p.hours     = -1;
601     p.minutes   = -1;
602     p.seconds   = -1;
603 #undef p
604     hb_unlock( h->state_lock );
605
606     h->paused = 0;
607
608     h->work_die    = 0;
609     h->work_thread = hb_work_init( h->jobs, h->cpu_count,
610                                    &h->work_die, &h->work_error );
611 }
612
613 /**
614  * Pauses the conversion process.
615  * @param h Handle to hb_handle_t.
616  */
617 void hb_pause( hb_handle_t * h )
618 {
619     if( !h->paused )
620     {
621         hb_lock( h->pause_lock );
622         h->paused = 1;
623
624         hb_lock( h->state_lock );
625         h->state.state = HB_STATE_PAUSED;
626         hb_unlock( h->state_lock );
627     }
628 }
629
630 /**
631  * Resumes the conversion process.
632  * @param h Handle to hb_handle_t.
633  */
634 void hb_resume( hb_handle_t * h )
635 {
636     if( h->paused )
637     {
638         hb_unlock( h->pause_lock );
639         h->paused = 0;
640     }
641 }
642
643 /**
644  * Stops the conversion process.
645  * @param h Handle to hb_handle_t.
646  */
647 void hb_stop( hb_handle_t * h )
648 {
649     h->work_die = 1;
650
651     hb_resume( h );
652 }
653
654 /**
655  * Returns the state of the conversion process.
656  * @param h Handle to hb_handle_t.
657  * @param s Handle to hb_state_t which to copy the state data.
658  */
659 void hb_get_state( hb_handle_t * h, hb_state_t * s )
660 {
661     hb_lock( h->state_lock );
662
663     memcpy( s, &h->state, sizeof( hb_state_t ) );
664     h->state.state = HB_STATE_IDLE;
665
666     hb_unlock( h->state_lock );
667 }
668
669 /**
670  * Closes access to libhb by freeing the hb_handle_t handle ontained in hb_init_real.
671  * @param _h Pointer to handle to hb_handle_t.
672  */
673 void hb_close( hb_handle_t ** _h )
674 {
675     hb_handle_t * h = *_h;
676     hb_title_t * title;
677
678     h->die = 1;
679     hb_thread_close( &h->main_thread );
680
681     while( ( title = hb_list_item( h->list_title, 0 ) ) )
682     {
683         hb_list_rem( h->list_title, title );
684         free( title->job );
685         hb_title_close( &title );
686     }
687     hb_list_close( &h->list_title );
688
689     hb_list_close( &h->jobs );
690     hb_lock_close( &h->state_lock );
691     hb_lock_close( &h->pause_lock );
692     free( h );
693     *_h = NULL;
694 }
695
696 /**
697  * Monitors the state of the update, scan, and work threads.
698  * Sets scan done state when scan thread exits.
699  * Sets work done state when work thread exits.
700  * @param _h Handle to hb_handle_t
701  */
702 static void thread_func( void * _h )
703 {
704     hb_handle_t * h = (hb_handle_t *) _h;
705     char dirname[1024];
706     DIR * dir;
707     struct dirent * entry;
708
709     h->pid = getpid();
710
711     /* Create folder for temporary files */
712     memset( dirname, 0, 1024 );
713     hb_get_tempory_directory( h, dirname );
714
715     hb_mkdir( dirname );
716
717     while( !h->die )
718     {
719         /* In case the check_update thread hangs, it'll die sooner or
720            later. Then, we join it here */
721         if( h->update_thread &&
722             hb_thread_has_exited( h->update_thread ) )
723         {
724             hb_thread_close( &h->update_thread );
725         }
726
727         /* Check if the scan thread is done */
728         if( h->scan_thread &&
729             hb_thread_has_exited( h->scan_thread ) )
730         {
731             hb_thread_close( &h->scan_thread );
732
733             hb_log( "libhb: scan thread found %d valid title(s)",
734                     hb_list_count( h->list_title ) );
735             hb_lock( h->state_lock );
736             h->state.state = HB_STATE_SCANDONE;
737             hb_unlock( h->state_lock );
738         }
739
740         /* Check if the work thread is done */
741         if( h->work_thread &&
742             hb_thread_has_exited( h->work_thread ) )
743         {
744             hb_thread_close( &h->work_thread );
745
746             hb_log( "libhb: work result = %d",
747                     h->work_error );
748             hb_lock( h->state_lock );
749             h->state.state                = HB_STATE_WORKDONE;
750             h->state.param.workdone.error = h->work_error;
751             hb_unlock( h->state_lock );
752         }
753
754         hb_snooze( 50 );
755     }
756
757     if( h->work_thread )
758     {
759         hb_stop( h );
760         hb_thread_close( &h->work_thread );
761     }
762
763     /* Remove temp folder */
764     dir = opendir( dirname );
765     while( ( entry = readdir( dir ) ) )
766     {
767         char filename[1024];
768         if( entry->d_name[0] == '.' )
769         {
770             continue;
771         }
772         memset( filename, 0, 1024 );
773         snprintf( filename, 1023, "%s/%s", dirname, entry->d_name );
774         unlink( filename );
775     }
776     closedir( dir );
777     rmdir( dirname );
778 }
779
780 /**
781  * Returns the PID.
782  * @param h Handle to hb_handle_t
783  */
784 int hb_get_pid( hb_handle_t * h )
785 {
786     return h->pid;
787 }
788
789 /**
790  * Sets the current state.
791  * @param h Handle to hb_handle_t
792  * @param s Handle to new hb_state_t
793  */
794 void hb_set_state( hb_handle_t * h, hb_state_t * s )
795 {
796     hb_lock( h->pause_lock );
797     hb_lock( h->state_lock );
798     memcpy( &h->state, s, sizeof( hb_state_t ) );
799     if( h->state.state == HB_STATE_WORKING )
800     {
801         /* XXX Hack */
802         h->state.param.working.job_cur =
803             h->job_count - hb_list_count( h->jobs );
804         h->state.param.working.job_count = h->job_count;
805     }
806     hb_unlock( h->state_lock );
807     hb_unlock( h->pause_lock );
808 }