OutputStream.cpp.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:2k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  *  OpenKore C++ Standard Library
  3.  *  Copyright (C) 2006  VCL
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Lesser General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Lesser General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Lesser General Public
  16.  *  License along with this library; if not, write to the Free Software
  17.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18.  *  MA  02110-1301  USA
  19.  */
  20. #include "../Threading/MutexLocker.h"
  21. #include "OutputStream.h"
  22. namespace OSL {
  23. namespace {
  24. /**
  25.  * @internal
  26.  * A thread-safe wrapper class around an OutputStream,
  27.  * used to implement OutputStream::createThreadSafe()
  28.  */
  29. class ThreadSafeOutputStream: public OutputStream {
  30. private:
  31. Mutex mutex;
  32. OutputStream *wrapped;
  33. public:
  34. ThreadSafeOutputStream(OutputStream *wrapped) {
  35. this->wrapped = wrapped;
  36. wrapped->ref();
  37. }
  38. ~ThreadSafeOutputStream() {
  39. wrapped->unref();
  40. }
  41. virtual void
  42. close() {
  43. MutexLocker lock(mutex);
  44. wrapped->close();
  45. }
  46. virtual void
  47. flush() throw(IOException) {
  48. MutexLocker lock(mutex);
  49. wrapped->flush();
  50. }
  51. virtual unsigned int
  52. write(const char *data, unsigned int size) throw(IOException) {
  53. MutexLocker lock(mutex);
  54. return wrapped->write(data, size);
  55. }
  56. };
  57. }
  58. OutputStream *
  59. OutputStream::createThreadSafe() throw() {
  60. return new ThreadSafeOutputStream(this);
  61. }
  62. }