root/juggler/tags/1.0.5/Sync/vjGuardedQueue.h

Revision 2828, 2.5 kB (checked in by patrickh, 8 years ago)

Updated the copyright to what ISU's lawyers decided they want now.
The vast majority of this was done using Kevin's auto-copyright.pl script
which definitely made this easier. All the copyright blocks now have
begin and end tags so that if and when we have to update the copyright
information again, it will be even simpler.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*************** <auto-copyright.pl BEGIN do not edit this line> **************
2  *
3  * VR Juggler is (C) Copyright 1998, 1999, 2000 by Iowa State University
4  *
5  * Original Authors:
6  *   Allen Bierbaum, Christopher Just,
7  *   Patrick Hartling, Kevin Meinert,
8  *   Carolina Cruz-Neira, Albert Baker
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  *
25  * -----------------------------------------------------------------
26  * File:          $RCSfile$
27  * Date modified: $Date$
28  * Version:       $Revision$
29  * -----------------------------------------------------------------
30  *
31  *************** <auto-copyright.pl END do not edit this line> ***************/
32
33
34 #ifndef _VJ_GUARDED_QUEUE_
35 #define _VJ_GUARDED_QUEUE_
36
37 #include <vjConfig.h>
38
39 #include <queue>
40 #include <Sync/vjMutex.h>
41 #include <Sync/vjGuard.h>
42
43 //: A guarded queue
44 // Guards an STL queue and implements the basic interface
45 // All the functions pass directly through to the corresponding STL
46 // queue function but they are guarded so that only a single
47 // thread can interact with the queue at once.
48 template <class value_type>
49 class vjGuardedQueue
50 {
51 public:
52    vjGuardedQueue()
53    {;}
54
55    ~vjGuardedQueue()
56    {;}
57
58    bool empty()
59    {
60    vjGuard<vjMutex> guard(mMutexGuard);
61       return mQ.empty();
62    }
63
64    value_type& front()
65    {
66    vjGuard<vjMutex> guard(mMutexGuard);
67       return mQ.front();
68    }
69
70    value_type& back()
71    {
72    vjGuard<vjMutex> guard(mMutexGuard);
73       return mQ.back();
74    }
75
76    void push(const value_type& val)
77    {
78     vjGuard<vjMutex> guard(mMutexGuard);
79       mQ.push(val);
80    }
81
82    void pop()
83    {
84    vjGuard<vjMutex> guard(mMutexGuard);
85       mQ.pop();
86    }
87
88    int size() const
89    { return mQ.size(); }
90
91 private:
92    vjMutex           mMutexGuard;      // The mutex to guard the queue
93    std::queue<value_type> mQ;
94 };
95
96
97 #endif
Note: See TracBrowser for help on using the browser.