[7189] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7189] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Threading;
|
---|
| 24 | using HeuristicLab.Services.Hive.DataAccess;
|
---|
[12878] | 25 | using HeuristicLab.Services.Hive.DataAccess.Interfaces;
|
---|
[7189] | 26 |
|
---|
| 27 | namespace HeuristicLab.Services.Hive {
|
---|
| 28 | public class HiveJanitor {
|
---|
| 29 | private bool stop;
|
---|
[17928] | 30 | private AutoResetEvent runWaitHandle;
|
---|
[7189] | 31 |
|
---|
[12878] | 32 | private IPersistenceManager PersistenceManager {
|
---|
| 33 | get { return ServiceLocator.Instance.PersistenceManager; }
|
---|
[7189] | 34 | }
|
---|
[12878] | 35 | private IEventManager EventManager {
|
---|
[7189] | 36 | get { return ServiceLocator.Instance.EventManager; }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[12878] | 39 | private IStatisticsGenerator StatisticsGenerator {
|
---|
| 40 | get { return ServiceLocator.Instance.StatisticsGenerator; }
|
---|
[7189] | 41 | }
|
---|
| 42 |
|
---|
| 43 | public HiveJanitor() {
|
---|
| 44 | stop = false;
|
---|
[17928] | 45 | runWaitHandle = new AutoResetEvent(false);
|
---|
[7189] | 46 | }
|
---|
| 47 |
|
---|
| 48 | public void StopJanitor() {
|
---|
| 49 | stop = true;
|
---|
[17928] | 50 | runWaitHandle.Set();
|
---|
[7189] | 51 | }
|
---|
| 52 |
|
---|
[17928] | 53 | public void Run() {
|
---|
| 54 | while (!stop) {
|
---|
| 55 | RunCleanup();
|
---|
| 56 | RunGenerateStatistics();
|
---|
| 57 | runWaitHandle.WaitOne(Properties.Settings.Default.GenerateStatisticsInterval);
|
---|
| 58 | }
|
---|
| 59 | runWaitHandle.Close();
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[12878] | 62 | public void RunCleanup() {
|
---|
| 63 | var pm = PersistenceManager;
|
---|
[17928] | 64 | try {
|
---|
| 65 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting cleanup.");
|
---|
| 66 | bool cleanup = false;
|
---|
[12878] | 67 |
|
---|
[17928] | 68 | var lifecycleDao = pm.LifecycleDao;
|
---|
| 69 | pm.UseTransaction(() => {
|
---|
| 70 | var lifecycle = lifecycleDao.GetLastLifecycle();
|
---|
| 71 | if (lifecycle == null
|
---|
| 72 | || DateTime.Now - lifecycle.LastCleanup > Properties.Settings.Default.CleanupInterval) {
|
---|
| 73 | lifecycleDao.UpdateLifecycle();
|
---|
| 74 | cleanup = true;
|
---|
| 75 | }
|
---|
| 76 | pm.SubmitChanges();
|
---|
| 77 | }, true);
|
---|
[7189] | 78 |
|
---|
[17928] | 79 | if (cleanup) {
|
---|
| 80 | EventManager.Cleanup();
|
---|
[7189] | 81 | }
|
---|
[17928] | 82 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: cleanup finished.");
|
---|
| 83 | } catch (Exception e) {
|
---|
| 84 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log(string.Format("HiveJanitor: The following exception occured: {0}", e.ToString()));
|
---|
[7189] | 85 | }
|
---|
| 86 | }
|
---|
[12878] | 87 |
|
---|
| 88 | public void RunGenerateStatistics() {
|
---|
[17928] | 89 | try {
|
---|
| 90 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: starting generate statistics.");
|
---|
| 91 | StatisticsGenerator.GenerateStatistics();
|
---|
| 92 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log("HiveJanitor: generate statistics finished.");
|
---|
| 93 | } catch (Exception e) {
|
---|
| 94 | LogFactory.GetLogger(typeof(HiveJanitor).Namespace).Log(string.Format("HiveJanitor: The following exception occured: {0}", e));
|
---|
[12878] | 95 | }
|
---|
| 96 | }
|
---|
[7189] | 97 | }
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 |
|
---|
| 101 |
|
---|