]> wimlib.net Git - wimlib/commitdiff
Stream writing cleanups
authorEric Biggers <ebiggers3@gmail.com>
Sun, 16 Dec 2012 17:58:19 +0000 (11:58 -0600)
committerEric Biggers <ebiggers3@gmail.com>
Sun, 16 Dec 2012 17:58:19 +0000 (11:58 -0600)
src/modify.c
src/write.c

index d5553dc8a2ba1838608f0df89fa2d897724a84fe..2697a3d7038570a8b8e23a59286b5af75c1458e2 100644 (file)
@@ -685,10 +685,12 @@ static int lte_fix_refcnt(struct lookup_table_entry *lte, void *ctr)
 
 /* Ideally this would be unnecessary... however, the WIMs for Windows 8 are
  * screwed up because some lookup table entries are referenced more times than
- * their stated reference counts.  So theoretically, if we do the delete all the
+ * their stated reference counts.  So theoretically, if we delete all the
  * references to a stream and then remove it, it might still be referenced
- * somewhere else... So, work around this problem by looking at ALL the images
- * to re-calculate the reference count of EVERY lookup table entry. */
+ * somewhere else, making a file be missing from the WIM... So, work around this
+ * problem by looking at ALL the images to re-calculate the reference count of
+ * EVERY lookup table entry.  This only absolutely has to be done before an image
+ * is deleted or before an image is mounted read-write. */
 int wim_run_full_verifications(WIMStruct *w)
 {
        int ret;
index 1a5b50ec6180eba3c28b087d019f7d18a2af96e5..3afa49872b40ef13308a4e79838e1063d7c3225f 100644 (file)
@@ -549,6 +549,8 @@ out:
 }
 
 #ifdef ENABLE_MULTITHREADED_COMPRESSION
+
+/* Blocking shared queue (solves the producer-consumer problem) */
 struct shared_queue {
        unsigned size;
        unsigned front;
@@ -562,6 +564,7 @@ struct shared_queue {
 
 static int shared_queue_init(struct shared_queue *q, unsigned size)
 {
+       wimlib_assert(size != 0);
        q->array = CALLOC(sizeof(q->array[0]), size);
        if (!q->array)
                return WIMLIB_ERR_NOMEM;
@@ -653,6 +656,11 @@ static void compress_chunks(struct message *msg, compress_func_t compress)
        }
 }
 
+/* Compressor thread routine.  This is a lot simpler than the main thread
+ * routine: just repeatedly get a group of chunks from the
+ * res_to_compress_queue, compress them, and put them in the
+ * compressed_res_queue.  A NULL pointer indicates that the thread should stop.
+ * */
 static void *compressor_thread_proc(void *arg)
 {
        struct compressor_thread_params *params = arg;
@@ -762,19 +770,25 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                                   int out_ctype,
                                   struct shared_queue *res_to_compress_queue,
                                   struct shared_queue *compressed_res_queue,
-                                  size_t queue_size,
+                                  size_t num_messages,
                                   int write_flags,
                                   wimlib_progress_func_t progress_func,
                                   union wimlib_progress_info *progress)
 {
        int ret;
-
-       struct message msgs[queue_size];
-       ZERO_ARRAY(msgs);
+       struct chunk_table *cur_chunk_tab = NULL;
+       struct message *msgs = CALLOC(num_messages, sizeof(struct message));
+       struct lookup_table_entry *next_lte = NULL;
 
        // Initially, all the messages are available to use.
        LIST_HEAD(available_msgs);
-       for (size_t i = 0; i < ARRAY_LEN(msgs); i++)
+
+       if (!msgs) {
+               ret = WIMLIB_ERR_NOMEM;
+               goto out;
+       }
+
+       for (size_t i = 0; i < num_messages; i++)
                list_add(&msgs[i].list, &available_msgs);
 
        // outstanding_resources is the list of resources that currently have
@@ -794,7 +808,6 @@ static int main_writer_thread_proc(struct list_head *stream_list,
        //
        LIST_HEAD(outstanding_resources);
        struct list_head *next_resource = stream_list->next;
-       struct lookup_table_entry *next_lte = NULL;
        u64 next_chunk = 0;
        u64 next_num_chunks = 0;
 
@@ -807,7 +820,6 @@ static int main_writer_thread_proc(struct list_head *stream_list,
        LIST_HEAD(my_resources);
 
        struct lookup_table_entry *cur_lte = NULL;
-       struct chunk_table *cur_chunk_tab = NULL;
        struct message *msg;
 
 #ifdef WITH_NTFS_3G
@@ -816,11 +828,11 @@ static int main_writer_thread_proc(struct list_head *stream_list,
 
        DEBUG("Initializing buffers for uncompressed "
              "and compressed data (%zu bytes needed)",
-             queue_size * MAX_CHUNKS_PER_MSG * WIM_CHUNK_SIZE * 2);
+             num_messages * MAX_CHUNKS_PER_MSG * WIM_CHUNK_SIZE * 2);
 
        // Pre-allocate all the buffers that will be needed to do the chunk
        // compression.
-       for (size_t i = 0; i < ARRAY_LEN(msgs); i++) {
+       for (size_t i = 0; i < num_messages; i++) {
                for (size_t j = 0; j < MAX_CHUNKS_PER_MSG; j++) {
                        msgs[i].compressed_chunks[j] = MALLOC(WIM_CHUNK_SIZE);
 
@@ -832,8 +844,6 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                        if (msgs[i].compressed_chunks[j] == NULL ||
                            msgs[i].uncompressed_chunks[j] == NULL)
                        {
-                               ERROR("Could not allocate enough memory for "
-                                     "multi-threaded compression");
                                ret = WIMLIB_ERR_NOMEM;
                                goto out;
                        }
@@ -893,6 +903,8 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                                // list, or we get to a resource that needs compression.
                                while (1) {
                                        if (next_resource == stream_list) {
+                                               // No more resources to send for
+                                               // compression
                                                next_lte = NULL;
                                                break;
                                        }
@@ -921,15 +933,20 @@ static int main_writer_thread_proc(struct list_head *stream_list,
 
                                                if (ret != 0)
                                                        goto out;
-                                               if (cur_lte == NULL)
+                                               if (cur_lte == NULL) {
+                                                       // Set cur_lte for the
+                                                       // first time
                                                        cur_lte = next_lte;
+                                               }
                                                break;
                                        }
                                }
                        }
 
-                       if (next_lte == NULL)
+                       if (next_lte == NULL) {
+                               // No more resources to send for compression
                                break;
+                       }
 
                        // Get a message from the available messages
                        // list
@@ -956,13 +973,11 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                                // message so that a compressor thread can
                                // compress it.
 
-                               if (next_chunk == next_num_chunks - 1 &&
-                                    wim_resource_size(next_lte) % WIM_CHUNK_SIZE != 0)
-                               {
-                                       size = wim_resource_size(next_lte) % WIM_CHUNK_SIZE;
+                               if (next_chunk == next_num_chunks - 1) {
+                                       size = MODULO_NONZERO(wim_resource_size(next_lte),
+                                                             WIM_CHUNK_SIZE);
                                }
 
-
                                DEBUG2("Read resource (size=%u, offset=%zu)",
                                      size, next_chunk * WIM_CHUNK_SIZE);
 
@@ -1005,10 +1020,10 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                // message around until all earlier chunks are received.
                //
                // Otherwise, write all the chunks we can.
-               while (cur_lte != NULL && !list_empty(&cur_lte->msg_list)
-                       && (msg = container_of(cur_lte->msg_list.next,
-                                              struct message,
-                                              list))->complete)
+               while (cur_lte != NULL &&
+                      (msg = container_of(cur_lte->msg_list.next,
+                                          struct message,
+                                          list))->complete)
                {
                        DEBUG2("Complete msg (begin_chunk=%"PRIu64")", msg->begin_chunk);
                        if (msg->begin_chunk == 0) {
@@ -1040,8 +1055,8 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                        // now.
                        list_add(&msg->list, &available_msgs);
 
-                       // Was this the last chunk of the stream?  If so,
-                       // finish it.
+                       // Was this the last chunk of the stream?  If so, finish
+                       // it.
                        if (list_empty(&cur_lte->msg_list) &&
                            msg->begin_chunk + msg->num_chunks == cur_chunk_tab->num_chunks)
                        {
@@ -1094,21 +1109,12 @@ static int main_writer_thread_proc(struct list_head *stream_list,
                                struct list_head *next = cur_lte->staging_list.next;
                                list_del(&cur_lte->staging_list);
 
-                               if (next == &outstanding_resources) {
-                                       if (next_lte == NULL) {
-                                               DEBUG("No more outstanding resources");
-                                               ret = 0;
-                                               goto out;
-                                       } else {
-                                               DEBUG("No more outstanding resources---"
-                                                     "but still more to compress!");
-                                               cur_lte = NULL;
-                                       }
-                               } else {
+                               if (next == &outstanding_resources)
+                                       cur_lte = NULL;
+                               else
                                        cur_lte = container_of(cur_lte->staging_list.next,
                                                               struct lookup_table_entry,
                                                               staging_list);
-                               }
 
                                // Since we just finished writing a stream,
                                // write any streams that have been added to the
@@ -1130,6 +1136,11 @@ static int main_writer_thread_proc(struct list_head *stream_list,
        }
 
 out:
+       if (ret == WIMLIB_ERR_NOMEM) {
+               ERROR("Could not allocate enough memory for "
+                     "multi-threaded compression");
+       }
+
        if (next_lte) {
 #ifdef WITH_NTFS_3G
                end_wim_resource_read(next_lte, ni);
@@ -1143,28 +1154,32 @@ out:
                                           out_ctype, progress_func,
                                           progress, 0);
        } else {
-               size_t num_available_msgs = 0;
-               struct list_head *cur;
+               if (msgs) {
+                       size_t num_available_msgs = 0;
+                       struct list_head *cur;
 
-               list_for_each(cur, &available_msgs) {
-                       num_available_msgs++;
-               }
+                       list_for_each(cur, &available_msgs) {
+                               num_available_msgs++;
+                       }
 
-               while (num_available_msgs < ARRAY_LEN(msgs)) {
-                       shared_queue_get(compressed_res_queue);
-                       num_available_msgs++;
+                       while (num_available_msgs < num_messages) {
+                               shared_queue_get(compressed_res_queue);
+                               num_available_msgs++;
+                       }
                }
        }
 
-       for (size_t i = 0; i < ARRAY_LEN(msgs); i++) {
-               for (size_t j = 0; j < MAX_CHUNKS_PER_MSG; j++) {
-                       FREE(msgs[i].compressed_chunks[j]);
-                       FREE(msgs[i].uncompressed_chunks[j]);
+       if (msgs) {
+               for (size_t i = 0; i < num_messages; i++) {
+                       for (size_t j = 0; j < MAX_CHUNKS_PER_MSG; j++) {
+                               FREE(msgs[i].compressed_chunks[j]);
+                               FREE(msgs[i].uncompressed_chunks[j]);
+                       }
                }
+               FREE(msgs);
        }
 
-       if (cur_chunk_tab != NULL)
-               FREE(cur_chunk_tab);
+       FREE(cur_chunk_tab);
        return ret;
 }
 
@@ -1214,6 +1229,10 @@ static int write_stream_list_parallel(struct list_head *stream_list,
        params.compress = get_compress_func(out_ctype);
 
        compressor_threads = MALLOC(num_threads * sizeof(pthread_t));
+       if (!compressor_threads) {
+               ret = WIMLIB_ERR_NOMEM;
+               goto out_destroy_compressed_res_queue;
+       }
 
        for (unsigned i = 0; i < num_threads; i++) {
                DEBUG("pthread_create thread %u", i);
@@ -1251,6 +1270,7 @@ out_join:
                }
        }
        FREE(compressor_threads);
+out_destroy_compressed_res_queue:
        shared_queue_destroy(&compressed_res_queue);
 out_destroy_res_to_compress_queue:
        shared_queue_destroy(&res_to_compress_queue);
@@ -1282,7 +1302,6 @@ static int write_stream_list(struct list_head *stream_list, FILE *out_fp,
        u64 total_bytes = 0;
        u64 total_compression_bytes = 0;
        union wimlib_progress_info progress;
-       int ret;
 
        list_for_each_entry(lte, stream_list, staging_list) {
                num_streams++;
@@ -1301,33 +1320,23 @@ static int write_stream_list(struct list_head *stream_list, FILE *out_fp,
        progress.write_streams.num_threads       = num_threads;
        progress.write_streams.compression_type  = out_ctype;
 
-       if (num_streams == 0) {
-               ret = 0;
-               goto out;
-       }
-
 #ifdef ENABLE_MULTITHREADED_COMPRESSION
-       if (total_compression_bytes >= 1000000 && num_threads != 1) {
-               ret = write_stream_list_parallel(stream_list,
-                                                out_fp,
-                                                out_ctype,
-                                                write_flags,
-                                                num_threads,
-                                                progress_func,
-                                                &progress);
-       }
+       if (total_compression_bytes >= 1000000 && num_threads != 1)
+               return write_stream_list_parallel(stream_list,
+                                                 out_fp,
+                                                 out_ctype,
+                                                 write_flags,
+                                                 num_threads,
+                                                 progress_func,
+                                                 &progress);
        else
 #endif
-       {
-               ret = write_stream_list_serial(stream_list,
-                                              out_fp,
-                                              out_ctype,
-                                              write_flags,
-                                              progress_func,
-                                              &progress);
-       }
-out:
-       return ret;
+               return write_stream_list_serial(stream_list,
+                                               out_fp,
+                                               out_ctype,
+                                               write_flags,
+                                               progress_func,
+                                               &progress);
 }
 
 
@@ -1653,13 +1662,12 @@ static int lte_overwrite_prepare(struct lookup_table_entry *lte,
 
 static int check_resource_offset(struct lookup_table_entry *lte, void *arg)
 {
-       if (lte->out_refcnt > lte->refcnt) {
-               WARNING("Detected invalid stream reference count. "
-                       "Forcing re-build of entire WIM.");
-               return WIMLIB_ERR_RESOURCE_ORDER;
-       } else if (lte->out_refcnt < lte->refcnt) {
+       wimlib_assert(lte->out_refcnt <= lte->refcnt);
+       if (lte->out_refcnt < lte->refcnt) {
                off_t end_offset = *(u64*)arg;
-               if (lte->resource_entry.offset + lte->resource_entry.size > end_offset) {
+               if (lte->resource_entry.offset +
+                   lte->resource_entry.size > end_offset)
+               {
                        ERROR("The following resource is after the XML data:");
                        print_lookup_table_entry(lte);
                        return WIMLIB_ERR_RESOURCE_ORDER;
@@ -1670,10 +1678,15 @@ static int check_resource_offset(struct lookup_table_entry *lte, void *arg)
 
 static int find_new_streams(struct lookup_table_entry *lte, void *arg)
 {
-       if (lte->out_refcnt == lte->refcnt)
+       if (lte->out_refcnt == lte->refcnt) {
+               /* Newly added stream that is only referenced in the modified
+                * images.  Append it to the list of streams to write. */
                list_add(&lte->staging_list, (struct list_head*)arg);
-       else
+       } else {
+               /* Not a newly added stream.  But set out_refcnt to the full
+                * refcnt so that it's written correctly. */
                lte->out_refcnt = lte->refcnt;
+       }
        return 0;
 }