ListTmpl.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #ifndef __ListTmpl_H_
  2. #define __ListTmpl_H_
  3. #include <list>
  4. #include "Lock.h"
  5. template<class T>
  6. class ListTmpl
  7. {
  8. public:
  9. ListTmpl();
  10. virtual ~ListTmpl();
  11. virtual bool Push_Back(T* t);
  12. virtual T* Pop_Front();
  13. virtual T* Pop_Back();
  14. virtual int Size();
  15. virtual void Remove(T* t);
  16. virtual void Release() = 0;
  17. protected:
  18. std::list<T*> m_list;
  19. CLock m_ts;
  20. };
  21. template<class T>
  22. ListTmpl<T>::ListTmpl(){}
  23. template<class T>
  24. ListTmpl<T>::~ListTmpl(){}
  25. template<class T>
  26. bool ListTmpl<T>::Push_Back(T* t)
  27. {
  28. CAutoLock autots(&m_ts);
  29. m_list.push_back(t);
  30. return true;
  31. }
  32. template<class T>
  33. T* ListTmpl<T>::Pop_Front()
  34. {
  35. CAutoLock autots(&m_ts);
  36. T* t = NULL;
  37. if(m_list.empty())
  38. return t;
  39. t = m_list.front();
  40. m_list.pop_front();
  41. return t;
  42. }
  43. template<class T>
  44. T* ListTmpl<T>::Pop_Back()
  45. {
  46. CAutoLock autots(&m_ts);
  47. T* t = NULL;
  48. if(m_list.empty())
  49. return t;
  50. t = m_list.back();
  51. m_list.pop_back();
  52. return t;
  53. }
  54. template<class T>
  55. int ListTmpl<T>::Size()
  56. {
  57. CAutoLock autots(&m_ts);
  58. return m_list.size();
  59. }
  60. template<class T>
  61. void ListTmpl<T>::Remove(T* t)
  62. {
  63. CAutoLock autots(&m_ts);
  64. m_list.remove(t);
  65. }
  66. #endif