forked from JMS-1/DVB.NET---VCR.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEvent.cs
More file actions
460 lines (399 loc) · 14 KB
/
Event.cs
File metadata and controls
460 lines (399 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
extern alias oldVersion;
using System;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using System.Collections.Generic;
using legacy = oldVersion::JMS.DVB.EPG;
namespace JMS.DVB.SI.ProgramGuide
{
/// <summary>
/// Beschreibt einen einzelnen Eintrag in der elektronischen Programmzeitschrift.
/// </summary>
[Serializable]
[XmlType( "ProgramGuideEntry" )]
public class Event
{
/// <summary>
/// Der zugehörige Eintrag aus dem Datenstrom.
/// </summary>
private IEnumerable<legacy.Descriptor> m_Descriptors;
/// <summary>
/// Die den Inhalt dieser Sendung beschreibenden Kategorien.
/// </summary>
private HashSet<ContentCategory> m_Categories;
/// <summary>
/// Informationen zur Altersfreigabe.
/// </summary>
private HashSet<string> m_Ratings;
/// <summary>
/// Der Kurzname dieses Eintrags.
/// </summary>
private string m_Name;
/// <summary>
/// Die Beschreibung der zugehörigen Sendung.
/// </summary>
private string m_Description;
/// <summary>
/// Die optionale Kurzbeschreibung der zugehörigen Sendung.
/// </summary>
private string m_ShortDescription;
/// <summary>
/// Die Landessprache, in der diese Ausstrahlung erfolgt.
/// </summary>
private string m_Language;
/// <summary>
/// Der Zeitpunkt, an dem diese Sendung anfängt (in GMT / UTC).
/// </summary>
[XmlAttribute( "start" )]
public DateTime StartTime { get; set; }
/// <summary>
/// Die Laufzeit in 0.1µs Einheiten.
/// </summary>
[XmlAttribute( "duration" )]
public long DurationTicks { get; set; }
/// <summary>
/// Die Dauer dieser Sendung.
/// </summary>
[XmlIgnore]
public TimeSpan Duration
{
get
{
// Report
return new TimeSpan( DurationTicks );
}
set
{
// Update
DurationTicks = value.Ticks;
}
}
/// <summary>
/// Die zugehörige Quelle.
/// </summary>
public SourceIdentifier Source { get; set; }
/// <summary>
/// Die eindeutige Kennung der Sendung.
/// </summary>
[XmlAttribute( "id" )]
public uint Identifier { get; set; }
/// <summary>
/// Wird zur Deserialisierung benötigt.
/// </summary>
public Event()
{
}
/// <summary>
/// Erstellt eine neue Beschreibung.
/// </summary>
/// <param name="source">Die zugehörige Quelle.</param>
/// <param name="entry">Die Rohdaten aus dem DVB Datenstrom.</param>
/// <exception cref="ArgumentNullException">Ein Parameter wurde nicht angegeben.</exception>
public Event( SourceIdentifier source, legacy.EventEntry entry )
: this( source, entry.EventIdentifier, entry.StartTime, entry.Duration, entry.Descriptors )
{
}
/// <summary>
/// Erstellt eine neue Beschreibung.
/// </summary>
/// <param name="source">Die zugehörige Quelle.</param>
/// <param name="identifier">Die eindeutige Nummer des Ereignisses.</param>
/// <param name="startTime">Der Beginn der Sendung in UTC / GMT.</param>
/// <param name="duration">Die Dauer der Ausstrahlung.</param>
/// <param name="descriptors">Die Beschreibung der Sendung.</param>
/// <exception cref="ArgumentNullException">Ein Parameter wurde nicht angegeben.</exception>
public Event( SourceIdentifier source, uint identifier, DateTime startTime, TimeSpan duration, IEnumerable<legacy.Descriptor> descriptors )
{
// Validate
if (source == null)
throw new ArgumentNullException( "source" );
// Copy over
Identifier = identifier;
StartTime = startTime;
Duration = duration;
Source = source;
// Remember
m_Descriptors = descriptors;
}
/// <summary>
/// Der Zeitpunkt, an dem die Sendung endet (in GMT / UTC).
/// </summary>
[XmlIgnore]
public DateTime EndTime
{
get
{
// Caluclate
return StartTime + Duration;
}
}
/// <summary>
/// Meldet den Namen dieser Sendung.
/// </summary>
public string Name
{
get
{
// Synchronize
Load();
// Report
return m_Name;
}
set
{
// Change
m_Name = value;
}
}
/// <summary>
/// Meldet eine Beschreibung zu dieser Sendung.
/// </summary>
public string Description
{
get
{
// Synchronize
Load();
// Report
return m_Description;
}
set
{
// Update
m_Description = value;
}
}
/// <summary>
/// Meldet die optionale Kurzbeschreibung zu dieser Sendung.
/// </summary>
public string ShortDescription
{
get
{
// Synchronize
Load();
// Report
return m_ShortDescription;
}
set
{
// Update
m_ShortDescription = value;
}
}
/// <summary>
/// Meldet die Landessprache zu dieser Sendung.
/// </summary>
[XmlAttribute( "lang" )]
public string Language
{
get
{
// Synchronize
Load();
// Report
return m_Language;
}
set
{
// Update
m_Language = value;
}
}
/// <summary>
/// Meldet die inhaltliche Beschreibung zu dieser Sendung.
/// </summary>
[XmlArrayItem( typeof( UndefinedContentCategory ) )]
[XmlArrayItem( typeof( MovieContentCategory ) )]
[XmlArrayItem( typeof( NewsContentCategory ) )]
[XmlArrayItem( typeof( ShowContentCategory ) )]
[XmlArrayItem( typeof( SportContentCategory ) )]
[XmlArrayItem( typeof( ChildrenContentCategory ) )]
[XmlArrayItem( typeof( MusicContentCategory ) )]
[XmlArrayItem( typeof( ArtContentCategory ) )]
[XmlArrayItem( typeof( SocialContentCategory ) )]
[XmlArrayItem( typeof( EducationContentCategory ) )]
[XmlArrayItem( typeof( LeisureContentCategory ) )]
[XmlArrayItem( typeof( ContentCharacteristicsCategory ) )]
public ContentCategory[] Content
{
get
{
// Synchronize
Load();
// Report
return m_Categories.ToArray();
}
set
{
// Reset
if (m_Categories == null)
m_Categories = new HashSet<ContentCategory>();
else
m_Categories.Clear();
// Store back
if (value != null)
foreach (var category in value)
if (category != null)
m_Categories.Add( category );
}
}
/// <summary>
/// Meldet die bekannten Altersfreigaben zu dieser Sendung.
/// </summary>
[XmlElement( "Rating" )]
public string[] Ratings
{
get
{
// Synchronize
Load();
// Report
return m_Ratings.ToArray();
}
set
{
// Reset
if (m_Ratings == null)
m_Ratings = new HashSet<string>( StringComparer.InvariantCultureIgnoreCase );
else
m_Ratings.Clear();
// Store
if (value != null)
foreach (var rating in value)
if (!string.IsNullOrEmpty( rating ))
m_Ratings.Add( rating );
}
}
/// <summary>
/// Berechnet einmalig die Daten dieser Beschreibung.
/// </summary>
public void Load()
{
// Already did it
if (m_Ratings != null)
return;
// Once only
m_Ratings = new HashSet<string>( StringComparer.InvariantCultureIgnoreCase );
m_Categories = new HashSet<ContentCategory>();
// Descriptors we can have
legacy.Descriptors.ShortEvent shortEvent = null;
// Extended events
var exEvents = new List<legacy.Descriptors.ExtendedEvent>();
// Check all descriptors
if (m_Descriptors != null)
foreach (var descr in m_Descriptors)
if (descr.IsValid)
{
// Load short event description once
if (null == shortEvent)
{
// Read
shortEvent = descr as legacy.Descriptors.ShortEvent;
// Done for now
if (null != shortEvent)
continue;
}
// Check for rating
var rating = descr as legacy.Descriptors.ParentalRating;
// Done for now
if (null != rating)
{
// Process
if (rating.Ratings != null)
foreach (string singleRating in rating.Ratings)
if (!string.IsNullOrEmpty( singleRating ))
m_Ratings.Add( singleRating );
// Next
continue;
}
// Check for extended event
var exEvent = descr as legacy.Descriptors.ExtendedEvent;
// Register
if (null != exEvent)
{
// Remember
exEvents.Add( exEvent );
// Next
continue;
}
// Check for content information
var content = descr as legacy.Descriptors.Content;
// Remember
if (content != null)
{
// Process
if (content.Categories != null)
foreach (var singleCategory in content.Categories)
m_Categories.Add( GetContentCategory( singleCategory ) );
// Next
continue;
}
}
// Take the best we got
if (exEvents.Count > 0)
{
// Text builder
var text = new StringBuilder();
// Process all
foreach (var exEvent in exEvents)
{
// Normal
if (null == m_Name)
m_Name = exEvent.Name;
if (null == m_Language)
m_Language = exEvent.Language;
// Merge
if (exEvent.Text != null)
text.Append( exEvent.Text );
}
// Use
m_Description = text.ToString();
}
// Try short event
if (shortEvent != null)
{
// Remember
if (string.IsNullOrEmpty( shortEvent.Name ))
m_ShortDescription = shortEvent.Text;
else if (string.IsNullOrEmpty( shortEvent.Text ))
m_ShortDescription = shortEvent.Name;
else if (string.IsNullOrEmpty( m_Description ) || StringComparer.Ordinal.Equals( shortEvent.Text, m_Description ))
m_ShortDescription = shortEvent.Name;
else
m_ShortDescription = string.Format( "{0} ({1})", shortEvent.Name, shortEvent.Text );
// Read
if (string.IsNullOrEmpty( m_Name ))
m_Name = shortEvent.Name;
if (string.IsNullOrEmpty( m_Description ))
m_Description = shortEvent.Text;
if (string.IsNullOrEmpty( m_Language ))
m_Language = shortEvent.Language;
}
// Not possible
if (string.IsNullOrEmpty( m_Name ))
return;
// Defaults
if (m_ShortDescription == null)
m_ShortDescription = string.Empty;
// Defaults
if (string.IsNullOrEmpty( m_Description ))
m_Description = "-";
if (null == m_Language)
m_Language = string.Empty;
}
#region Hilfsmethoden zur Analyse von Kategorien
/// <summary>
/// Ermittelt die Kategorie einer Ausstrahlung.
/// </summary>
/// <param name="contentNibbles">Die Rohdarstellung der Kategorie.</param>
/// <returns></returns>
public static ContentCategory GetContentCategory( int contentNibbles )
{
// Forward
return ContentCategory.Create( contentNibbles );
}
#endregion
}
}