summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 15:43:12 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 15:43:12 (GMT)
commitd1180fc4e1545f98fddd9a51bb2140f04af0730d (patch)
tree3378f2a9d2ad790be32845b6ab711a6d2ad82cfa /Source/cmSystemTools.cxx
parent21c7454250982d2cc4abd9d5cfe916f3640dc1ee (diff)
downloadCMake-d1180fc4e1545f98fddd9a51bb2140f04af0730d.zip
CMake-d1180fc4e1545f98fddd9a51bb2140f04af0730d.tar.gz
CMake-d1180fc4e1545f98fddd9a51bb2140f04af0730d.tar.bz2
ENH: Add untaring support
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx52
1 files changed, 46 insertions, 6 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 2377afb..df80b9a 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1382,7 +1382,7 @@ bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdSt
TAR_VERBOSE
| 0) == -1)
{
- fprintf(stderr, "tar_open(): %s\n", strerror(errno));
+ cmSystemTools::Error("Problem with tar_open(): ", strerror(errno));
return false;
}
@@ -1395,9 +1395,10 @@ bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdSt
buf[sizeof(buf)-1] = 0;
if (tar_append_tree(t, buf, pathname) != 0)
{
- fprintf(stderr,
- "tar_append_tree(\"%s\", \"%s\"): %s\n", buf,
- pathname, strerror(errno));
+ cmOStringStream ostr;
+ ostr << "Problem with tar_append_tree(\"" << buf << "\", \"" << pathname << "\"): "
+ << strerror(errno);
+ cmSystemTools::Error(ostr.str().c_str());
tar_close(t);
return false;
}
@@ -1405,14 +1406,53 @@ bool cmSystemTools::CreateTar(const char* outFileName, const std::vector<cmStdSt
if (tar_append_eof(t) != 0)
{
- fprintf(stderr, "tar_append_eof(): %s\n", strerror(errno));
+ cmSystemTools::Error("Problem with tar_append_eof(): ", strerror(errno));
tar_close(t);
return false;
}
if (tar_close(t) != 0)
{
- fprintf(stderr, "tar_close(): %s\n", strerror(errno));
+ cmSystemTools::Error("Problem with tar_close(): ", strerror(errno));
+ return false;
+ }
+ return true;
+#else
+ return false;
+#endif
+}
+
+bool cmSystemTools::ExtractTar(const char* outFileName, const std::vector<cmStdString>& files)
+{
+#if defined(CMAKE_BUILD_WITH_CMAKE)
+ TAR *t;
+ // 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,
+ O_RDONLY
+#ifdef _WIN32
+ | O_BINARY
+#endif
+ , 0,
+ TAR_VERBOSE
+ | 0) == -1)
+ {
+ cmSystemTools::Error("Problem with tar_open(): ", strerror(errno));
+ return false;
+ }
+
+ if (tar_extract_all(t, 0) != 0)
+ {
+ cmSystemTools::Error("Problem with tar_extract_all(): ", strerror(errno));
+ return false;
+ }
+
+ if (tar_close(t) != 0)
+ {
+ cmSystemTools::Error("Problem with tar_close(): ", strerror(errno));
return false;
}
return true;