The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Archive::Unrar - is a procedural module that provides manipulation (extraction and listing of embedded information) of compressed RAR format archives by interfacing with the unrar.dll dynamic library for Windows.

SYNOPSIS

use Archive::Unrar;

        ## Usage :
        
        list_files_in_archive(  file=>$file, password=>$password );     
        list_files_in_archive(  file=>"c:\\input_dir\\test.rar",  password=>"mypassword");
        
        process_file( 
                     file=>$file, 
                     password=>$password,
                     output_dir_path=>$output_dir_path,
                     selection=>$selection,
                     callback=>$callback 
        );

                        
        ## Optionally, provide selection and callback : 
        ## If selection equals ERAR_MAP_DIR_YES then default to 'Map directory to Archive name'  
        ## If selection does not equal ERAR_MAP_DIR_YES or is undefined then default 'Do not Map directory to Archive name'  

        process_file(
                    "c:\\input_dir\\test.rar",
                    password=>"mypassword",
                    output_dir_path=>"c:\\outputdir",
                    selection=>ERAR_MAP_DIR_YES,
                    callback=>undef
        );

DESCRIPTION

Archive::Unrar is a procedural module that provides manipulation (extraction and listing of embedded information) of compressed RAR format archives by interfacing with the unrar.dll dynamic library for Windows.

By default it exports function "process_file" and some default error description constants :

  @EXPORT = qw(
               process_file 
               ERAR_BAD_DATA 
               ERAR_ECREATE 
               ERAR_MULTI_BRK 
               ERAR_ENCR_WRONG_PASS
               ERAR_WRONG_PASS
               ERAR_CHAIN_FOUND 
               ERAR_GENERIC_ALL_ERRORS
               ERAR_WRONG_FORMAT
               ERAR_MAP_DIR_YES
               ERAR_MISSING_PASSWORD
               ERAR_READ_HEADER
             ) ;

And it explicitly exports function "list_files_in_archive" and hash structure %donotprocess :

  @EXPORT_OK = qw(list_files_in_archive %donotprocess);

"list_files_in_archive" lists details embedded into the archive (files bundled into the .rar archive,archive's comments and header info) It takes two parameters;the first is the file name and the second is the password required by the archive. If no password is required then just pass undef or the empty string as the second parameter

"list_files_in_archive" returns $errorcode.If $errorcode is undefined it means that the function executed with no errors. If not, $errorcode will contain an error description. $errorcode=list_files_in_archive($file,$password); print "There was an error : $errorcode" if defined($errorcode);

"process_file" takes five parameters;the first is the file name, the second is the password required by the archive, the third is the directory that the file's contents will be extracted to. The fourth dictates if a directory will created (pass ERAR_MAP_DIR_YES) with the same as name as the archive (Map directory to archive name). The last one refers to a callback,optionally. If no password is required then just pass undef or the empty string

"process_file" returns $errorcode and $directory.If $errorcode is undefined it means that the function executed with no errors. If not, $errorcode will contain an error description. $directory is the directory where the archive was extracted to :

  ($errorcode,$directory) = 
             process_file( 
                          file=>$file, 
                          password=>$password,
                          output_dir_path=>$output_dir_path,
                          selection=>undef,
                          callback=>undef 
                 );

  print "There was an error : $errorcode" if defined($errorcode);

The callback parameter is invoked inside the loop that does the file processing :

       $callback->(@_) if defined($callback)
           

This gives the option to make the module call an user defined function

PREREQUISITES

Must have unrar.dll in %SystemRoot%\System32 ($ENV{"SYSTEMROOT"}."\\system32")

Get UnRAR dynamic library for Windows software developers from http://www.rarlab.com/rar/UnRARDLL.exe This package includes the dll,samples,dll internals and error description

After downloading place dll in %SystemRoot%\System32 directory ($ENV{"SYSTEMROOT"}."\\system32")

Module comes with installation test (in "mytest.pl") that checks for dll's existence

TEST AFTER INSTALLATION

run "mytest.pl" script (found inside module's distribution "test" directory) as :

perl mytest.pl

the script runs a test that checks for "unrar.dll" existence in the %SystemRoot%\System32 directory ($ENV{"SYSTEMROOT"}."\\system32") and also extracts some sample archives

EXPORT

process_file function and most error description constants, by default. list_files_in_archive and %donotprocess explicitly.

AUTHOR

Nikos Vaggalis <nikosv@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2009-2011 by Nikos Vaggalis

This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License