1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using libxmltv.Interfaces; |
6 |
using System.Diagnostics; |
7 |
using System.Xml.Linq; |
8 |
|
9 |
namespace libxmltv.Core |
10 |
{ |
11 |
[Serializable] |
12 |
internal class XMLTVSource : XMLTVBase<XMLTVRuntimeInstance>, IXMLTVSource, IDisposable//, ICloneable |
13 |
{ |
14 |
|
15 |
private Dictionary<string, string> entries = new Dictionary<string, string>(); |
16 |
//internal static void CreateInstance(XMLTVRuntimeInstance xmltv) |
17 |
//{ |
18 |
// using (XMLTVSource g = new XMLTVSource(xmltv)) { g.instance.Source = (IXMLTVSource)g.Clone(); } |
19 |
//} |
20 |
|
21 |
//private XMLTVRuntimeInstance instance; |
22 |
//protected XMLTVSource(string sourcename, string generatorname, string generatorurl) |
23 |
//{ |
24 |
// this.SourceName = sourcename; |
25 |
// this.GeneratorName = generatorname; |
26 |
// this.GeneratorUrl = generatorurl; |
27 |
//} |
28 |
public XMLTVSource() : base(null) |
29 |
{ |
30 |
this.SourceName = string.Empty; |
31 |
this.GeneratorName = string.Empty; |
32 |
this.GeneratorUrl = string.Empty; |
33 |
} |
34 |
public XMLTVSource(XMLTVRuntimeInstance instance) : base(instance) |
35 |
{ |
36 |
xmltv_logger.Debug.WriteLine("Creating Instance of XMLTVSource"); |
37 |
Create(); |
38 |
xmltv_logger.Debug.WriteLine("Created Instance of XMLTVSource '{0}'", SourceName); |
39 |
} |
40 |
|
41 |
#region IXMLTVSource |
42 |
//private IXMLTV_PARSER XMLTV_PARSER { get; set; } |
43 |
public string SourceName { get; private set; } |
44 |
public string GeneratorName { get; private set; } |
45 |
public string GeneratorUrl { get; private set; } |
46 |
#endregion |
47 |
|
48 |
private void Create() |
49 |
{ |
50 |
var doc = XDocument.Parse(this.GetInstance().XmlDoc); |
51 |
Debug.Assert(doc.Root.Name == XMLTVConstants.ROOT_ELEMENT, string.Format("Expected Root Element: '{0}' but read: '{1}'", XMLTVConstants.ROOT_ELEMENT, doc.Root.Name)); |
52 |
//xmltv_logger.Verbose.Debug.WriteLine("\tRoot: {0}", doc.Root.Name); |
53 |
var attributes = doc.Root.Attributes().ToList(); |
54 |
foreach (var attribute in attributes) |
55 |
{ |
56 |
xmltv_logger.Verbose.Debug.WriteLine("\t{0}: {1}", attribute.Name, attribute.Value); |
57 |
entries.Add(attribute.Name.ToString(), attribute.Value); |
58 |
} |
59 |
|
60 |
SourceName = entries[XMLTVConstants.Source.SourceName]; |
61 |
GeneratorName = entries[XMLTVConstants.Source.GeneratorName]; |
62 |
GeneratorUrl = entries[XMLTVConstants.Source.GeneratorUrl]; |
63 |
|
64 |
} |
65 |
public override string ToString() |
66 |
{ |
67 |
return string.Format("XmlTv Source: '{0}' (Generated by: '{1}') (support: '{2}')", SourceName, GeneratorName, GeneratorUrl); |
68 |
} |
69 |
|
70 |
public void Dispose() |
71 |
{ |
72 |
//throw new NotImplementedException(); |
73 |
} |
74 |
|
75 |
//public object Clone() |
76 |
//{ |
77 |
// return new XMLTVSource(this.SourceName, this.GeneratorName, this.GeneratorUrl); |
78 |
//} |
79 |
} |
80 |
} |