diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-29 17:19:13 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-29 17:19:13 (GMT) |
commit | abe4fd77fc0e85c1e6ffaa25941414c83b090ea7 (patch) | |
tree | 468f9103e85ab601b62d821a4323b8c3f7585bf2 /Source/cmSystemTools.cxx | |
parent | 64b5118c78e4e56a7967166b3df2e1bfe73fa36b (diff) | |
download | CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.zip CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.tar.gz CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.tar.bz2 |
ENH: Make the syntax more line tar
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 130 |
1 files changed, 124 insertions, 6 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index df80b9a..91af585 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1363,23 +1363,72 @@ bool cmSystemTools::IsPathToFramework(const char* path) # include <libtar/libtar.h> # include <memory> // auto_ptr # include <fcntl.h> +# include <cmzlib/zlib.h> + +static int gzopen_frontend(char *pathname, int oflags, int mode) +{ + char *gzoflags; + gzFile gzf; + int fd; + + switch (oflags & O_ACCMODE) + { + case O_WRONLY: + gzoflags = "wb"; + break; + case O_RDONLY: + gzoflags = "rb"; + break; + default: + case O_RDWR: + errno = EINVAL; + return -1; + } + + fd = open(pathname, oflags, mode); + if (fd == -1) + { + return -1; + } + +#if !defined(_WIN32) || defined(__CYGWIN__) + if ((oflags & O_CREAT) && fchmod(fd, mode)) + { + return -1; + } +#endif + + gzf = gzdopen(fd, gzoflags); + if (!gzf) + { + errno = ENOMEM; + return -1; + } + + return (int)gzf; +} + #endif -bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdString>& files) +bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdString>& files, bool gzip, bool verbose) { #if defined(CMAKE_BUILD_WITH_CMAKE) TAR *t; char buf[TAR_MAXPATHLEN]; char pathname[TAR_MAXPATHLEN]; + tartype_t gztype = { (openfunc_t) gzopen_frontend, (closefunc_t) gzclose, + (readfunc_t) gzread, (writefunc_t) gzwrite + }; + // Ok, this libtar is not const safe. for now use auto_ptr hack char* realName = new char[ strlen(outFileName) + 1 ]; std::auto_ptr<char> realNamePtr(realName); strcpy(realName, outFileName); if (tar_open(&t, realName, - NULL, + (gzip? &gztype : NULL), O_WRONLY | O_CREAT, 0644, - TAR_VERBOSE + (verbose?TAR_VERBOSE:0) | 0) == -1) { cmSystemTools::Error("Problem with tar_open(): ", strerror(errno)); @@ -1422,22 +1471,28 @@ bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdSt #endif } -bool cmSystemTools::ExtractTar(const char* outFileName, const std::vector<cmStdString>& files) +bool cmSystemTools::ExtractTar(const char* outFileName, const std::vector<cmStdString>& files, bool gzip, bool verbose) { + (void)files; #if defined(CMAKE_BUILD_WITH_CMAKE) TAR *t; + + tartype_t gztype = { (openfunc_t) gzopen_frontend, (closefunc_t) gzclose, + (readfunc_t) gzread, (writefunc_t) gzwrite + }; + // Ok, this libtar is not const safe. for now use auto_ptr hack char* realName = new char[ strlen(outFileName) + 1 ]; std::auto_ptr<char> realNamePtr(realName); strcpy(realName, outFileName); if (tar_open(&t, realName, - NULL, + (gzip? &gztype : NULL), O_RDONLY #ifdef _WIN32 | O_BINARY #endif , 0, - TAR_VERBOSE + (verbose?TAR_VERBOSE:0) | 0) == -1) { cmSystemTools::Error("Problem with tar_open(): ", strerror(errno)); @@ -1460,3 +1515,66 @@ bool cmSystemTools::ExtractTar(const char* outFileName, const std::vector<cmStdS return false; #endif } + +bool cmSystemTools::ListTar(const char* outFileName, std::vector<cmStdString>& files, bool gzip, bool verbose) +{ +#if defined(CMAKE_BUILD_WITH_CMAKE) + TAR *t; + + tartype_t gztype = { (openfunc_t) gzopen_frontend, (closefunc_t) gzclose, + (readfunc_t) gzread, (writefunc_t) gzwrite + }; + + // Ok, this libtar is not const safe. for now use auto_ptr hack + char* realName = new char[ strlen(outFileName) + 1 ]; + std::auto_ptr<char> realNamePtr(realName); + strcpy(realName, outFileName); + if (tar_open(&t, realName, + (gzip? &gztype : NULL), + O_RDONLY +#ifdef _WIN32 + | O_BINARY +#endif + , 0, + (verbose?TAR_VERBOSE:0) + | 0) == -1) + { + cmSystemTools::Error("Problem with tar_open(): ", strerror(errno)); + return false; + } + + int i; + while ((i = th_read(t)) == 0) + { + const char* filename = th_get_pathname(t); + files.push_back(filename); + + if ( verbose ) + { + th_print_long_ls(t); + } + else + { + std::cout << filename << std::endl; + } + +#ifdef DEBUG + th_print(t); +#endif + if (TH_ISREG(t) && tar_skip_regfile(t) != 0) + { + cmSystemTools::Error("Problem with tar_skip_regfile(): ", strerror(errno)); + return false; + } + } + + if (tar_close(t) != 0) + { + cmSystemTools::Error("Problem with tar_close(): ", strerror(errno)); + return false; + } + return true; +#else + return false; +#endif +} |