Skip to content

Commit 1778620

Browse files
author
Markus Ehrnsperger
committed
3.4_fix6
1 parent 25dbbe8 commit 1778620

23 files changed

+331
-504
lines changed

HISTORY

+6-3
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,18 @@ Summary of changes to Version 3.2:
183183
2025- - : Version 3.4.1:
184184
- Fix: Parsing additional times used in multischedule and what's on
185185
- Fix: Crash in case of an empty entry in channelgroups. Thanks to SHofmann @vdr-portal.de for reporting
186+
- Fix: Ensure to have locks before any access to VDR objects like cEvent, cRecording, ...
186187
- Timers & Recordings: Remove locks defined in live, rely on VDRs locks only
187-
- Fix (ongoing): Ensure to have locks before any access to VDR objects like cEvent, cRecording, ...
188188
- Remove grab.h, grab.cpp, tasks.h, tasks.cpp
189189
- note for grab.h: Snapshot picture has now less delay to picture on tv
190190
- Allow shorter Snapshot-Interval
191191
- note for tasks.h:
192-
- These tasks require VDR LOCKS. While it seems to be a good idea to
193-
- have these LOCKS in a separate thread, it is actually a bad one:
192+
- These tasks require VDR LOCKs. While it seems to be a good idea to
193+
- have these LOCKs in a separate thread, it is actually a bad one:
194194
- As we wait for these tasks to finish, this can result in invalid LOCK
195195
- sequences not detected by VDR but resulting in deadlocks.
196196
- affected: Switch channel, remove timer, remove recording,
197197
(play, pause, stop, forward, backward) recording
198+
199+
- remove PCRE2 dependency, use c++ std::regex / std::regex_match
200+
- Hide empty directories in recordings on search (thanks to maazl for the patch)

Makefile

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ VERSION := $(shell awk '/$(HASH)define LIVEVERSION/ { print $$3 }' setup.h | sed
1313
# $(info $$VERSION is [${VERSION}])
1414

1515
PKG_CONFIG ?= pkg-config
16-
### Check for libpcre2
17-
HAVE_PCRE2 := $(shell if $(PKG_CONFIG) --exists libpcre2-8; then echo "1"; else echo "0"; fi )
1816

1917
### The directory environment:
2018
# Use package data if installed...otherwise assume we're under the VDR source directory:
@@ -60,11 +58,6 @@ CXXTOOLVER := $(shell cxxtools-config --version | sed -e's/\.//g' | sed -e's/pre
6058

6159
### Optional configuration features
6260
PLUGINFEATURES :=
63-
ifeq ($(HAVE_PCRE2),1)
64-
PLUGINFEATURES += -DHAVE_PCRE2
65-
CXXFLAGS += $(shell $(PKG_CONFIG) --cflags libpcre2-8)
66-
LIBS += $(shell $(PKG_CONFIG) --libs libpcre2-8)
67-
endif
6861

6962
# -Wno-deprecated-declarations .. get rid of warning: ‘template<class> class std::auto_ptr’ is deprecated
7063
CXXFLAGS += -std=c++17 -Wfatal-errors -Wundef -Wno-deprecated-declarations
@@ -94,7 +87,7 @@ VERSIONSUFFIX = gen_version_suffix.h
9487
PLUGINOBJS := $(PLUGIN).o recman.o epg_events.o thread.o tntconfig.o setup.o \
9588
timers.o tools.o status.o epgsearch.o \
9689
md5.o filecache.o livefeatures.o preload.o timerconflict.o \
97-
users.o osd_status.o ffmpeg.o StringMatch.o xxhash.o i18n.o
90+
users.o osd_status.o ffmpeg.o xxhash.o i18n.o
9891
PLUGINSRCS := $(patsubst %.o,%.cpp,$(PLUGINOBJS))
9992

10093
WEB_LIB_PAGES := libpages.a

README

-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ Cxxtools >= 2.2.1 - http://www.tntnet.org/download.hms // https://web.archive.
3535

3636
Tntnet provides basic web server functions for live and needs cxxtools.
3737

38-
PCRE2 >= 10.38 - https://github.com/PhilipHazel/pcre2/releases
39-
PCRE2 provides filtering for recordings using Perl regexp language.
40-
If you don't need filtering, PCRE2 is optional.
41-
4238
Installation:
4339
=============
4440

StringMatch.cpp

-58
This file was deleted.

StringMatch.h

-19
This file was deleted.

doc/LOCKs.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Concept:
2+
3+
A method returning a VDR object like cRecording requires the corresponding
4+
VDR global table (cRecordings) as input parameter.
5+
6+
Reasoning:
7+
cRecordings (LOCK_RECORDINGS_READ) must be locked anyhow, otherwise it is
8+
not allowed to use the returned cRecording.
9+
So, requesting this paramater reduces the chance that the developer will
10+
forget this rule ...

epg_events.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@ namespace vdrlive
126126
tChannelID channelid;
127127
tEventID eventid;
128128
DecodeDomId(epgid, channelid, eventid);
129-
if ( !channelid.Valid() || eventid == 0 ) return false;
130-
const cSchedule *schedule = Schedules->GetSchedule(channelid);
129+
if (!channelid.Valid() || eventid == 0) return false;
130+
channel = Channels->GetByChannelID(channelid);
131+
if (!channel) return false;
132+
const cSchedule *schedule = Schedules->GetSchedule(channel);
131133
if (!schedule) return false;
132134
#if APIVERSNUM >= 20502
133135
event = schedule->GetEventById(eventid);
134136
#else
135137
event = schedule->GetEvent(eventid);
136138
#endif
137-
channel = Channels->GetByChannelID(channelid);
138-
return event && channel;
139+
return event;
139140
}
140141

141142

0 commit comments

Comments
 (0)