diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-14 18:42:13 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-14 18:42:13 +0000 |
commit | 3b0cc78c600852c824e005e1d63df17994ba483c (patch) | |
tree | cbe031c80fd6cf2c687234fe2797b281ef3e1158 | |
parent | 5761805d277f0dc6707b086602c76fd8ae4d2935 (diff) | |
download | external_llvm-3b0cc78c600852c824e005e1d63df17994ba483c.zip external_llvm-3b0cc78c600852c824e005e1d63df17994ba483c.tar.gz external_llvm-3b0cc78c600852c824e005e1d63df17994ba483c.tar.bz2 |
Add the getMagicNumber method.
Patch contributed by Henrik Bach. Thanks Henrik!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18933 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/System/Win32/Path.cpp | 19 | ||||
-rw-r--r-- | lib/System/Win32/Path.inc | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/lib/System/Win32/Path.cpp b/lib/System/Win32/Path.cpp index 88e20cd..f6e4c3b 100644 --- a/lib/System/Win32/Path.cpp +++ b/lib/System/Win32/Path.cpp @@ -565,6 +565,25 @@ Path::destroyFile() { return true; } +bool Path::getMagicNumber(std::string& Magic, unsigned len) const { + if (!isFile()) + return false; + assert(len < 1024 && "Request for magic string too long"); + char* buf = (char*) alloca(1 + len); + std::ofstream ofs(path.c_str(),std::ofstream::in); + if (!ofs.is_open()) + return false; + std::ifstream ifs(path.c_str()); + if (!ifs.is_open()) + return false; + ifs.read(buf, len); + ofs.close(); + ifs.close(); + buf[len] = '\0'; + Magic = buf; + return true; +} + } } diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 88e20cd..f6e4c3b 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -565,6 +565,25 @@ Path::destroyFile() { return true; } +bool Path::getMagicNumber(std::string& Magic, unsigned len) const { + if (!isFile()) + return false; + assert(len < 1024 && "Request for magic string too long"); + char* buf = (char*) alloca(1 + len); + std::ofstream ofs(path.c_str(),std::ofstream::in); + if (!ofs.is_open()) + return false; + std::ifstream ifs(path.c_str()); + if (!ifs.is_open()) + return false; + ifs.read(buf, len); + ofs.close(); + ifs.close(); + buf[len] = '\0'; + Magic = buf; + return true; +} + } } |