Files
recycled-ni-neutrino/src/driver/scanepg.h
[CST] Focus 3e9eff7326 src/driver/scanepg.cpp: add support for standby epg scan;
block scan if recording is running;
experimental, needs more testing


Origin commit data
------------------
Branch: ni/coolstream
Commit: 201fb60262
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-10-10 (Thu, 10 Oct 2013)



------------------
This commit was generated by Migit
2013-10-10 19:01:46 +04:00

58 lines
1.5 KiB
C++

/*
Copyright (C) 2013 CoolStream International Ltd
License: GPLv2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation;
This program 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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __SCAN_EPG__
#define __SCAN_EPG__
#include <zapit/zapit.h>
typedef std::map<transponder_id_t, t_channel_id> eit_scanmap_t;
typedef std::pair<transponder_id_t, t_channel_id> eit_scanmap_pair_t;
typedef eit_scanmap_t::iterator eit_scanmap_iterator_t;
class CEpgScan
{
private:
int current_bnum;
int current_mode;
bool allfav_done;
bool standby;
eit_scanmap_t scanmap;
t_channel_id next_chid;
std::set<transponder_id_t> scanned;
void AddBouquet(CChannelList * clist);
bool AddFavorites();
void AddTransponders();
void EnterStandby();
CEpgScan();
public:
~CEpgScan();
static CEpgScan * getInstance();
void handleMsg(const neutrino_msg_t _msg, neutrino_msg_data_t data);
void Next();
void Clear();
void StartStandby();
void StopStandby();
bool Running();
};
#endif