]> wimlib.net Git - wimlib/blob - src/join.c
Fix capturing non-directories in source list mode
[wimlib] / src / join.c
1 /*
2  * join.c
3  *
4  * Join split WIMs (sometimes named as .swm files) together into one WIM.
5  */
6
7 /*
8  * Copyright (C) 2012, 2013 Eric Biggers
9  *
10  * This file is part of wimlib, a library for working with WIM files.
11  *
12  * wimlib is free software; you can redistribute it and/or modify it under the
13  * terms of the GNU General Public License as published by the Free
14  * Software Foundation; either version 3 of the License, or (at your option)
15  * any later version.
16  *
17  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
18  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19  * A PARTICULAR PURPOSE. See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with wimlib; if not, see http://www.gnu.org/licenses/.
24  */
25
26 #include "wimlib_internal.h"
27 #include "lookup_table.h"
28 #include "xml.h"
29 #include <stdlib.h>
30
31 static int
32 move_lte_to_table(struct wim_lookup_table_entry *lte, void *other_tab)
33 {
34         hlist_del(&lte->hash_list);
35         lookup_table_insert((struct wim_lookup_table*)other_tab, lte);
36         return 0;
37 }
38
39 static int
40 lookup_table_join(struct wim_lookup_table *table,
41                   struct wim_lookup_table *new)
42 {
43         for_lookup_table_entry(new, move_lte_to_table, table);
44         new->num_entries = 0;
45         return 0;
46 }
47
48 /*
49  * new_joined_lookup_table: - Join lookup tables from the parts of a split WIM.
50  *
51  * @w specifies the first part, while @additional_swms and @num_additional_swms
52  * specify an array of pointers to the WIMStruct's for additional split WIM parts.
53  *
54  * The lookup table entries are *moved* to the new table.
55  *
56  * On success, 0 is returned on a pointer to the joined lookup table is returned
57  * in @table_ret.
58  *
59  * The reason we join the lookup tables is so we only have to search one lookup
60  * table to find the location of a resource in the entire WIM.
61  */
62 int
63 new_joined_lookup_table(WIMStruct *w,
64                         WIMStruct **additional_swms,
65                         unsigned num_additional_swms,
66                         struct wim_lookup_table **table_ret)
67 {
68         struct wim_lookup_table *table;
69         int ret;
70         unsigned i;
71
72         table = new_lookup_table(9001);
73         if (!table)
74                 return WIMLIB_ERR_NOMEM;
75
76         if (w)
77                 lookup_table_join(table, w->lookup_table);
78
79         for (i = 0; i < num_additional_swms; i++) {
80                 ret = lookup_table_join(table, additional_swms[i]->lookup_table);
81                 if (ret != 0)
82                         goto out_free_table;
83         }
84         *table_ret = table;
85         return 0;
86 out_free_table:
87         free_lookup_table(table);
88         return ret;
89 }
90
91
92 static int
93 join_wims(WIMStruct **swms, unsigned num_swms,
94           WIMStruct *joined_wim, int write_flags,
95           wimlib_progress_func_t progress_func)
96 {
97         int ret;
98         unsigned i;
99         union wimlib_progress_info progress;
100         u64 total_bytes = 0;
101         u64 part_bytes;
102         u64 swm_part_sizes[num_swms];
103
104         /* Calculate total size of the streams in the split WIM parts. */
105         for (i = 0; i < num_swms; i++) {
106                 part_bytes = lookup_table_total_stream_size(swms[i]->lookup_table);
107                 swm_part_sizes[i] = part_bytes;
108                 total_bytes += part_bytes;
109         }
110
111         if (progress_func) {
112                 progress.join.total_bytes     = total_bytes;
113                 progress.join.total_parts     = swms[0]->hdr.total_parts;
114                 progress.join.completed_bytes = 0;
115                 progress.join.completed_parts = 0;
116                 progress_func(WIMLIB_PROGRESS_MSG_JOIN_STREAMS, &progress);
117         }
118
119         /* Write the non-metadata resources from each SWM part */
120         for (i = 0; i < num_swms; i++) {
121                 swms[i]->fp = tfopen(swms[i]->filename, T("rb"));
122                 if (!swms[i]->fp) {
123                         ERROR_WITH_ERRNO("Failed to reopen `%"TS"'",
124                                          swms[i]->filename);
125                         return WIMLIB_ERR_OPEN;
126                 }
127                 swms[i]->out_fp = joined_wim->out_fp;
128                 swms[i]->hdr.part_number = 1;
129
130                 ret = for_lookup_table_entry_pos_sorted(swms[i]->lookup_table,
131                                                         copy_resource,
132                                                         swms[i]);
133                 swms[i]->out_fp = NULL;
134
135                 if (i != 0) {
136                         fclose(swms[i]->fp);
137                         swms[i]->fp = NULL;
138                 }
139
140                 if (ret)
141                         return ret;
142
143                 if (progress_func) {
144                         progress.join.completed_bytes += swm_part_sizes[i];
145                         progress.join.completed_parts++;
146                         progress_func(WIMLIB_PROGRESS_MSG_JOIN_STREAMS, &progress);
147                 }
148         }
149
150         /* Copy the metadata resources from the first SWM part */
151         joined_wim->hdr.image_count = swms[0]->hdr.image_count;
152         for (i = 0; i < joined_wim->hdr.image_count; i++) {
153                 ret = copy_resource(swms[0]->image_metadata[i]->metadata_lte,
154                                     joined_wim);
155                 if (ret)
156                         return ret;
157         }
158
159         /* Write lookup table, XML data, and optional integrity table */
160         for (i = 0; i < num_swms; i++)
161                 lookup_table_join(joined_wim->lookup_table, swms[i]->lookup_table);
162
163         free_wim_info(joined_wim->wim_info);
164         joined_wim->wim_info = swms[0]->wim_info;
165         joined_wim->image_metadata = swms[0]->image_metadata;
166         ret = finish_write(joined_wim, WIMLIB_ALL_IMAGES, write_flags, progress_func);
167         joined_wim->wim_info = NULL;
168         joined_wim->image_metadata = NULL;
169         return ret;
170 }
171
172 static int
173 cmp_swms_by_part_number(const void *swm1, const void *swm2)
174 {
175         u16 partno_1 = (*(const WIMStruct**)swm1)->hdr.part_number;
176         u16 partno_2 = (*(const WIMStruct**)swm2)->hdr.part_number;
177         return (int)partno_1 - (int)partno_2;
178 }
179
180 /*
181  * Join a set of split WIMs into a stand-alone WIM.
182  */
183 WIMLIBAPI int
184 wimlib_join(const tchar * const *swm_names,
185             unsigned num_swms,
186             const tchar *output_path,
187             int swm_open_flags,
188             int wim_write_flags,
189             wimlib_progress_func_t progress_func)
190 {
191         int ret;
192         WIMStruct *joined_wim = NULL;
193         unsigned i;
194
195         swm_open_flags |= WIMLIB_OPEN_FLAG_SPLIT_OK;
196         wim_write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
197
198         if (num_swms < 1 || num_swms > 0xffff)
199                 return WIMLIB_ERR_INVALID_PARAM;
200
201         WIMStruct *swms[num_swms];
202         ZERO_ARRAY(swms);
203
204         for (i = 0; i < num_swms; i++) {
205                 ret = wimlib_open_wim(swm_names[i], swm_open_flags, &swms[i],
206                                       progress_func);
207                 if (ret)
208                         goto out_free_wims;
209
210                 /* Don't open all the parts at the same time, in case there are
211                  * a lot of them */
212                 fclose(swms[i]->fp);
213                 swms[i]->fp = NULL;
214         }
215
216         qsort(swms, num_swms, sizeof(swms[0]), cmp_swms_by_part_number);
217
218         ret = verify_swm_set(swms[0], &swms[1], num_swms - 1);
219         if (ret)
220                 goto out_free_wims;
221
222         ret = wimlib_create_new_wim(wimlib_get_compression_type(swms[0]),
223                                     &joined_wim);
224         if (ret)
225                 goto out_free_wims;
226
227         ret = begin_write(joined_wim, output_path, wim_write_flags);
228         if (ret)
229                 goto out_free_wims;
230         ret = join_wims(swms, num_swms, joined_wim, wim_write_flags,
231                         progress_func);
232 out_free_wims:
233         for (i = 0; i < num_swms; i++)
234                 wimlib_free(swms[i]);
235         wimlib_free(joined_wim);
236         return ret;
237 }