Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/11 16:15:23 (13 years ago)
Author:
ascheibe
Message:

#1233 slave ui now receives status information and displays it in doughnut chart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Core.cs

    r5793 r5826  
    2424using System.Diagnostics;
    2525using System.IO;
    26 using System.Runtime.CompilerServices;
    2726using System.ServiceModel;
    2827using System.Threading;
     
    3332
    3433
    35 
    3634namespace HeuristicLab.Clients.Hive.SlaveCore {
    3735  /// <summary>
    38   /// The core component of the Hive Client
     36  /// The core component of the Hive Slave.
     37  /// Handles commands sent from the Hive Server.
    3938  /// </summary>
    4039  public class Core : MarshalByRefObject {
    41 
    42     //TODO: this class should be a singleton; there is only one instance, the reference is meanwhile save in TheCore
    43     public static Core TheCore;
    44 
    4540    public EventLog ServiceEventLog { get; set; }
    4641
     
    6863    }
    6964
    70     public Core() {
    71       TheCore = this;
    72     }
     65    public Core() { }
    7366
    7467    /// <summary>
     
    8073
    8174      try {
     75        ConfigManager manager = ConfigManager.Instance;
     76        manager.Core = this;
     77
    8278        //start the client communication service (pipe between slave and slave gui)
    8379        slaveComm = new ServiceHost(typeof(SlaveCommunicationService));
     
    8783        clientCom.LogMessage("Hive Slave started");
    8884
    89         ConfigManager manager = ConfigManager.Instance;
    90         manager.Core = this;
    91 
    9285        wcfService = WcfService.Instance;
    9386        RegisterServiceEvents();
    9487
    95         StartHeartbeats(); // Start heartbeats thread
     88        StartHeartbeats(); // Start heartbeats thread       
    9689        DispatchMessageQueue(); // dispatch messages until abortRequested
    9790      }
     
    125118        MessageContainer container = queue.GetMessage();
    126119        DetermineAction(container);
     120        clientCom.StatusChanged(ConfigManager.Instance.GetStatusForClientConsole());
    127121      }
    128122    }
     
    149143    /// Reads and analyzes the Messages from the MessageQueue and starts corresponding actions
    150144    /// </summary>
    151     /// <param name="container">The Container, containing the message</param>
     145    /// <param name="container">The container, containing the message</param>
    152146    private void DetermineAction(MessageContainer container) {
    153147      clientCom.LogMessage("Message: " + container.Message.ToString() + " for job: " + container.JobId);
     
    169163              }
    170164              JobData jobData = wcfService.GetJobData(job.Id);
    171               if (job == null) throw new JobDataNotFoundException(jobId);
     165              if (jobData == null) throw new JobDataNotFoundException(jobId);
     166              SlaveStatusInfo.JobsFetched++;
    172167              job = wcfService.UpdateJobState(job.Id, JobState.Calculating, null);
    173168              StartJobInAppDomain(job, jobData);
     
    228223            clientCom.LogMessage("Sending the paused job with id: " + job.Id);
    229224            wcfService.UpdateJobData(job, sJob, ConfigManager.Instance.GetClientInfo().Id, JobState.Paused);
    230             SlaveStatusInfo.JobsProcessed++;    //TODO: count or not count, thats the question
    231225          }
    232226          catch (Exception e) {
     
    254248            clientCom.LogMessage("Sending the stoppped job with id: " + job.Id);
    255249            wcfService.UpdateJobData(job, sJob, ConfigManager.Instance.GetClientInfo().Id, JobState.Finished);
    256             SlaveStatusInfo.JobsProcessed++;    //TODO: count or not count, thats the question
    257250          }
    258251          catch (Exception e) {
     
    365358    /// stop slave, except for client gui communication,
    366359    /// primarily used by gui if core is running as windows service
    367     /// </summary>
    368     //TODO: do we need an AbortSleep?
     360    /// </summary>   
    369361    private void Sleep() {
    370362      clientCom.LogMessage("Sleep received");
     
    380372    /// atm only used when executor is waiting for child jobs
    381373    /// </summary>
    382     /// <param name="data"></param>
    383     [MethodImpl(MethodImplOptions.Synchronized)]
    384374    public void PauseWaitJob(JobData data) {
    385375      if (!Jobs.ContainsKey(data.JobId)) {
     
    397387    /// once the connection gets reestablished, the job gets submitted
    398388    /// </summary>
    399     /// <param name="jobId"></param>
    400     [MethodImpl(MethodImplOptions.Synchronized)]
    401389    public void SendFinishedJob(Guid jobId) {
    402390      try {
     
    413401        cJob.ExecutionTime = engines[jobId].ExecutionTime;
    414402
     403        if (engines[jobId].Aborted) {
     404          SlaveStatusInfo.JobsAborted++;
     405        } else {
     406          SlaveStatusInfo.JobsProcessed++;
     407        }
     408
     409        if (engines[jobId].CurrentException != string.Empty) {
     410          wcfService.UpdateJobState(jobId, JobState.Failed, engines[jobId].CurrentException);
     411        }
     412
    415413        JobData sJob = engines[jobId].GetFinishedJob();
    416         // cJob.Exception = engines[jId].CurrentException; // can there be an exception if the job is sent normally. the exception should be entered in the statelog with the corresponding state (Failed)
    417         cJob.ExecutionTime = engines[jobId].ExecutionTime;
    418 
    419414        try {
    420415          clientCom.LogMessage("Sending the finished job with id: " + jobId);
    421416          wcfService.UpdateJobData(cJob, sJob, ConfigManager.Instance.GetClientInfo().Id, JobState.Finished);
    422           SlaveStatusInfo.JobsProcessed++;
    423417        }
    424418        catch (Exception e) {
     
    426420        }
    427421        finally {
    428           KillAppDomain(jobId); // kill app-domain in every case
     422          KillAppDomain(jobId);
    429423          heartbeatManager.AwakeHeartBeatThread();
    430424        }
     
    437431    /// <summary>
    438432    /// A new Job from the wcfService has been received and will be started within a AppDomain.
    439     /// </summary>
    440     /// <param name="sender"></param>
    441     /// <param name="e"></param>
     433    /// </summary>   
    442434    private void StartJobInAppDomain(Job myJob, JobData jobData) {
    443435      clientCom.LogMessage("Received new job with id " + myJob.Id);
     436      clientCom.StatusChanged(ConfigManager.Instance.GetStatusForClientConsole());
    444437      if (engines.ContainsKey(myJob.Id))
    445438        throw new Exception("Job with key " + myJob.Id + " already exists");
     
    472465            engines.Add(myJob.Id, engine);
    473466            engine.Start(jobData.Data);
    474             SlaveStatusInfo.JobsFetched++;
    475             clientCom.LogMessage("Increment FetchedJobs to:" + SlaveStatusInfo.JobsFetched);
    476467          }
    477468        }
     
    501492    /// This is necessary if the core thread has to execute certain actions, e.g.
    502493    /// killing of an app domain.
    503     /// </summary>
    504     /// <typeparam name="T"></typeparam>
    505     /// <param name="action"></param>
    506     /// <param name="parameter"></param>
     494    /// </summary>   
    507495    /// <returns>true if the calling method can continue execution, else false</returns>
    508496    public void EnqueueExecutorMessage<T>(Action<T> action, T parameter) {
     
    516504    /// Kill a appdomain with a specific id.
    517505    /// </summary>
    518     /// <param name="id">the GUID of the job</param>
    519     //[MethodImpl(MethodImplOptions.Synchronized)]
     506    /// <param name="id">the GUID of the job</param>   
    520507    public void KillAppDomain(Guid id) {
    521508      if (Thread.CurrentThread.ManagedThreadId != this.coreThreadId) {
     
    562549      }
    563550      GC.Collect();
     551      clientCom.StatusChanged(ConfigManager.Instance.GetStatusForClientConsole());
    564552    }
    565553  }
Note: See TracChangeset for help on using the changeset viewer.