Client/MainForm.cs
author sl
Fri, 15 Aug 2014 13:26:38 +0200
changeset 32 4c416d2878dd
parent 31 f19b04646b6a
child 33 1363bda20171
permissions -rw-r--r--
Reworking our protocols. Client name now displayed in our clients tab.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.ComponentModel;
     4 using System.Data;
     5 using System.Drawing;
     6 using System.Linq;
     7 using System.Text;
     8 using System.Threading.Tasks;
     9 using System.Windows.Forms;
    10 using System.ServiceModel;
    11 using System.ServiceModel.Channels;
    12 using System.Diagnostics;
    13 
    14 
    15 namespace SharpDisplayClient
    16 {
    17     public partial class MainForm : Form
    18     {
    19         Client iClient;
    20         Callback iCallback;
    21 
    22         public MainForm()
    23         {
    24             InitializeComponent();
    25         }
    26 
    27         private void buttonSetText_Click(object sender, EventArgs e)
    28         {
    29             //iClient.SetText(0,"Top");
    30             //iClient.SetText(1, "Bottom");
    31             iClient.SetTexts(new string[] { iClient.Name, iClient.SessionId });
    32         }
    33 
    34         private void MainForm_Load(object sender, EventArgs e)
    35         {
    36             iCallback = new Callback(this);
    37             //Instance context is then managed by our client class
    38             InstanceContext instanceContext = new InstanceContext(iCallback);
    39             iClient = new Client(instanceContext);
    40 
    41             //Connect using unique name
    42             //string name = DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss.fff tt");
    43             string name = "Client-" + (iClient.ClientCount() - 1);
    44             iClient.SetName(name);
    45             //Text = Text + ": " + name;
    46             Text = "[[" + name + "]]  " + iClient.SessionId;
    47 
    48         }
    49 
    50 
    51        
    52         public delegate void CloseConnectionDelegate();
    53         public delegate void CloseDelegate();
    54 
    55         /// <summary>
    56         /// 
    57         /// </summary>
    58         public void CloseConnectionThreadSafe()
    59         {
    60             if (this.InvokeRequired)
    61             {
    62                 //Not in the proper thread, invoke ourselves
    63                 CloseConnectionDelegate d = new CloseConnectionDelegate(CloseConnectionThreadSafe);
    64                 this.Invoke(d, new object[] { });
    65             }
    66             else
    67             {
    68                 //We are in the proper thread
    69                 if (IsClientReady())
    70                 {
    71                     Trace.TraceInformation("Closing client: " + iClient.SessionId);
    72                     iClient.Close();
    73                     Trace.TraceInformation("Closed client: " + iClient.SessionId);
    74                 }
    75 
    76                 iClient = null;
    77                 iCallback = null;
    78             }
    79         }
    80 
    81         /// <summary>
    82         /// 
    83         /// </summary>
    84         public void CloseThreadSafe()
    85         {
    86             if (this.InvokeRequired)
    87             {
    88                 //Not in the proper thread, invoke ourselves
    89                 CloseDelegate d = new CloseDelegate(CloseThreadSafe);
    90                 this.Invoke(d, new object[] { });
    91             }
    92             else
    93             {
    94                 //We are in the proper thread
    95                 Close();
    96             }
    97         }
    98 
    99 
   100         private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
   101         {
   102             CloseConnectionThreadSafe();
   103         }
   104 
   105         public bool IsClientReady()
   106         {
   107             return (iClient != null && iClient.State == CommunicationState.Opened);
   108         }
   109     }
   110 }