SynchronizableObject.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef SYNCHRONIZABLEOBJECT_H
  19. #define SYNCHRONIZABLEOBJECT_H
  20. #include "atmiBrokerCoreMacro.h"
  21. #include "SynchronizableObject.h"
  22. #include "log4cxx/logger.h"
  23. #include <ace/Thread.h>
  24. #include <ace/Synch.h>
  25. class BLACKTIE_CORE_DLL SynchronizableObject {
  26. public:
  27. SynchronizableObject();
  28. ~SynchronizableObject();
  29. /*
  30.  * This method acquires a lock on the object in order to allow users to perform
  31.  * execution of code in a thread safe manner.
  32.  */
  33. bool lock();
  34. /**
  35.  * This code will wait to be notified or for the specified timeout interval.
  36.  *
  37.  * lock MUST be called before executing this method
  38.  * unlock MUST be called after executing this method
  39.  */
  40. bool wait(long timeout);
  41. /**
  42.  * This code will wake up a single thread that is currently in the wait method.
  43.  *
  44.  * lock MUST be called before executing this method
  45.  * unlock MUST be called after executing this method
  46.  */
  47. bool notify();
  48. /**
  49.  * This code will wake up all threads that are in the wait method.
  50.  *
  51.  * lock MUST be called before executing this method
  52.  * unlock MUST be called after executing this method
  53.  */
  54. bool notifyAll();
  55. /**
  56.  * This method will release the lock held by the thread on this object
  57.  */
  58. bool unlock();
  59. private:
  60. static log4cxx::LoggerPtr logger;
  61. ACE_Thread_Mutex mutex;
  62. ACE_Condition<ACE_Thread_Mutex> cond;
  63. int waitingCount;
  64. int notifiedCount;
  65. };
  66. #endif