ypollset.hpp 1.96 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
2
    Copyright (c) 2007-2010 iMatix Corporation
Martin Sustrik's avatar
Martin Sustrik committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
    the terms of the Lesser GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Lesser GNU General Public License for more details.

    You should have received a copy of the Lesser GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

Martin Sustrik's avatar
Martin Sustrik committed
20 21
#ifndef __ZMQ_YPOLLSET_HPP_INCLUDED__
#define __ZMQ_YPOLLSET_HPP_INCLUDED__
Martin Sustrik's avatar
Martin Sustrik committed
22 23 24 25 26

#include "i_signaler.hpp"
#include "simple_semaphore.hpp"
#include "atomic_bitmap.hpp"

Martin Sustrik's avatar
Martin Sustrik committed
27
namespace zmq
Martin Sustrik's avatar
Martin Sustrik committed
28 29 30 31 32 33 34 35 36 37 38
{

    //  ypollset allows for rapid polling for up to constant number of  
    //  different signals each produced by a different thread. The number of
    //  possible signals is platform-dependent.

    class ypollset_t : public i_signaler
    {
    public:

        ypollset_t ();
39
        ~ypollset_t ();
Martin Sustrik's avatar
Martin Sustrik committed
40

41
        //  i_signaler interface implementation.
Martin Sustrik's avatar
Martin Sustrik committed
42
        void signal (int signal_);
43 44
        uint64_t poll ();
        uint64_t check ();
45
        fd_t get_fd ();
Martin Sustrik's avatar
Martin Sustrik committed
46 47 48

    private:

49 50 51
        //  Internal representation of signal bitmap.
        typedef atomic_bitmap_t::bitmap_t signals_t;

Martin Sustrik's avatar
Martin Sustrik committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        //  Wait signal is carried in the most significant bit of integer.
        enum {wait_signal = sizeof (signals_t) * 8 - 1};

        //  The bits of the pollset.
        atomic_bitmap_t bits;

        //  Used by thread waiting for signals to sleep if there are no
        //  signals available.
        simple_semaphore_t sem;

        //  Disable copying of ypollset object.
        ypollset_t (const ypollset_t&);
        void operator = (const ypollset_t&);
    };

}

#endif