public static async Task <Dictionary <int, SongStructS> > ItunesRatingGet3(Dictionary <int, SongStructS> givenList, iTunesAppClass _myiTunes, CancellationToken ctx, IProgress <double> progress)
        {
            var a = DateTime.Now;
            Dictionary <int, SongStructS> listOfDifferences = new Dictionary <int, SongStructS>();

            List <SongStructS> l = new List <SongStructS>();
            await Task.Run(() =>
            {
                foreach (IITTrack track in _myiTunes.LibraryPlaylist.Tracks)
                {
                    if (ctx.IsCancellationRequested)
                    {
                        break;
                    }

                    SongStructS entry = (from _ in givenList.Values
                                         where _.ID == track.TrackDatabaseID && _.RatingComputed != true
                                         select _).FirstOrDefault();
                    if (entry == null)
                    {
                        continue;
                    }

                    entry.RatingiTunes = track.Rating.ItunesRatingTo5();
                    Report(progress, 0, givenList.Count);
                }
            }, ctx);

            var b = DateTime.Now - a;

            Console.WriteLine($"TIme: {b}");
            return(givenList);
        }
Exemple #2
0
        public static Dictionary <int, SongStructS> LoadItunesXML(string filePath)
        {
            if (!File.Exists(filePath))
            {
                MessageBox.Show("invalid filepath: '" + filePath + "'");
                return(new Dictionary <int, SongStructS> ());
            }

            Dictionary <int, SongStructS> bibliotek = new Dictionary <int, SongStructS> ();
            NSDictionary tracks = (XmlPropertyListParser.Parse(new FileInfo(filePath)) as NSDictionary)["Tracks"] as NSDictionary;

            foreach (var entry in tracks)
            {
                NSDictionary track     = (NSDictionary)entry.Value;
                SongStructS  musicFile = new SongStructS();
                int          id        = 0;

                // Get importend informations
                if (track.ContainsKey("Location"))
                {
                    musicFile.Location = Path2String(track["Location"].ToString());
                }

                // ToDo: set Filter?
                // if (File.Exists(musicFile.Location))
                //    continue;

                // strings
                if (track.ContainsKey("Name"))
                {
                    musicFile.Name = track["Name"].ToString();
                }

                if (track.ContainsKey("Album"))
                {
                    musicFile.Album = track["Album"].ToString();
                }

                if (track.ContainsKey("Artist"))
                {
                    musicFile.Artist = track["Artist"].ToString();
                }

                if (track.ContainsKey("Album Artist"))
                {
                    musicFile.AlbumArtist = track["Album Artist"].ToString();
                }

                if (track.ContainsKey("Genre"))
                {
                    musicFile.Genre = track["Genre"].ToString();
                }

                // integer
                if (track.ContainsKey("Track ID"))
                {
                    id = musicFile.ID = int.Parse(track["Track ID"].ToString());
                }

                if (track.ContainsKey("Track Number"))
                {
                    musicFile.Track = int.Parse(track["Track Number"].ToString());
                }

                if (track.ContainsKey("Year"))
                {
                    musicFile.Year = int.Parse(track["Year"].ToString());
                }

                if (track.ContainsKey("Album Rating"))
                {
                    musicFile.AlbumRating = int.Parse(track["Album Rating"].ToString());
                }

                if (track.ContainsKey("Total Time"))
                {
                    musicFile.TotalTime = int.Parse(track["Total Time"].ToString());
                }

                if (track.ContainsKey("Bit Rate"))
                {
                    musicFile.BitRate = int.Parse(track["Bit Rate"].ToString());
                }

                if (track.ContainsKey("Play Count"))
                {
                    musicFile.PlayCount = int.Parse(track["Play Count"].ToString());
                }

                //// bool
                if (track.ContainsKey("Rating Computed"))
                {
                    musicFile.RatingComputed = (track["Rating Computed"].ToString().ToLower() == "true") ? true : false;
                }

                // ToDo: TryCatch ??

                bibliotek.Add(id, musicFile);
            }
            return(bibliotek);
        }