xref: /freebsd/usr.bin/mkuzip/mkuz_conveyor.c (revision 63f537551380d2dab29fa402ad1269feae17e594)
1 /*
2  * Copyright (c) 2004-2016 Maxim Sobolev <sobomax@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 #include <sys/types.h>
29 #include <err.h>
30 #include <inttypes.h>
31 #include <md5.h>
32 #include <pthread.h>
33 #include <stdlib.h>
34 #include <strings.h>
35 
36 #if defined(MKUZ_DEBUG)
37 # include <stdio.h>
38 #endif
39 
40 #include "mkuz_conveyor.h"
41 #include "mkuz_cfg.h"
42 #include "mkuzip.h"
43 #include "mkuz_blk.h"
44 #include "mkuz_format.h"
45 #include "mkuz_fqueue.h"
46 #include "mkuz_blk_chain.h"
47 
48 static void compute_digest(struct mkuz_blk *);
49 
50 struct cw_args {
51     struct mkuz_conveyor *cvp;
52     struct mkuz_cfg *cfp;
53 };
54 
55 static void *
56 cworker(void *p)
57 {
58     struct cw_args *cwp;
59     struct mkuz_cfg *cfp;
60     struct mkuz_blk *oblk, *iblk;
61     struct mkuz_conveyor *cvp;
62     void *c_ctx;
63 
64     cwp = (struct cw_args *)p;
65     cfp = cwp->cfp;
66     cvp = cwp->cvp;
67     free(cwp);
68     c_ctx = cfp->handler->f_init(&cfp->comp_level);
69     for (;;) {
70         iblk = mkuz_fqueue_deq(cvp->wrk_queue);
71         if (iblk == MKUZ_BLK_EOF) {
72             /* Let other threads to see the EOF block */
73             mkuz_fqueue_enq(cvp->wrk_queue, iblk);
74             break;
75         }
76         if (cfp->no_zcomp == 0 &&
77           mkuz_memvcmp(iblk->data, '\0', iblk->info.len) != 0) {
78             /* All zeroes block */
79             oblk = mkuz_blk_ctor(0);
80         } else {
81             oblk = mkuz_blk_ctor(cfp->cbound_blksz);
82             cfp->handler->f_compress(c_ctx, iblk, oblk);
83             if (cfp->en_dedup != 0) {
84                 compute_digest(oblk);
85             }
86         }
87         oblk->info.blkno = iblk->info.blkno;
88         mkuz_fqueue_enq(cvp->results, oblk);
89         free(iblk);
90     }
91     return (NULL);
92 }
93 
94 static void
95 compute_digest(struct mkuz_blk *bp)
96 {
97     MD5_CTX mcontext;
98 
99     MD5Init(&mcontext);
100     MD5Update(&mcontext, bp->data, bp->info.len);
101     MD5Final(bp->info.digest, &mcontext);
102 }
103 
104 struct mkuz_conveyor *
105 mkuz_conveyor_ctor(struct mkuz_cfg *cfp)
106 {
107     struct mkuz_conveyor *cp;
108     struct cw_args *cwp;
109     int i, r;
110 
111     cp = mkuz_safe_zmalloc(sizeof(struct mkuz_conveyor) +
112       (sizeof(pthread_t) * cfp->nworkers));
113 
114     cp->wrk_queue = mkuz_fqueue_ctor(1);
115     cp->results = mkuz_fqueue_ctor(1);
116 
117     for (i = 0; i < cfp->nworkers; i++) {
118         cwp = mkuz_safe_zmalloc(sizeof(struct cw_args));
119         cwp->cfp = cfp;
120         cwp->cvp = cp;
121         r = pthread_create(&cp->wthreads[i], NULL, cworker, (void *)cwp);
122         if (r != 0) {
123             errx(1, "mkuz_conveyor_ctor: pthread_create() failed");
124             /* Not reached */
125         }
126     }
127     return (cp);
128 }
129