For PR351:
authorReid Spencer <rspencer@reidspencer.com>
Wed, 22 Dec 2004 10:24:43 +0000 (10:24 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 22 Dec 2004 10:24:43 +0000 (10:24 +0000)
Move non-portable FDHandle class to its only user: lib/Debugger

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19106 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/FileUtilities.h
lib/Support/FileUtilities.cpp

index 6459cc9ad76a1339f5665efb73b38155ea00f63a..deeb758b020c261537ae9b7a390d6d81ec0907fc 100644 (file)
@@ -34,44 +34,6 @@ bool DiffFiles(const std::string &FileA, const std::string &FileB,
 ///
 void MoveFileOverIfUpdated(const std::string &New, const std::string &Old);
  
-/// FDHandle - Simple handle class to make sure a file descriptor gets closed
-/// when the object is destroyed.  This handle acts similarly to an
-/// std::auto_ptr, in that the copy constructor and assignment operators
-/// transfer ownership of the handle.  This means that FDHandle's do not have
-/// value semantics.
-///
-class FDHandle {
-  int FD;
-public:
-  FDHandle() : FD(-1) {}
-  FDHandle(int fd) : FD(fd) {}
-  FDHandle(FDHandle &RHS) : FD(RHS.FD) {
-    RHS.FD = -1;       // Transfer ownership
-  }
-
-  ~FDHandle() throw();
-
-  /// get - Get the current file descriptor, without releasing ownership of it.
-  int get() const { return FD; }
-  operator int() const { return FD; }
-
-  FDHandle &operator=(int fd) throw();
-
-  FDHandle &operator=(FDHandle &RHS) {
-    int fd = RHS.FD;
-    RHS.FD = -1;       // Transfer ownership
-    return operator=(fd);
-  }
-
-  /// release - Take ownership of the file descriptor away from the FDHandle
-  /// object, so that the file is not closed when the FDHandle is destroyed.
-  int release() {
-    int Ret = FD;
-    FD = -1;
-    return Ret;
-  }
-};
-
   /// FileRemover - This class is a simple object meant to be stack allocated.
   /// If an exception is thrown from a region, the object removes the filename
   /// specified (if deleteIt is true).
index 8f4917bae9aef126fcc0e61fb7a977c1d9ba2072..5255df64e5fe0a64235a10c9e81ec9d47ab4af73 100644 (file)
@@ -63,17 +63,3 @@ void llvm::MoveFileOverIfUpdated(const std::string &New,
     std::remove(New.c_str());
   }  
 }
-
-//===----------------------------------------------------------------------===//
-// FDHandle class implementation
-//
-
-FDHandle::~FDHandle() throw() {
-  if (FD != -1) close(FD);
-}
-
-FDHandle &FDHandle::operator=(int fd) throw() {
-  if (FD != -1) close(FD);
-  FD = fd;
-  return *this;
-}