Пример #1
0
        public void AddNewRegistrations(List <LeonPerson> newRegistrations, bool save = true)
        {
            if (m_leonPersons == null)
            {
                m_leonPersons = new List <LeonPerson>();
            }

            foreach (var newRegistration in newRegistrations)
            {
                var found = m_leonPersons.SingleOrDefault(p => p.Team == newRegistration.Team && p.Target == newRegistration.Target);
                if (found != null)
                {
                    m_leonPersons.Remove(found);
                }

                if (!newRegistration.IsEmpty)
                {
                    m_leonPersons.Add(newRegistration);
                }

                if (save)
                {
                    DatabaseApi.Save(newRegistration);
                }
            }

            m_leonPersons = m_leonPersons.OrderBy(p => p.Team).ThenBy(p => p.Target).ToList();
            this.BuildLists();
        }
Пример #2
0
        private void AddNewRegistrations(List <MinneRegistration> newRegistrations, bool save)
        {
            if (m_minneRegistrations == null)
            {
                m_minneRegistrations = new List <MinneRegistration>();
            }

            foreach (var newRegistration in newRegistrations)
            {
                var found = m_minneRegistrations.SingleOrDefault(p => p.ShooterId == newRegistration.ShooterId);
                if (found != null)
                {
                    m_minneRegistrations.Remove(found);
                }

                if (!newRegistration.IsEmpty)
                {
                    m_minneRegistrations.Add(newRegistration);
                }

                if (save)
                {
                    DatabaseApi.Save(newRegistration);
                }
            }

            m_minneRegistrations = m_minneRegistrations.OrderBy(p => p.Team).ThenBy(p => p.Target).ToList();
            ////this.BuildLists();
        }
Пример #3
0
        public List <OrionResult> GetOrionResult(OrionViewModel orionViewModel)
        {
            if (this.CheckForNewFile() == false)
            {
                return(null);
            }

            var filename = GetFilename();
            var updFile  = this.GetUPDFilename();
            var allLines = m_fileHandler.ReadAllLines(filename);
            var id       = "NoId";
            var result   = new List <OrionResult>();

            foreach (var line in allLines)
            {
                if (string.IsNullOrWhiteSpace(line))
                {
                    continue;
                }

                var or = OrionResult.ParseFromOrion(line, orionViewModel);
                id = or.OrionId.ToString();
                if (or.ShooterId > 0)
                {
                    DatabaseApi.Save(or);
                    result.Add(or);
                }
            }

            var dbroot     = DatabaseApi.GetActiveCompetition();
            var backupPath = Path.Combine(dbroot, "Backup");

            if (!Directory.Exists(backupPath))
            {
                Directory.CreateDirectory(backupPath);
            }

            var bkupfilename = Path.Combine(backupPath, string.Format("{0}_Orion_{1}_kmonew.txt", DateTime.Now.ToString("yyyyMMdd-HHmmss"), id));

            try
            {
                File.Move(filename, bkupfilename);
                File.Delete(updFile);
            }
            catch (Exception ex)
            {
                Log.Error(ex, "Unable to move to backup: " + filename);
            }

            return(result);
        }
Пример #4
0
 private void SaveLeonPersons(int number)
 {
     for (int i = 0; i < number; i++)
     {
         var leonPerson = new LeonPerson
         {
             Class     = "4",
             ClubName  = "Bodø Østre",
             Name      = "No Name" + i,
             Range     = 2,
             ShooterId = 123456 + i,
             SumIn     = 30,
             Target    = i + 1,
             Team      = 3
         };
         DatabaseApi.Save(leonPerson);
     }
 }
Пример #5
0
        public void Save_RowAdded()
        {
            this.InitTestDatabase("TestStevne", new DateTime(2016, 2, 26));
            var leonPerson = new LeonPerson
            {
                Class     = "4",
                ClubName  = "Bodø Østre",
                Name      = "No Name",
                Range     = 2,
                ShooterId = 123456,
                SumIn     = 30,
                Target    = 1,
                Team      = 3
            };
            var result = DatabaseApi.Save(leonPerson);

            Assert.IsTrue(result);
        }
Пример #6
0
        public static void WriteLeonResults(List <int> finishedShooters, List <OrionResult> orionResults, OrionSetupViewModel orionSetup, List <LeonPerson> leonPersons, List <MinneRegistration> minnePersons)
        {
            var tmpBasePath = DatabaseApi.GetActiveCompetition();

            var tmpPath      = Path.Combine(tmpBasePath, "LeonTmp");
            var tmpPathMinne = Path.Combine(tmpBasePath, "MinneLeonTemp");

            if (!Directory.Exists(tmpPath))
            {
                Directory.CreateDirectory(tmpPath);
            }

            if (!Directory.Exists(tmpPathMinne))
            {
                Directory.CreateDirectory(tmpPathMinne);
            }

            var leonResultsFelt           = new List <string>();
            var leonResultsBane           = new List <string>();
            MinneRegistration minnePerson = null;
            LeonPerson        leonPerson  = null;

            foreach (var finishedShooter in finishedShooters)
            {
                var allResultsForShooter = orionResults.Where(o => o.ShooterId == finishedShooter);
                leonPerson = leonPersons.SingleOrDefault(l => l.ShooterId == finishedShooter);

                if (minnePersons != null)
                {
                    minnePerson = minnePersons.SingleOrDefault(l => l.ShooterId == finishedShooter);
                }

                int           sumFelt        = 0;
                int           sumBane        = 0;
                List <string> allFeltSeries  = new List <string>();
                List <string> allMinneSeries = new List <string>();

                foreach (var orion in orionSetup.OrionViewModels)
                {
                    foreach (var rangeViewModel in orion.RangeViews)
                    {
                        if (rangeViewModel.RangeType == RangeType.Shooting)
                        {
                            var resultForThisRange = CalculateOrionAndRange.GetResultForThisRange(allResultsForShooter, orion, rangeViewModel);
                            if (resultForThisRange == null)
                            {
                                if (rangeViewModel.ResultType == ResultType.Felt)
                                {
                                    allFeltSeries.Add(string.Empty);
                                }
                            }
                            else
                            {
                                if (resultForThisRange.ResultType == ResultType.Felt)
                                {
                                    sumFelt += resultForThisRange.GetSum();
                                    allFeltSeries.AddRange(resultForThisRange.Series);
                                }
                                else if (resultForThisRange.ResultType == ResultType.Bane)
                                {
                                    sumBane += resultForThisRange.GetSum();
                                    allMinneSeries.AddRange(resultForThisRange.Series);
                                }
                            }
                        }
                    }
                }

                ////foreach (var orionResult in allResultsForShooter)
                ////{
                ////    if (orionResult.ResultType == ResultType.Felt)
                ////    {
                ////        sumFelt += orionResult.GetSum();
                ////        allFeltSeries.AddRange(orionResult.Series);
                ////    }
                ////    else if (orionResult.ResultType == ResultType.Bane)
                ////    {
                ////        sumBane += orionResult.GetSum();
                ////        allMinneSeries.AddRange(orionResult.Series);
                ////    }
                ////}

                if (allFeltSeries.Any() && leonPerson != null)
                {
                    var allShots = string.Join(";", allFeltSeries).ToUpper();

                    var leonLine = string.Format(
                        "{0};{1};{2};{3};{4};{5};{6};{7};{8}",
                        leonPerson.Range,
                        leonPerson.Team,
                        leonPerson.Target,
                        leonPerson.ShooterId,
                        leonPerson.Name,
                        leonPerson.ClubName,
                        leonPerson.Class,
                        sumFelt,
                        allShots);

                    leonResultsFelt.Add(leonLine);
                }

                if (allMinneSeries.Any() && minnePerson != null)
                {
                    var allShots = string.Join(";", allMinneSeries).ToUpper();

                    var leonLine = string.Format(
                        "{0};{1};{2};{3};{4};{5};{6};{7};{8}",
                        minnePerson.Range,
                        minnePerson.Team,
                        minnePerson.Target,
                        minnePerson.ShooterId,
                        minnePerson.Name,
                        minnePerson.ClubName,
                        minnePerson.Class,
                        sumBane,
                        allShots);

                    leonResultsBane.Add(leonLine);
                }

                var finishedPerson = new FinishedPerson
                {
                    Name      = leonPerson.Name,
                    ShooterId = leonPerson.ShooterId,
                    Target    = leonPerson.Target,
                    Team      = leonPerson.Team
                };
                DatabaseApi.Save(finishedPerson);
            }

            if (leonResultsFelt.Any())
            {
                var filenameTmp = Path.Combine(tmpPath, ToLeonDataTmp);

                File.AppendAllLines(filenameTmp, leonResultsFelt, Encoding.GetEncoding("ISO-8859-1"));
            }

            if (leonResultsBane.Any())
            {
                var filenameTmp = Path.Combine(tmpPathMinne, ToLeonDataTmp);

                File.AppendAllLines(filenameTmp, leonResultsBane, Encoding.GetEncoding("ISO-8859-1"));
            }
        }
Пример #7
0
        public static void WriteLeonResults(
            List <int> finishedShooters,
            List <OrionResult> orionResults,
            OrionSetupViewModel orionSetup,
            List <LeonPerson> leonPersons,
            List <MinneRegistration> minnePersons)
        {
            var tmpBasePath = DatabaseApi.GetActiveCompetition();

            var tmpPath      = Path.Combine(tmpBasePath, "LeonTmp");
            var tmpPathMinne = Path.Combine(tmpBasePath, "MinneLeonTemp");


            if (!Directory.Exists(tmpPath))
            {
                Directory.CreateDirectory(tmpPath);
            }

            if (!Directory.Exists(tmpPathMinne))
            {
                Directory.CreateDirectory(tmpPathMinne);
            }

            var leonResultsFelt           = new List <string>();
            var leonResultsBane           = new List <string>();
            MinneRegistration minnePerson = null;
            LeonPerson        leonPerson  = null;

            foreach (var finishedShooter in finishedShooters)
            {
                var allResultsForShooter = orionResults.Where(o => o.ShooterId == finishedShooter);
                leonPerson = leonPersons.SingleOrDefault(l => l.ShooterId == finishedShooter);

                if (minnePersons != null)
                {
                    minnePerson = minnePersons.SingleOrDefault(l => l.ShooterId == finishedShooter);
                }

                int           sumFelt        = 0;
                int           sumBane        = 0;
                List <string> allFeltSeries  = new List <string>();
                List <string> allMinneSeries = new List <string>();

                var allRanges = orionSetup.OrionViewModels.SelectMany(o => o.RangeViews).OrderBy(r => r.RangeId);
                ////foreach (var orion in orionSetup.OrionViewModels)
                ////{
                foreach (var rangeViewModel in allRanges)
                {
                    if (rangeViewModel.RangeType == RangeType.Shooting)
                    {
                        var resultForThisRange = CalculateOrionAndRange.GetResultForThisRange(
                            allResultsForShooter,
                            rangeViewModel.Parent,
                            rangeViewModel);
                        if (resultForThisRange == null)
                        {
                            if (rangeViewModel.ResultType == ResultType.Felt)
                            {
                                allFeltSeries.Add(string.Empty);
                            }
                        }
                        else
                        {
                            if (resultForThisRange.ResultType == ResultType.Felt)
                            {
                                sumFelt += resultForThisRange.GetSum();
                                resultForThisRange.ValidSeries = resultForThisRange.CalculateValidSeriesForRange(rangeViewModel);

                                allFeltSeries.AddRange(resultForThisRange.ValidSeries);
                            }
                            else if (resultForThisRange.ResultType == ResultType.Bane)
                            {
                                sumBane += resultForThisRange.GetSum();
                                foreach (var rawSerie in resultForThisRange.Series)
                                {
                                    int len = rangeViewModel.CountingShoots;

                                    if (rawSerie.Length < rangeViewModel.CountingShoots)
                                    {
                                        len = rawSerie.Length;
                                    }
                                    string serieSingle = rawSerie.Substring(0, len);
                                    int    slen        = serieSingle.Length;
                                    while (slen < rangeViewModel.CountingShoots)
                                    {
                                        serieSingle = serieSingle + "0";
                                        slen++;
                                    }
                                    allMinneSeries.Add(serieSingle);
                                }
                            }
                        }
                    }
                }
                ////}

                ////foreach (var orionResult in allResultsForShooter)
                ////{
                ////    if (orionResult.ResultType == ResultType.Felt)
                ////    {
                ////        sumFelt += orionResult.GetSum();
                ////        allFeltSeries.AddRange(orionResult.Series);
                ////    }
                ////    else if (orionResult.ResultType == ResultType.Bane)
                ////    {
                ////        sumBane += orionResult.GetSum();
                ////        allMinneSeries.AddRange(orionResult.Series);
                ////    }
                ////}

                if (allFeltSeries.Any() && leonPerson != null)
                {
                    var allShots = string.Join(";", allFeltSeries).ToUpper();

                    var leonLine = string.Format(
                        "{0};{1};{2};{3};{4};{5};{6};{7};{8};",
                        leonPerson.Range,
                        leonPerson.Team,
                        leonPerson.Target,
                        leonPerson.ShooterId,
                        leonPerson.Name,
                        leonPerson.ClubName,
                        leonPerson.Class,
                        sumFelt,
                        allShots);

                    leonResultsFelt.Add(leonLine);
                }

                if (allMinneSeries.Any() && minnePerson != null)
                {
                    var allShots = string.Join(";", allMinneSeries).ToUpper();

                    var leonLine = string.Format(
                        "{0};{1};{2};{3};{4};{5};{6};{7};{8};",
                        minnePerson.Range,
                        minnePerson.Team,
                        minnePerson.Target,
                        minnePerson.ShooterId,
                        minnePerson.Name,
                        minnePerson.ClubName,
                        minnePerson.Class,
                        sumBane,
                        allShots);

                    leonResultsBane.Add(leonLine);
                }

                var finishedPerson = new FinishedPerson
                {
                    Name      = leonPerson.Name,
                    ShooterId = leonPerson.ShooterId,
                    Target    = leonPerson.Target,
                    Team      = leonPerson.Team
                };
                DatabaseApi.Save(finishedPerson);
            }

            lock (syncObject)
            {
                if (leonResultsFelt.Any())
                {
                    //var writefilenameTmp = Path.Combine(tmpPath, "WRITE"+ToLeonDataTmp);
                    var filenameTmp = Path.Combine(tmpPath, ToLeonDataTmp);
                    File.AppendAllLines(filenameTmp, leonResultsFelt, Encoding.GetEncoding("ISO-8859-1"));
                    //if (File.Exists(filenameTmp))
                    //{
                    //    Log.Error("File alredy exsist deliting {0}", filenameTmp);
                    //    File.Delete(filenameTmp);
                    //}

                    //File.Move(writefilenameTmp, filenameTmp);
                }

                if (leonResultsBane.Any())
                {
                    //var writefilenameTmp = Path.Combine(tmpPathMinne, "WRITE"+ToLeonDataTmp);
                    var filenameTmp = Path.Combine(tmpPathMinne, ToLeonDataTmp);
                    File.AppendAllLines(filenameTmp, leonResultsBane, Encoding.GetEncoding("ISO-8859-1"));
                    //if (File.Exists(filenameTmp))
                    //{
                    //    Log.Error("File alredy exsist deliting {0}", filenameTmp);
                    //    File.Delete(filenameTmp);
                    //}
                    //File.Move(writefilenameTmp, filenameTmp);
                }
            }
        }