Esempio n. 1
0
 public void Link(FileModelItem fmi)
 {
     if(fmi != null && !mFiles.Contains(fmi))
     {
         mFiles.Add(fmi);
     }
 }
Esempio n. 2
0
        public List<FileModelItem> GetFiles()
        {
            List<FileModelItem> files =
                new List<FileModelItem>();

            foreach(XElement fileEl in doc.Descendants("file"))
            {
                String device =
                    fileEl.Element("device").Value;
                String path =
                    fileEl.Element("path").Value;

                FileModelItem fmi =
                    new FileModelItem(device, path);

                XElement displayNameEl =
                    fileEl.Element("display-name");

                String displayName = null;

                if (displayNameEl != null)
                {
                    displayName = displayNameEl.Value;
                }

                if (!string.IsNullOrWhiteSpace(displayName))
                {
                    fmi.SetDisplayName(displayName);
                }

                XElement audioTranscriptEl =
                    fileEl.Element("audio-transcript");

                String audioTranscript = null;

                if(audioTranscriptEl != null)
                {
                    audioTranscript = audioTranscriptEl.Value;
                }

                if (!string.IsNullOrWhiteSpace(audioTranscript))
                {
                    fmi.SetAudioTranscript(audioTranscript);
                }

                foreach(XElement hashEl in fileEl.Descendants("hash"))
                {
                    String hashValue =
                        hashEl.Attribute("hash").Value;
                    String hashedAt =
                        hashEl.Attribute("hashedAt").Value;

                    fmi.GetHashes().Add(
                        new HashModelItem(hashValue, hashedAt));
                }

                foreach(XElement tagEl in fileEl.Descendants("tag"))
                {
                    String tag = tagEl.Value;

                    if (!string.IsNullOrWhiteSpace(tag))
                    {
                        fmi.GetTags().Add(tag);
                    }
                }

                files.Add(fmi);
            }

            return files;
        }