X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fapply.h;h=f36f0b3f0e188c89d6934a07d35b60598f53fd38;hp=2d706b4e47d6e5b9a46cf2158a2b00babcf9cd6c;hb=723d5dbc1705200082f640453f19233a386bc655;hpb=c48e2f84645abe34faec4994605d7a7b3b451672 diff --git a/include/wimlib/apply.h b/include/wimlib/apply.h index 2d706b4e..f36f0b3f 100644 --- a/include/wimlib/apply.h +++ b/include/wimlib/apply.h @@ -134,10 +134,13 @@ report_apply_error(struct apply_ctx *ctx, int error_code, const tchar *path) return report_error(ctx->progfunc, ctx->progctx, error_code, path); } -/* Returns any of the aliases of an inode that are being extracted. */ -#define inode_first_extraction_dentry(inode) \ - list_first_entry(&(inode)->i_extraction_aliases, \ - struct wim_dentry, d_extraction_alias_node) +#define inode_first_extraction_dentry(inode) \ + ((inode)->i_first_extraction_alias) + +#define inode_for_each_extraction_alias(dentry, inode) \ + for (dentry = inode_first_extraction_dentry(inode); \ + dentry != NULL; \ + dentry = dentry->d_next_extraction_alias) extern int extract_blob_list(struct apply_ctx *ctx, const struct read_blob_callbacks *cbs); @@ -195,14 +198,13 @@ struct apply_operations { * * 'd_extraction_name' and 'd_extraction_name_nchars' of each dentry * will be set to indicate the actual name with which the dentry should - * be extracted. This may or may not be the same as 'file_name'. - * TODO: really, the extraction backends should be responsible for - * generating 'd_extraction_name'. + * be extracted. This may or may not be the same as 'd_name'. TODO: + * really, the extraction backends should be responsible for generating + * 'd_extraction_name'. * - * Each dentry will refer to a valid inode in 'd_inode'. - * 'd_inode->i_extraction_aliases' will contain a list of just the - * dentries of that inode being extracted. This will be a (possibly - * nonproper) subset of the 'd_inode->i_dentry' list. + * Each dentry will refer to a valid inode in 'd_inode'. Each inode + * will contain a list of dentries of that inode being extracted; this + * list may be shorter than the inode's full dentry list. * * The blobs required to be extracted will already be prepared in * 'apply_ctx'. The extraction backend should call extract_blob_list() @@ -218,9 +220,10 @@ struct apply_operations { /* * Query whether the unnamed data stream of the specified file will be - * extracted as "externally backed". If so, the extraction backend is - * assumed to handle this separately, and the common extraction code - * will not register a usage of the unnamed data stream's blob. + * extracted as "externally backed" from the WIM archive itself. If so, + * then the extraction backend is assumed to handle this separately, and + * the common extraction code will not register a usage of the unnamed + * data stream's blob. * * This routine is optional. * @@ -229,7 +232,7 @@ struct apply_operations { * = 0 if the file will be externally backed. * > 0 (wimlib error code) if another error occurred. */ - int (*will_externally_back)(struct wim_dentry *dentry, struct apply_ctx *ctx); + int (*will_back_from_wim)(struct wim_dentry *dentry, struct apply_ctx *ctx); /* * Size of the backend-specific extraction context. It must contain