Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14009 for branches/thasling


Ignore:
Timestamp:
07/06/16 16:47:47 (8 years ago)
Author:
thasling
Message:

#2615:
made minor changes,
wrong commit happende last time, so still tbd:
-sort List
-dispose of anaylzer is never called

Location:
branches/thasling/DistributedGA
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core/Implementation/PeerNetworkMessageHandler.cs

    r13982 r14009  
    2222    //two queues are used to gather and and provide population more efficiently
    2323    private object activeQueueLocker = new Object();
    24     private SizedConcurrentQueue<KeyValuePair<PeerInfo,byte[]>> writeQueue;
     24    private SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>> writeQueue;
    2525    private SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>> readQueue;
    2626
     
    2929
    3030    private double communicationRate;
    31     private Random rand;
    3231
    3332    public event EventHandler<Exception> ExceptionOccurend;
     
    4241
    4342        this.communicationRate = communicationRate;
    44         rand = new Random();
    4543
    4644        writeQueue = new SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>>();
    47         readQueue = new SizedConcurrentQueue<KeyValuePair<PeerInfo,byte[]>>();
     45        readQueue = new SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>>();
    4846        writeQueue.Limit = messageCacheCapacity;
    4947        readQueue.Limit = writeQueue.Limit;
     
    5452
    5553        peerListManager = new WcfPeerListManager();
    56         peerListManager.Init(ownInstance, contactServerUrl);
     54        peerListManager.Init(ownInstance, contactServerUrl, communicationRate);
    5755
    5856        sender = new WcfMessageSender();
     
    7876    public void PublishDataToNetwork(byte[] data) {
    7977      try {
    80         var peers = peerListManager.GetPeerList();
    81         foreach (PeerInfo peer in peerListManager.GetPeerList()) {
    82           var peersForMessaging = ChoosePeersForMessaging(ref peers);
    83 
    84           //maybe something will go wrong during network communication...
     78        var allPeers = peerListManager.GetPeerList();
     79        foreach (PeerInfo peer in allPeers) {
    8580          try {
    8681            sender.SendData(peer, data);
     
    9085          }
    9186        }
     87
    9288      }
    9389      catch (Exception ex) {
     
    9995      try {
    10096        List<KeyValuePair<PeerInfo, byte[]>> res = new List<KeyValuePair<PeerInfo, byte[]>>();
    101         KeyValuePair<PeerInfo,byte[]> item;
     97        KeyValuePair<PeerInfo, byte[]> item;
    10298        lock (activeQueueLocker) {
    10399          //changing the current queue for storing items to send
     
    131127
    132128    private void PropagateException(Exception ex) {
    133       //if (CountdownCompleted != null)
    134       //  CountdownCompleted(this, e);
    135129      if (ExceptionOccurend != null) {
    136130        ExceptionOccurend(this, ex);
    137131      }
    138     }
    139 
    140     private List<PeerInfo> ChoosePeersForMessaging(ref List<PeerInfo> allPeers) {
    141       Shuffle<PeerInfo>(allPeers);
    142       int toTake = Convert.ToInt32(allPeers.Count * communicationRate) + 1;
    143       if (allPeers.Count > 0 && toTake == 0) {
    144         toTake = 1;
    145       }
    146       return allPeers.Take(toTake).ToList(); ;
    147132    }
    148133
     
    161146    }
    162147
    163     private void Shuffle<T>(IList<T> list) {
    164       int n = list.Count;
    165       while (n > 1) {
    166         n--;
    167         int k = rand.Next(n + 1);
    168         T value = list[k];
    169         list[k] = list[n];
    170         list[n] = value;
    171       }
    172     }
    173 
    174148    private void OnDataRecieved(object sender, MessageRecieveEventArgs e) {
    175149      if (e != null && e.Sender.ProblemInstance.Equals(ownInstance.ProblemInstance)) {
    176150        lock (activeQueueLocker) {
    177             writeQueue.Enqueue(new KeyValuePair<PeerInfo, byte[]>(e.Sender, e.data));
     151          writeQueue.Enqueue(new KeyValuePair<PeerInfo, byte[]>(e.Sender, e.data));
    178152        }
    179153
  • branches/thasling/DistributedGA/DistributedGA.Core/Implementation/WcfMessageSender.cs

    r13982 r14009  
    1717    private SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>> bufferedMessagesWrite;
    1818    private SizedConcurrentQueue<KeyValuePair<PeerInfo, byte[]>> bufferedMessagesRead;
    19 
    2019
    2120    private Timer timer; //sends cached messages to network in background
     
    8079        }
    8180        //for (int i = 0; i <= messagePackage.Value.GetUpperBound(0); i++) {
    82           cache[messagePackage.Key].Add(messagePackage.Value);
     81        cache[messagePackage.Key].Add(messagePackage.Value);
    8382        //}
    8483      }
  • branches/thasling/DistributedGA/DistributedGA.Core/Implementation/WcfPeerListManager.cs

    r13982 r14009  
    2222    private IContactService client;
    2323
    24     private IContactService heartbeatClient;
     24    private List<PeerInfo> cachedPeerList;
    2525
     26    private double communicationRate;
    2627
     28    private Random rand;
    2729
    28     public void Init(PeerInfo source, string contactServerUrl) {
     30    public void Init(PeerInfo source, string contactServerUrl, double communicationRate) {
    2931      serverString = contactServerUrl;
     32      this.communicationRate = communicationRate;
    3033      myself = source;
    31 
    32       //Init ChannelFactory and Clients
     34      cachedPeerList = new List<PeerInfo>();
     35      rand = new Random();
     36      //Init ChannelFactory and Client
    3337      var binding = new NetTcpBinding();
    3438      var endpoint = new EndpointAddress(serverString);
    3539      myChannelFactory = new ChannelFactory<IContactService>(binding, endpoint);
    3640      client = myChannelFactory.CreateChannel();
    37       heartbeatClient = myChannelFactory.CreateChannel();
    3841      //Register Peer
    39       client.RegisterPeer(source);
     42      client.RegisterPeer(myself);
    4043      //Start heartbeat timer
    4144      timer = new Timer(1000 * 20); //each 20 seconds
    42       timer.Elapsed += SendHeartbeatToServer;
     45      timer.Elapsed += RefreshPeerList;
    4346      timer.Start();
    4447    }
    4548
    4649    public List<PeerInfo> GetPeerList() {
    47       try {
    48         var allPeers = client.GetPeerList(myself); //maybe timout exception...
    49         return allPeers;
    50       }
    51       catch { } //if maybe sending failed (because of connection lost, etc.): just ignore
    52       return new List<PeerInfo>();
     50      return cachedPeerList;
    5351    }
    5452
     
    6159      timer.Dispose();
    6260      ((IClientChannel)client).Close();
    63       ((IClientChannel)heartbeatClient).Close();
    6461      myChannelFactory.Close();
    65       client = null;
    6662      myChannelFactory = null;
    6763    }
    6864
    69     private void SendHeartbeatToServer(object sender, ElapsedEventArgs e) {
     65    private List<PeerInfo> ChoosePeersForMessaging(ref List<PeerInfo> allPeers) {
     66      Shuffle<PeerInfo>(allPeers);
     67      int toTake = Convert.ToInt32(allPeers.Count * communicationRate) + 1;
     68      if (allPeers.Count > 0 && toTake == 0) {
     69        toTake = 1;
     70      }
     71      return allPeers.Take(toTake).ToList(); ;
     72    }
     73
     74    private void Shuffle<T>(IList<T> list) {
     75      int n = list.Count;
     76      while (n > 1) {
     77        n--;
     78        int k = rand.Next(n + 1);
     79        T value = list[k];
     80        list[k] = list[n];
     81        list[n] = value;
     82      }
     83    }
     84
     85    private void RefreshPeerList(object sender, ElapsedEventArgs e) {
    7086      lock (timerLock) {
    7187        try {
    72           heartbeatClient.UpdateHeartbeat(myself);
     88          var allPeers = client.GetPeerList(myself);
     89          cachedPeerList = ChoosePeersForMessaging(ref allPeers);
    7390        }
    7491        catch { } //nothing to do
  • branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs

    r13982 r14009  
    66  public interface IPeerListManager {
    77
    8     void Init(PeerInfo source, string contactServerUrl); //Registers own instance at the contact-server
     8    void Init(PeerInfo source, string contactServerUrl, double communicationRate); //Registers own instance at the contact-server
    99
    1010    List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
  • branches/thasling/DistributedGA/DistributedGA.Hive/MigrationStrategy.cs

    r13957 r14009  
    66
    77namespace DistributedGA.Hive {
    8   public enum MigrationStrategy  { TakeBestReplaceBad, TakeRandomReplaceBad, TakeBestReplaceRandom, TakeRandomReplaceRandom };
     8  public enum MigrationStrategy  { Best, Worst, Random };
    99}
  • branches/thasling/DistributedGA/DistributedGA.Hive/P2PMigrationAnalyzer.cs

    r13997 r14009  
    7272    }
    7373
    74     public IConstrainedValueParameter<EnumValue<MigrationStrategy>> MigrationStrategyParameter {
    75       get { return (IConstrainedValueParameter<EnumValue<MigrationStrategy>>)Parameters["MigrationStrategy"]; }
     74    public IConstrainedValueParameter<EnumValue<MigrationStrategy>> MigrationStrategySelectParameter {
     75      get { return (IConstrainedValueParameter<EnumValue<MigrationStrategy>>)Parameters["MigrationStrategySelect"]; }
     76    }
     77
     78    public IConstrainedValueParameter<EnumValue<MigrationStrategy>> MigrationStrategyReplaceParameter {
     79      get { return (IConstrainedValueParameter<EnumValue<MigrationStrategy>>)Parameters["MigrationStrategyReplace"]; }
    7680    }
    7781
     
    100104      Parameters.Add(new LookupParameter<BoolValue>("Maximization"));
    101105      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", 1));
    102       Parameters.Add(new ValueParameter<IntValue>("MigrationInterval", "", new IntValue(1)));
     106      Parameters.Add(new ValueParameter<IntValue>("MigrationInterval", "", new IntValue(5)));
    103107      Parameters.Add(new ValueParameter<PercentValue>("MigrationRate", "", new PercentValue(0.05)));
    104108      Parameters.Add(new ValueParameter<PercentValue>("CommunicationRate", "", new PercentValue(0.10)));
    105       Parameters.Add(new ValueParameter<IntValue>("MessageCacheCapacity", "", new IntValue(100)));
     109      Parameters.Add(new ValueParameter<IntValue>("MessageCacheCapacity", "", new IntValue(1000)));
    106110      Parameters.Add(new ValueParameter<StringValue>("LanIpPrefix", "", new StringValue("10.")));
    107111      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator"));
     
    111115
    112116      var validValues = new ItemSet<EnumValue<MigrationStrategy>>();
    113       validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.TakeBestReplaceBad));
    114       validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.TakeBestReplaceRandom));
    115       validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.TakeRandomReplaceBad));
    116       validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.TakeRandomReplaceRandom));
    117 
    118       Parameters.Add(new ConstrainedValueParameter<EnumValue<MigrationStrategy>>("MigrationStrategy", validValues, (new EnumValue<MigrationStrategy>(MigrationStrategy.TakeBestReplaceBad))));
     117      validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.Best));
     118      validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.Worst));
     119      validValues.Add(new EnumValue<MigrationStrategy>(MigrationStrategy.Random));
     120      Parameters.Add(new ConstrainedValueParameter<EnumValue<MigrationStrategy>>("MigrationStrategySelect", validValues, (new EnumValue<MigrationStrategy>(MigrationStrategy.Random))));
     121      Parameters.Add(new ConstrainedValueParameter<EnumValue<MigrationStrategy>>("MigrationStrategyReplace", validValues, (new EnumValue<MigrationStrategy>(MigrationStrategy.Random))));
     122
    119123    }
    120124
    121125    public override IDeepCloneable Clone(Cloner cloner) {
    122126      return new P2PMigrationAnalyzer(this, cloner);
    123     }
    124 
    125     public override void ClearState() {
    126       base.ClearState();
    127       h.Dispose();
    128       h = null;
    129127    }
    130128
     
    143141      if (h == null) {
    144142        Init();
     143        //TODO: sort population
     144
    145145      }
    146146      if (MigrationIterationsParameter.ActualValue == null) {
     
    160160        }
    161161        var popQualities = QualityParameter.ActualValue;
    162         var selectedMigStrat = MigrationStrategyParameter.Value.Value;
     162        var selectedMigStratSelect = MigrationStrategySelectParameter.Value.Value;
     163        var selectedMigStratReplace = MigrationStrategyReplaceParameter.Value.Value;
    163164
    164165        var rand = Random;
     
    168169        for (int i = 0; i < noOfEmigrants; i++) {
    169170          //select emigrant depending on strategy
    170           switch (selectedMigStrat) {
    171             case MigrationStrategy.TakeBestReplaceBad:
     171          switch (selectedMigStratSelect) {
     172            case MigrationStrategy.Best:
    172173              emigrants = scope.SubScopes[i];
    173174              emigrantsList.Add(emigrants);
    174175              break;
    175176
    176             case MigrationStrategy.TakeBestReplaceRandom:
    177               emigrants = scope.SubScopes[i];
    178               emigrantsList.Add(emigrants);
    179               break;
    180 
    181             case MigrationStrategy.TakeRandomReplaceBad:
     177            case MigrationStrategy.Random:
    182178              replIdx = rand.Next(scope.SubScopes.Count);
    183179              emigrants = scope.SubScopes[replIdx];
     
    185181              break;
    186182
    187             case MigrationStrategy.TakeRandomReplaceRandom:
    188               replIdx = rand.Next(scope.SubScopes.Count);
    189               emigrants = scope.SubScopes[replIdx];
     183            case MigrationStrategy.Worst:
     184              emigrants = scope.SubScopes[scope.SubScopes.Count - i];
    190185              emigrantsList.Add(emigrants);
    191186              break;
     187
    192188
    193189            default:
     
    226222
    227223              // replace individual in current population
    228               switch (selectedMigStrat) {
    229                 case MigrationStrategy.TakeBestReplaceBad:
     224              switch (selectedMigStratReplace) {
     225                case MigrationStrategy.Best:
    230226                  scope.SubScopes.RemoveAt(0);
    231227                  break;
    232228
    233                 case MigrationStrategy.TakeRandomReplaceBad:
    234                   scope.SubScopes.RemoveAt(0);
    235                   break;
    236 
    237                 case MigrationStrategy.TakeBestReplaceRandom:
    238                   //replace random
     229                case MigrationStrategy.Random:
    239230                  replIdx = rand.Next(scope.SubScopes.Count);
    240231                  scope.SubScopes.RemoveAt(replIdx);
    241232                  break;
    242233
    243                 case MigrationStrategy.TakeRandomReplaceRandom:
     234                case MigrationStrategy.Worst:
    244235                  //replace random
    245                   replIdx = rand.Next(scope.SubScopes.Count);
    246                   scope.SubScopes.RemoveAt(replIdx);
     236                  scope.SubScopes.RemoveAt(scope.SubScopes.Count);
    247237                  break;
    248238
Note: See TracChangeset for help on using the changeset viewer.