1 | using System;
|
---|
2 | using System.Collections.Concurrent;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.IO;
|
---|
5 | using System.Linq;
|
---|
6 | using System.ServiceModel;
|
---|
7 | using System.Timers;
|
---|
8 | using DistributedGA.Core.Domain;
|
---|
9 |
|
---|
10 | namespace DistributedGA.ContactServer {
|
---|
11 |
|
---|
12 | [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
|
---|
13 | public class ContactServiceImpl : IContactService {
|
---|
14 |
|
---|
15 | private ConcurrentDictionary<PeerInfo, DateTime> allPeers = null;
|
---|
16 |
|
---|
17 | private Timer timer = null;
|
---|
18 |
|
---|
19 | private Object logLock = new Object();
|
---|
20 |
|
---|
21 | private Object timerLock = new Object();//if elapsed takes too long, another thread also enters the method
|
---|
22 |
|
---|
23 | public ContactServiceImpl() {
|
---|
24 | allPeers = new ConcurrentDictionary<PeerInfo, DateTime>();
|
---|
25 |
|
---|
26 | timer = new Timer(1000); //each minute
|
---|
27 | timer.Elapsed += CleanUpContactTable;
|
---|
28 | timer.Start();
|
---|
29 | }
|
---|
30 |
|
---|
31 | public void RegisterPeer(PeerInfo source) {
|
---|
32 | try {
|
---|
33 | UpdateHeartbeat(source);
|
---|
34 | }
|
---|
35 | catch (Exception ex) {
|
---|
36 | AddError("ContactServiceImpl.RegisterPeer", ex);
|
---|
37 | }
|
---|
38 | }
|
---|
39 |
|
---|
40 | public List<PeerInfo> GetPeerList(PeerInfo source) {
|
---|
41 | try {
|
---|
42 | UpdateHeartbeat(source);
|
---|
43 | //only return peers of the same work group and not the sender itself
|
---|
44 | return allPeers.Keys.Where(x => {
|
---|
45 | if (source.ProblemInstance.Equals(x.ProblemInstance) &&
|
---|
46 | (!(x.IpAddress.Equals(source.IpAddress) && (x.Port.Equals(source.Port)))))
|
---|
47 | return true;
|
---|
48 | else
|
---|
49 | return false;
|
---|
50 | }).ToList();
|
---|
51 | }
|
---|
52 | catch (Exception ex) {
|
---|
53 | AddError("ContactServiceImpl.GetPeerList", ex);
|
---|
54 | return null;
|
---|
55 | }
|
---|
56 | }
|
---|
57 |
|
---|
58 | public void MakeLog(PeerInfo source, string msg) {
|
---|
59 | try {
|
---|
60 | // TODO
|
---|
61 | lock (logLock) {
|
---|
62 | File.AppendAllText("Log.txt", string.Concat(source.IpAddress, ":", source.Port, ",", source.ProblemInstance, ",", msg, Environment.NewLine));
|
---|
63 | }
|
---|
64 | }
|
---|
65 | catch {
|
---|
66 | //Nothing to do because maybe called from adderror
|
---|
67 | }
|
---|
68 | }
|
---|
69 |
|
---|
70 | public void UpdateHeartbeat(PeerInfo source) {
|
---|
71 | try {
|
---|
72 | Console.WriteLine("hb from {0}:{1}", source.IpAddress, source.Port);
|
---|
73 | DateTime now = DateTime.Now;
|
---|
74 | allPeers.AddOrUpdate(source, now, (k, v) => v = now);
|
---|
75 | }
|
---|
76 | catch (Exception ex) {
|
---|
77 | AddError("ContactServiceImpl.UpdateHeartbeat", ex);
|
---|
78 | }
|
---|
79 | }
|
---|
80 |
|
---|
81 | private void CleanUpContactTable(object sender, ElapsedEventArgs e) {
|
---|
82 | lock (timerLock) {
|
---|
83 | DateTime deadline = DateTime.Now;
|
---|
84 | //collect items to remove
|
---|
85 | List<PeerInfo> itemsToDelete = new List<PeerInfo>();
|
---|
86 | foreach (PeerInfo pi in allPeers.Keys) {
|
---|
87 | DateTime tmp;
|
---|
88 | if (allPeers.TryGetValue(pi, out tmp)) {
|
---|
89 | if (tmp.AddMinutes(1) < deadline) {
|
---|
90 | itemsToDelete.Add(pi);
|
---|
91 | }
|
---|
92 | }
|
---|
93 | }
|
---|
94 | //remove items
|
---|
95 | foreach (PeerInfo pi in itemsToDelete) {
|
---|
96 | DateTime tmp;
|
---|
97 | allPeers.TryRemove(pi, out tmp);
|
---|
98 | Console.WriteLine(string.Format("Removed peer {0}:{1} from dictionary because last access was: {2}", pi.IpAddress, pi.Port, tmp));
|
---|
99 | }
|
---|
100 | }
|
---|
101 | }
|
---|
102 |
|
---|
103 | private void AddError(string source, Exception ex) {
|
---|
104 | MakeLog(new PeerInfo() { ProblemInstance = "ContactServer Error at " + source }, ex.Message);
|
---|
105 | }
|
---|
106 |
|
---|
107 | }
|
---|
108 | }
|
---|