PageRenderTime 26ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/indra/llvfs/lldirguard.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 72 lines | 39 code | 7 blank | 26 comment | 1 complexity | 41528a3353625b1e1c1cadbca2ce8707 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file lldirguard.h
  3. * @brief Protect working directory from being changed in scope.
  4. *
  5. * $LicenseInfo:firstyear=2009&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_DIRGUARD_H
  27. #define LL_DIRGUARD_H
  28. #include "linden_common.h"
  29. #include "llerror.h"
  30. #if LL_WINDOWS
  31. class LLDirectoryGuard
  32. {
  33. public:
  34. LLDirectoryGuard()
  35. {
  36. mOrigDirLen = GetCurrentDirectory(MAX_PATH, mOrigDir);
  37. }
  38. ~LLDirectoryGuard()
  39. {
  40. mFinalDirLen = GetCurrentDirectory(MAX_PATH, mFinalDir);
  41. if ((mOrigDirLen!=mFinalDirLen) ||
  42. (wcsncmp(mOrigDir,mFinalDir,mOrigDirLen)!=0))
  43. {
  44. // Dir has changed
  45. std::string mOrigDirUtf8 = utf16str_to_utf8str(llutf16string(mOrigDir));
  46. std::string mFinalDirUtf8 = utf16str_to_utf8str(llutf16string(mFinalDir));
  47. llinfos << "Resetting working dir from " << mFinalDirUtf8 << " to " << mOrigDirUtf8 << llendl;
  48. SetCurrentDirectory(mOrigDir);
  49. }
  50. }
  51. private:
  52. TCHAR mOrigDir[MAX_PATH];
  53. DWORD mOrigDirLen;
  54. TCHAR mFinalDir[MAX_PATH];
  55. DWORD mFinalDirLen;
  56. };
  57. #else // No-op outside Windows.
  58. class LLDirectoryGuard
  59. {
  60. public:
  61. LLDirectoryGuard() {}
  62. ~LLDirectoryGuard() {}
  63. };
  64. #endif
  65. #endif