Fixed handling CAM menus in case the CAM connection fails while the menu is being presented

This commit is contained in:
Klaus Schmidinger 2003-10-26 13:30:36 +01:00
parent d8a8e37988
commit ccbebacc16
5 changed files with 53 additions and 18 deletions

View File

@ -844,3 +844,7 @@ Markus Hardt <markus.hardt@gmx.net>
Thomas Rausch <Thomas.Rausch@gmx.de> Thomas Rausch <Thomas.Rausch@gmx.de>
for making VDR try to get a timer's channel without RID when loading 'timers.conf' for making VDR try to get a timer's channel without RID when loading 'timers.conf'
Thomas v. Keller <v.keller@neckarufer.de>
for reporting a crash in case the CAM connection fails while a CAM menu
is being presented

View File

@ -2444,3 +2444,8 @@ Video Disk Recorder Revision History
- Continuing learning remote control keys in case one rc fails (thanks to - Continuing learning remote control keys in case one rc fails (thanks to
Oliver Endriss). Oliver Endriss).
- Fixed handling comments in editing marks. - Fixed handling comments in editing marks.
2003-10-26: Version 1.2.6pre4
- Fixed handling CAM menus in case the CAM connection fails while the menu
is being presented (thanks to Thomas v. Keller for reportign this one).

50
ci.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: ci.c 1.16 2003/08/02 10:00:01 kls Exp $ * $Id: ci.c 1.16.1.1 2003/10/26 13:04:23 kls Exp $
*/ */
/* XXX TODO /* XXX TODO
@ -1004,15 +1004,15 @@ bool cCiDateTime::Process(int Length, const uint8_t *Data)
class cCiMMI : public cCiSession { class cCiMMI : public cCiSession {
private: private:
char *GetText(int &Length, const uint8_t **Data); char *GetText(int &Length, const uint8_t **Data);
cCiMenu *menu; cCiMenu *menu, *fetchedMenu;
cCiEnquiry *enquiry; cCiEnquiry *enquiry, *fetchedEnquiry;
public: public:
cCiMMI(int SessionId, cCiTransportConnection *Tc); cCiMMI(int SessionId, cCiTransportConnection *Tc);
virtual ~cCiMMI(); virtual ~cCiMMI();
virtual bool Process(int Length = 0, const uint8_t *Data = NULL); virtual bool Process(int Length = 0, const uint8_t *Data = NULL);
virtual bool HasUserIO(void) { return menu || enquiry; } virtual bool HasUserIO(void) { return menu || enquiry; }
cCiMenu *Menu(void); cCiMenu *Menu(bool Clear = false);
cCiEnquiry *Enquiry(void); cCiEnquiry *Enquiry(bool Clear = false);
bool SendMenuAnswer(uint8_t Selection); bool SendMenuAnswer(uint8_t Selection);
bool SendAnswer(const char *Text); bool SendAnswer(const char *Text);
}; };
@ -1021,13 +1021,21 @@ cCiMMI::cCiMMI(int SessionId, cCiTransportConnection *Tc)
:cCiSession(SessionId, RI_MMI, Tc) :cCiSession(SessionId, RI_MMI, Tc)
{ {
dbgprotocol("New MMI (session id %d)\n", SessionId); dbgprotocol("New MMI (session id %d)\n", SessionId);
menu = NULL; menu = fetchedMenu = NULL;
enquiry = NULL; enquiry = fetchedEnquiry = NULL;
} }
cCiMMI::~cCiMMI() cCiMMI::~cCiMMI()
{ {
if (fetchedMenu) {
cMutexLock MutexLock(&fetchedMenu->mutex);
fetchedMenu->mmi = NULL;
}
delete menu; delete menu;
if (fetchedEnquiry) {
cMutexLock MutexLock(&fetchedEnquiry->mutex);
fetchedEnquiry->mmi = NULL;
}
delete enquiry; delete enquiry;
} }
@ -1123,18 +1131,26 @@ bool cCiMMI::Process(int Length, const uint8_t *Data)
return true; return true;
} }
cCiMenu *cCiMMI::Menu(void) cCiMenu *cCiMMI::Menu(bool Clear)
{ {
cCiMenu *m = menu; if (Clear)
fetchedMenu = NULL;
else if (menu) {
fetchedMenu = menu;
menu = NULL; menu = NULL;
return m; }
return fetchedMenu;
} }
cCiEnquiry *cCiMMI::Enquiry(void) cCiEnquiry *cCiMMI::Enquiry(bool Clear)
{ {
cCiEnquiry *e = enquiry; if (Clear)
fetchedEnquiry = NULL;
else if (enquiry) {
fetchedEnquiry = enquiry;
enquiry = NULL; enquiry = NULL;
return e; }
return fetchedEnquiry;
} }
bool cCiMMI::SendMenuAnswer(uint8_t Selection) bool cCiMMI::SendMenuAnswer(uint8_t Selection)
@ -1170,6 +1186,9 @@ cCiMenu::cCiMenu(cCiMMI *MMI, bool Selectable)
cCiMenu::~cCiMenu() cCiMenu::~cCiMenu()
{ {
cMutexLock MutexLock(&mutex);
if (mmi)
mmi->Menu(true);
free(titleText); free(titleText);
free(subTitleText); free(subTitleText);
free(bottomText); free(bottomText);
@ -1188,6 +1207,7 @@ bool cCiMenu::AddEntry(char *s)
bool cCiMenu::Select(int Index) bool cCiMenu::Select(int Index)
{ {
cMutexLock MutexLock(&mutex);
if (mmi && -1 <= Index && Index < numEntries) if (mmi && -1 <= Index && Index < numEntries)
return mmi->SendMenuAnswer(Index + 1); return mmi->SendMenuAnswer(Index + 1);
return false; return false;
@ -1210,11 +1230,15 @@ cCiEnquiry::cCiEnquiry(cCiMMI *MMI)
cCiEnquiry::~cCiEnquiry() cCiEnquiry::~cCiEnquiry()
{ {
cMutexLock MutexLock(&mutex);
if (mmi)
mmi->Enquiry(true);
free(text); free(text);
} }
bool cCiEnquiry::Reply(const char *s) bool cCiEnquiry::Reply(const char *s)
{ {
cMutexLock MutexLock(&mutex);
return mmi ? mmi->SendAnswer(s) : false; return mmi ? mmi->SendAnswer(s) : false;
} }

4
ci.h
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: ci.h 1.8 2003/05/25 11:44:47 kls Exp $ * $Id: ci.h 1.8.1.1 2003/10/26 12:22:09 kls Exp $
*/ */
#ifndef __CI_H #ifndef __CI_H
@ -21,6 +21,7 @@ class cCiMenu {
private: private:
enum { MAX_CIMENU_ENTRIES = 64 }; ///< XXX is there a specified maximum? enum { MAX_CIMENU_ENTRIES = 64 }; ///< XXX is there a specified maximum?
cCiMMI *mmi; cCiMMI *mmi;
cMutex mutex;
bool selectable; bool selectable;
char *titleText; char *titleText;
char *subTitleText; char *subTitleText;
@ -45,6 +46,7 @@ class cCiEnquiry {
friend class cCiMMI; friend class cCiMMI;
private: private:
cCiMMI *mmi; cCiMMI *mmi;
cMutex mutex;
char *text; char *text;
bool blind; bool blind;
int expectedLength; int expectedLength;

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.h 1.176.1.2 2003/10/24 14:31:17 kls Exp $ * $Id: config.h 1.176.1.3 2003/10/26 13:30:36 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -19,7 +19,7 @@
#include "device.h" #include "device.h"
#include "tools.h" #include "tools.h"
#define VDRVERSION "1.2.6pre3" #define VDRVERSION "1.2.6pre4"
#define VDRVERSNUM 10206 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 10206 // Version * 10000 + Major * 100 + Minor
#define MAXPRIORITY 99 #define MAXPRIORITY 99