~ubuntu-branches/ubuntu/wily/me-tv/wily-proposed

« back to all changes in this revision

Viewing changes to src/frontend_thread.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lamothe
  • Date: 2010-05-22 13:10:32 UTC
  • mfrom: (1.1.12 upstream) (3.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100522131032-ibethpcgb8lpwt1w
Tags: 1.2.4-1
* New upstream release
* Maintainer change to Michael Lamothe
* Updated debian/control
  - Added libunique-dev to Build-Depends
  - Added libdbus-glib-1-dev to Build-Depends
* Added me-tv-player.1 to debian/me-tv.manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Michael Lamothe
 
3
 *
 
4
 * This file is part of Me TV
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Library General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
 
19
 */
 
20
 
 
21
#ifndef __FRONTEND_THREAD_H__
 
22
#define __FRONTEND_THREAD_H__
 
23
 
 
24
#include "thread.h"
 
25
#include "epg_thread.h"
 
26
#include "channel.h"
 
27
#include "channel_stream.h"
 
28
#include "dvb_frontend.h"
 
29
 
 
30
class FrontendThread : public Thread
 
31
{
 
32
private:
 
33
        Glib::RecMutex          mutex;
 
34
        ChannelStreamList       streams;
 
35
        EpgThread*                      epg_thread;
 
36
        gboolean                        is_tuned;
 
37
        Dvb::Transponder        transponder;
 
38
        
 
39
        void write(Glib::RefPtr<Glib::IOChannel> channel, guchar* buffer, gsize length);
 
40
        void run();
 
41
        void setup_dvb(ChannelStream& stream);
 
42
        void start_epg_thread();
 
43
        void stop_epg_thread();
 
44
 
 
45
public:
 
46
        FrontendThread(Dvb::Frontend& frontend);
 
47
        ~FrontendThread();
 
48
 
 
49
        Dvb::Frontend& frontend;
 
50
 
 
51
        gboolean is_display();
 
52
        gboolean is_recording();
 
53
        gboolean is_recording(const Channel& channel);
 
54
        void start_recording(Channel& channel, const Glib::ustring& filename, gboolean scheduled);
 
55
        void stop_recording(const Channel& channel);
 
56
        guint get_last_epg_update_time();
 
57
        void start();
 
58
        void stop();
 
59
        void start_display(Channel& channel);
 
60
        void stop_display();
 
61
        ChannelStreamList& get_streams() { return streams; }
 
62
};
 
63
 
 
64
typedef std::list<FrontendThread*> FrontendThreadList;
 
65
 
 
66
#endif