예제 #1
0
        static void Main(string[] args)
        {
            try
            {
                LibCommon.UpdateNFLMatchups(false);
                return;

                DateTime start = DateTime.Now; // start timestamp

                // run program
                int picksRemindersCount = PicksReminders.SendPicksReminders();
                int formRecapCount      = ForumRecaps.SendDailyForumRecaps();

                DateTime finish = DateTime.Now; // finish timestamp



                // report results

                string type = "Daily Engine Version " + GetVersion();
                string desc = "Started {" + start + "}, Completed {" + finish + "}, Pick Reminders {" + picksRemindersCount + " sent}, Discussion Recaps {" + formRecapCount + " sent}.";

                LogRun(type, desc);
                if (DateTime.Now < Convert.ToDateTime("2/8/14"))
                {
                    LibCommon.SendEmail("*****@*****.**", type, "Should be last email for a while!<hr>" + desc, "Daily Engine");
                }
            }
            catch (Exception ex)
            {
                LibCommon.SendEmail("*****@*****.**", "ERROR in Daily Engine", ex.ToString(), "Daily Engine");
            }
        }
예제 #2
0
        static void Main(string[] args)
        {
            System.Net.WebClient client = new System.Net.WebClient();
            while (true)
            {
                try
                {
                    // 1. update data
                    bool changesMade = LibCommon.UpdateNFLMatchups(false);

                    // 2. try force refresh cache
                    if (changesMade)
                    {
                        try
                        {
                            string url = LibCommon.WebsiteUrlRoot() + "LoadCache.aspx?key=true";
                            client.DownloadString(url);
                        }
                        catch { }
                    }

                    // 3. report
                    if (LibCommon.IsAppInTestMode())
                    {
                        LibCommon.SendEmail("*****@*****.**", "Console Service Successful", "At " + DateTime.Now, "Console Service");
                    }

                    // 4. wait
                    System.Threading.Thread.Sleep(1000 * 60 * RUN_INVERVAL_MINUTES);
                }
                catch (Exception ex)
                {
                    try
                    {
                        _exceptionCount++;
                        string body = ex.ToString();

                        if (_exceptionCount == EXCEPTION_THRESHOLD)
                        {
                            body = "PROGRAM TERMINATED AFTER " + EXCEPTION_THRESHOLD + " ATTEMPTS<br /><br />" + body;
                        }

                        LibCommon.SendEmail("*****@*****.**", "Console Service Exception", body, "Console Service");

                        if (_exceptionCount == EXCEPTION_THRESHOLD)
                        {
                            return;
                        }
                    }
                    catch (Exception ex2)
                    {
                        string message = "Ex1={" + ex.Message + "}\n\nEx2={" + ex2.Message + "}";
                        Console.WriteLine(message);
                        Console.ReadLine();
                        return;
                    }
                }
            }
        }
예제 #3
0
        private void DoWork()
        {
            System.Net.WebClient client = new System.Net.WebClient();
            while (true)
            {
                if (bgw.CancellationPending)
                {
                    return;
                }

                try
                {
                    // 1. update data
                    bool changesMade = LibCommon.UpdateNFLMatchups(false);

                    // 2. try force refresh cache
                    if (changesMade)
                    {
                        try
                        {
                            string url = LibCommon.WebsiteUrlRoot() + "LoadCache.aspx?key=true";
                            client.DownloadString(url);
                        }
                        catch { }
                    }

                    // sleep only 15 seconds during gameplay, otherwise 15 minutes
                    int sleep = changesMade ? 1000 * 15 : 1000 * 60 * 15;

                    // 3. report
                    if (LibCommon.IsAppInTestMode())
                    {
                        LibCommon.SendEmail("*****@*****.**", "Console Service Successful", "At " + DateTime.Now + ". Sleep = " + sleep, "Console Service");
                    }

                    // 4. wait
                    System.Threading.Thread.Sleep(sleep);
                }
                catch (Exception ex)
                {
                    try
                    {
                        _exceptionCount++;
                        string body = ex.ToString();

                        if (_exceptionCount == EXCEPTION_THRESHOLD)
                        {
                            body = "PROGRAM TERMINATED AFTER " + EXCEPTION_THRESHOLD + " ATTEMPTS<br /><br />" + body;
                        }

                        LibCommon.SendEmail("*****@*****.**", "Console Service Exception", body, "Console Service");

                        if (_exceptionCount == EXCEPTION_THRESHOLD)
                        {
                            return;
                        }
                    }
                    catch (Exception ex2)
                    {
                        string message = "Ex1={" + ex.Message + "}\n\nEx2={" + ex2.Message + "}";
                        Console.WriteLine(message);
                        Console.ReadLine();
                        return;
                    }
                }
            }
        }