]> wimlib.net Git - wimlib/blob - src/compress_parallel.c
add System Compression support
[wimlib] / src / compress_parallel.c
1 /*
2  * compress_parallel.c
3  *
4  * Compress chunks of data (parallel version).
5  */
6
7 /*
8  * Copyright (C) 2013 Eric Biggers
9  *
10  * This file is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU Lesser General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option) any
13  * later version.
14  *
15  * This file is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this file; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #ifdef ENABLE_MULTITHREADED_COMPRESSION
29
30 #include <errno.h>
31 #include <pthread.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include "wimlib/assert.h"
36 #include "wimlib/chunk_compressor.h"
37 #include "wimlib/error.h"
38 #include "wimlib/list.h"
39 #include "wimlib/util.h"
40
41 struct message_queue {
42         struct list_head list;
43         pthread_mutex_t lock;
44         pthread_cond_t msg_avail_cond;
45         pthread_cond_t space_avail_cond;
46         bool terminating;
47 };
48
49 struct compressor_thread_data {
50         pthread_t thread;
51         struct message_queue *chunks_to_compress_queue;
52         struct message_queue *compressed_chunks_queue;
53         struct wimlib_compressor *compressor;
54 };
55
56 #define MAX_CHUNKS_PER_MSG 16
57
58 struct message {
59         u8 *uncompressed_chunks[MAX_CHUNKS_PER_MSG];
60         u8 *compressed_chunks[MAX_CHUNKS_PER_MSG];
61         u32 uncompressed_chunk_sizes[MAX_CHUNKS_PER_MSG];
62         u32 compressed_chunk_sizes[MAX_CHUNKS_PER_MSG];
63         size_t num_filled_chunks;
64         size_t num_alloc_chunks;
65         struct list_head list;
66         bool complete;
67         struct list_head submission_list;
68 };
69
70 struct parallel_chunk_compressor {
71         struct chunk_compressor base;
72
73         struct message_queue chunks_to_compress_queue;
74         struct message_queue compressed_chunks_queue;
75         struct compressor_thread_data *thread_data;
76         unsigned num_thread_data;
77         unsigned num_started_threads;
78
79         struct message *msgs;
80         size_t num_messages;
81
82         struct list_head available_msgs;
83         struct list_head submitted_msgs;
84         struct message *next_submit_msg;
85         struct message *next_ready_msg;
86         size_t next_chunk_idx;
87 };
88
89
90
91 static int
92 message_queue_init(struct message_queue *q)
93 {
94         if (pthread_mutex_init(&q->lock, NULL)) {
95                 ERROR_WITH_ERRNO("Failed to initialize mutex");
96                 goto err;
97         }
98         if (pthread_cond_init(&q->msg_avail_cond, NULL)) {
99                 ERROR_WITH_ERRNO("Failed to initialize condition variable");
100                 goto err_destroy_lock;
101         }
102         if (pthread_cond_init(&q->space_avail_cond, NULL)) {
103                 ERROR_WITH_ERRNO("Failed to initialize condition variable");
104                 goto err_destroy_msg_avail_cond;
105         }
106         INIT_LIST_HEAD(&q->list);
107         return 0;
108
109 err_destroy_msg_avail_cond:
110         pthread_cond_destroy(&q->msg_avail_cond);
111 err_destroy_lock:
112         pthread_mutex_destroy(&q->lock);
113 err:
114         return WIMLIB_ERR_NOMEM;
115 }
116
117 static void
118 message_queue_destroy(struct message_queue *q)
119 {
120         if (q->list.next != NULL) {
121                 pthread_mutex_destroy(&q->lock);
122                 pthread_cond_destroy(&q->msg_avail_cond);
123                 pthread_cond_destroy(&q->space_avail_cond);
124         }
125 }
126
127 static void
128 message_queue_put(struct message_queue *q, struct message *msg)
129 {
130         pthread_mutex_lock(&q->lock);
131         list_add_tail(&msg->list, &q->list);
132         pthread_cond_signal(&q->msg_avail_cond);
133         pthread_mutex_unlock(&q->lock);
134 }
135
136 static struct message *
137 message_queue_get(struct message_queue *q)
138 {
139         struct message *msg;
140
141         pthread_mutex_lock(&q->lock);
142         while (list_empty(&q->list) && !q->terminating)
143                 pthread_cond_wait(&q->msg_avail_cond, &q->lock);
144         if (!q->terminating) {
145                 msg = list_entry(q->list.next, struct message, list);
146                 list_del(&msg->list);
147         } else
148                 msg = NULL;
149         pthread_mutex_unlock(&q->lock);
150         return msg;
151 }
152
153 static void
154 message_queue_terminate(struct message_queue *q)
155 {
156         pthread_mutex_lock(&q->lock);
157         q->terminating = true;
158         pthread_cond_broadcast(&q->msg_avail_cond);
159         pthread_mutex_unlock(&q->lock);
160 }
161
162 static int
163 init_message(struct message *msg, size_t num_chunks, u32 out_chunk_size)
164 {
165         msg->num_alloc_chunks = num_chunks;
166         for (size_t i = 0; i < num_chunks; i++) {
167                 msg->compressed_chunks[i] = MALLOC(out_chunk_size - 1);
168                 msg->uncompressed_chunks[i] = MALLOC(out_chunk_size);
169                 if (msg->compressed_chunks[i] == NULL ||
170                     msg->uncompressed_chunks[i] == NULL)
171                         return WIMLIB_ERR_NOMEM;
172         }
173         return 0;
174 }
175
176 static void
177 destroy_message(struct message *msg)
178 {
179         for (size_t i = 0; i < msg->num_alloc_chunks; i++) {
180                 FREE(msg->compressed_chunks[i]);
181                 FREE(msg->uncompressed_chunks[i]);
182         }
183 }
184
185 static void
186 free_messages(struct message *msgs, size_t num_messages)
187 {
188         if (msgs) {
189                 for (size_t i = 0; i < num_messages; i++)
190                         destroy_message(&msgs[i]);
191                 FREE(msgs);
192         }
193 }
194
195 static struct message *
196 allocate_messages(size_t count, size_t chunks_per_msg, u32 out_chunk_size)
197 {
198         struct message *msgs;
199
200         msgs = CALLOC(count, sizeof(struct message));
201         if (msgs == NULL)
202                 return NULL;
203         for (size_t i = 0; i < count; i++) {
204                 if (init_message(&msgs[i], chunks_per_msg, out_chunk_size)) {
205                         free_messages(msgs, count);
206                         return NULL;
207                 }
208         }
209         return msgs;
210 }
211
212 static void
213 compress_chunks(struct message *msg, struct wimlib_compressor *compressor)
214 {
215
216         for (size_t i = 0; i < msg->num_filled_chunks; i++) {
217                 wimlib_assert(msg->uncompressed_chunk_sizes[i] != 0);
218                 msg->compressed_chunk_sizes[i] =
219                         wimlib_compress(msg->uncompressed_chunks[i],
220                                         msg->uncompressed_chunk_sizes[i],
221                                         msg->compressed_chunks[i],
222                                         msg->uncompressed_chunk_sizes[i] - 1,
223                                         compressor);
224         }
225 }
226
227 static void *
228 compressor_thread_proc(void *arg)
229 {
230         struct compressor_thread_data *params = arg;
231         struct message *msg;
232
233         while ((msg = message_queue_get(params->chunks_to_compress_queue)) != NULL) {
234                 compress_chunks(msg, params->compressor);
235                 message_queue_put(params->compressed_chunks_queue, msg);
236         }
237         return NULL;
238 }
239
240 static void
241 parallel_chunk_compressor_destroy(struct chunk_compressor *_ctx)
242 {
243         struct parallel_chunk_compressor *ctx = (struct parallel_chunk_compressor *)_ctx;
244         unsigned i;
245
246         if (ctx == NULL)
247                 return;
248
249         if (ctx->num_started_threads != 0) {
250                 message_queue_terminate(&ctx->chunks_to_compress_queue);
251
252                 for (i = 0; i < ctx->num_started_threads; i++)
253                         pthread_join(ctx->thread_data[i].thread, NULL);
254         }
255
256         message_queue_destroy(&ctx->chunks_to_compress_queue);
257         message_queue_destroy(&ctx->compressed_chunks_queue);
258
259         if (ctx->thread_data != NULL)
260                 for (i = 0; i < ctx->num_thread_data; i++)
261                         wimlib_free_compressor(ctx->thread_data[i].compressor);
262
263         FREE(ctx->thread_data);
264
265         free_messages(ctx->msgs, ctx->num_messages);
266
267         FREE(ctx);
268 }
269
270 static void
271 submit_compression_msg(struct parallel_chunk_compressor *ctx)
272 {
273         struct message *msg = ctx->next_submit_msg;
274
275         msg->complete = false;
276         list_add_tail(&msg->submission_list, &ctx->submitted_msgs);
277         message_queue_put(&ctx->chunks_to_compress_queue, msg);
278         ctx->next_submit_msg = NULL;
279 }
280
281 static void *
282 parallel_chunk_compressor_get_chunk_buffer(struct chunk_compressor *_ctx)
283 {
284         struct parallel_chunk_compressor *ctx = (struct parallel_chunk_compressor *)_ctx;
285         struct message *msg;
286
287         if (ctx->next_submit_msg) {
288                 msg = ctx->next_submit_msg;
289         } else {
290                 if (list_empty(&ctx->available_msgs))
291                         return NULL;
292
293                 msg = list_entry(ctx->available_msgs.next, struct message, list);
294                 list_del(&msg->list);
295                 ctx->next_submit_msg = msg;
296                 msg->num_filled_chunks = 0;
297         }
298
299         return msg->uncompressed_chunks[msg->num_filled_chunks];
300 }
301
302 static void
303 parallel_chunk_compressor_signal_chunk_filled(struct chunk_compressor *_ctx, u32 usize)
304 {
305         struct parallel_chunk_compressor *ctx = (struct parallel_chunk_compressor *)_ctx;
306         struct message *msg;
307
308         wimlib_assert(usize > 0);
309         wimlib_assert(usize <= ctx->base.out_chunk_size);
310         wimlib_assert(ctx->next_submit_msg);
311
312         msg = ctx->next_submit_msg;
313         msg->uncompressed_chunk_sizes[msg->num_filled_chunks] = usize;
314         if (++msg->num_filled_chunks == msg->num_alloc_chunks)
315                 submit_compression_msg(ctx);
316 }
317
318 static bool
319 parallel_chunk_compressor_get_compression_result(struct chunk_compressor *_ctx,
320                                                  const void **cdata_ret, u32 *csize_ret,
321                                                  u32 *usize_ret)
322 {
323         struct parallel_chunk_compressor *ctx = (struct parallel_chunk_compressor *)_ctx;
324         struct message *msg;
325
326         if (ctx->next_submit_msg)
327                 submit_compression_msg(ctx);
328
329         if (ctx->next_ready_msg) {
330                 msg = ctx->next_ready_msg;
331         } else {
332                 if (list_empty(&ctx->submitted_msgs))
333                         return false;
334
335                 while (!(msg = list_entry(ctx->submitted_msgs.next,
336                                           struct message,
337                                           submission_list))->complete)
338                         message_queue_get(&ctx->compressed_chunks_queue)->complete = true;
339
340                 ctx->next_ready_msg = msg;
341                 ctx->next_chunk_idx = 0;
342         }
343
344         if (msg->compressed_chunk_sizes[ctx->next_chunk_idx]) {
345                 *cdata_ret = msg->compressed_chunks[ctx->next_chunk_idx];
346                 *csize_ret = msg->compressed_chunk_sizes[ctx->next_chunk_idx];
347         } else {
348                 *cdata_ret = msg->uncompressed_chunks[ctx->next_chunk_idx];
349                 *csize_ret = msg->uncompressed_chunk_sizes[ctx->next_chunk_idx];
350         }
351         *usize_ret = msg->uncompressed_chunk_sizes[ctx->next_chunk_idx];
352
353         if (++ctx->next_chunk_idx == msg->num_filled_chunks) {
354                 list_del(&msg->submission_list);
355                 list_add_tail(&msg->list, &ctx->available_msgs);
356                 ctx->next_ready_msg = NULL;
357         }
358         return true;
359 }
360
361 int
362 new_parallel_chunk_compressor(int out_ctype, u32 out_chunk_size,
363                               unsigned num_threads, u64 max_memory,
364                               struct chunk_compressor **compressor_ret)
365 {
366         u64 approx_mem_required;
367         size_t chunks_per_msg;
368         size_t msgs_per_thread;
369         struct parallel_chunk_compressor *ctx;
370         unsigned i;
371         int ret;
372         unsigned desired_num_threads;
373
374         wimlib_assert(out_chunk_size > 0);
375
376         if (num_threads == 0)
377                 num_threads = get_available_cpus();
378
379         if (num_threads == 1)
380                 return -1;
381
382         if (max_memory == 0)
383                 max_memory = get_available_memory();
384
385         desired_num_threads = num_threads;
386
387         if (out_chunk_size < ((u32)1 << 23)) {
388                 /* Relatively small chunks.  Use 2 messages per thread, each
389                  * with at least 2 chunks.  Use more chunks per message if there
390                  * are lots of threads and/or the chunks are very small.  */
391                 chunks_per_msg = 2;
392                 chunks_per_msg += num_threads * (65536 / out_chunk_size) / 16;
393                 chunks_per_msg = max(chunks_per_msg, 2);
394                 chunks_per_msg = min(chunks_per_msg, MAX_CHUNKS_PER_MSG);
395                 msgs_per_thread = 2;
396         } else {
397                 /* Big chunks: Just have one buffer per thread --- more would
398                  * just waste memory.  */
399                 chunks_per_msg = 1;
400                 msgs_per_thread = 1;
401         }
402         for (;;) {
403                 approx_mem_required =
404                         (u64)chunks_per_msg *
405                         (u64)msgs_per_thread *
406                         (u64)num_threads *
407                         (u64)out_chunk_size
408                         + out_chunk_size
409                         + 1000000
410                         + num_threads * wimlib_get_compressor_needed_memory(out_ctype,
411                                                                             out_chunk_size,
412                                                                             0);
413                 if (approx_mem_required <= max_memory)
414                         break;
415
416                 if (chunks_per_msg > 1)
417                         chunks_per_msg--;
418                 else if (msgs_per_thread > 1)
419                         msgs_per_thread--;
420                 else if (num_threads > 1)
421                         num_threads--;
422                 else
423                         break;
424         }
425
426         if (num_threads < desired_num_threads) {
427                 WARNING("Wanted to use %u threads, but limiting to %u "
428                         "to fit in available memory!",
429                         desired_num_threads, num_threads);
430         }
431
432         if (num_threads == 1)
433                 return -2;
434
435         ret = WIMLIB_ERR_NOMEM;
436         ctx = CALLOC(1, sizeof(*ctx));
437         if (ctx == NULL)
438                 goto err;
439
440         ctx->base.out_ctype = out_ctype;
441         ctx->base.out_chunk_size = out_chunk_size;
442         ctx->base.destroy = parallel_chunk_compressor_destroy;
443         ctx->base.get_chunk_buffer = parallel_chunk_compressor_get_chunk_buffer;
444         ctx->base.signal_chunk_filled = parallel_chunk_compressor_signal_chunk_filled;
445         ctx->base.get_compression_result = parallel_chunk_compressor_get_compression_result;
446
447         ctx->num_thread_data = num_threads;
448
449         ret = message_queue_init(&ctx->chunks_to_compress_queue);
450         if (ret)
451                 goto err;
452
453         ret = message_queue_init(&ctx->compressed_chunks_queue);
454         if (ret)
455                 goto err;
456
457         ret = WIMLIB_ERR_NOMEM;
458         ctx->thread_data = CALLOC(num_threads, sizeof(ctx->thread_data[0]));
459         if (ctx->thread_data == NULL)
460                 goto err;
461
462         for (i = 0; i < num_threads; i++) {
463                 struct compressor_thread_data *dat;
464
465                 dat = &ctx->thread_data[i];
466
467                 dat->chunks_to_compress_queue = &ctx->chunks_to_compress_queue;
468                 dat->compressed_chunks_queue = &ctx->compressed_chunks_queue;
469                 ret = wimlib_create_compressor(out_ctype, out_chunk_size,
470                                                WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE,
471                                                &dat->compressor);
472                 if (ret)
473                         goto err;
474         }
475
476         for (ctx->num_started_threads = 0;
477              ctx->num_started_threads < num_threads;
478              ctx->num_started_threads++)
479         {
480                 ret = pthread_create(&ctx->thread_data[ctx->num_started_threads].thread,
481                                      NULL,
482                                      compressor_thread_proc,
483                                      &ctx->thread_data[ctx->num_started_threads]);
484                 if (ret) {
485                         errno = ret;
486                         WARNING_WITH_ERRNO("Failed to create compressor thread %u of %u",
487                                            ctx->num_started_threads + 1,
488                                            num_threads);
489                         ret = WIMLIB_ERR_NOMEM;
490                         if (ctx->num_started_threads >= 2)
491                                 break;
492                         goto err;
493                 }
494         }
495
496         ctx->base.num_threads = ctx->num_started_threads;
497
498         ret = WIMLIB_ERR_NOMEM;
499         ctx->num_messages = ctx->num_started_threads * msgs_per_thread;
500         ctx->msgs = allocate_messages(ctx->num_messages,
501                                       chunks_per_msg, out_chunk_size);
502         if (ctx->msgs == NULL)
503                 goto err;
504
505         INIT_LIST_HEAD(&ctx->available_msgs);
506         for (size_t i = 0; i < ctx->num_messages; i++)
507                 list_add_tail(&ctx->msgs[i].list, &ctx->available_msgs);
508
509         INIT_LIST_HEAD(&ctx->submitted_msgs);
510
511         *compressor_ret = &ctx->base;
512         return 0;
513
514 err:
515         parallel_chunk_compressor_destroy(&ctx->base);
516         return ret;
517 }
518
519 #endif /* ENABLE_MULTITHREADED_COMPRESSION */