diff options
author | horchi <vdr@jwendel.de> | 2017-05-02 08:46:37 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-05-02 08:46:37 +0200 |
commit | 938f8837a12619da944bde2c67deefe633f6f201 (patch) | |
tree | 376e1fae9f4977dc0360c847360608ffce34d6b0 /update.c | |
parent | 507589a21e103175efe1a56df9bb76c1041d4c2e (diff) | |
download | vdr-plugin-epg2vdr-938f8837a12619da944bde2c67deefe633f6f201.tar.gz vdr-plugin-epg2vdr-938f8837a12619da944bde2c67deefe633f6f201.tar.bz2 |
2017-05-02 version 1.1.57 (horchi)\n - bugfix: Fixed possible problem with epg for new channels since vdr 2.3.x\n\n1.1.57
Diffstat (limited to 'update.c')
-rw-r--r-- | update.c | 27 |
1 files changed, 22 insertions, 5 deletions
@@ -1432,6 +1432,17 @@ int cUpdate::refreshEpg(const char* forChannelId, int maxTries) cTimers* timers = &Timers; #endif + // get channles lock + +#if defined (APIVERSNUM) && (APIVERSNUM >= 20301) + cStateKey channelsKey; + tell(3, "-> Try to get channels lock"); + cChannels* channels = cChannels::GetChannelsWrite(channelsKey, 10); + tell(3, "channels LOCK (refreshEpg)"); +#else + cChannels* channels = &Channels; +#endif + // get schedules lock #if defined (APIVERSNUM) && (APIVERSNUM >= 20301) @@ -1444,12 +1455,13 @@ int cUpdate::refreshEpg(const char* forChannelId, int maxTries) tell(3, "LOCK (refreshEpg)"); #endif - if (!schedules || !timers) + if (!schedules || !timers || !channels) { - tell(3, "Info: Can't get write lock on '%s'", !schedules ? "schedules" : "timers"); + tell(3, "Info: Can't get write lock on '%s'", !schedules ? "schedules" : !channels ? "channels" : "timers"); #if defined (APIVERSNUM) && (APIVERSNUM >= 20301) if (schedules) schedulesKey.Remove(); + if (channels) channelsKey.Remove(); if (timers) timersKey.Remove(); #else delete schedulesLock; @@ -1470,10 +1482,13 @@ int cUpdate::refreshEpg(const char* forChannelId, int maxTries) tries = 0; - // get schedule (channel) + // get schedule of channel + + cChannel* channel = channels->GetByChannelID(channelId, true); + s = (cSchedule*)schedules->GetSchedule(channel, true); - if (!(s = (cSchedule*)schedules->GetSchedule(channelId))) - s = schedules->AddSchedule(channelId); + // if (!(s = (cSchedule*)schedules->GetSchedule(channelId))) + // s = schedules->AddSchedule(channelId); // ----------------------------------------- // iterate over all events of this channel @@ -1545,6 +1560,8 @@ int cUpdate::refreshEpg(const char* forChannelId, int maxTries) #if defined (APIVERSNUM) && (APIVERSNUM >= 20301) schedulesKey.Remove(); tell(3, "-> Released schedules lock"); + channelsKey.Remove(); + tell(3, "-> Released channels lock"); timersKey.Remove(); tell(3, "-> Released timers lock"); #else |