[592] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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;
|
---|
[583] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Net;
|
---|
| 25 | using System.Net.Sockets;
|
---|
| 26 | using System.Text;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.Communication.Data;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Communication.Operators {
|
---|
| 32 | public class TcpNetworkInitiator : OperatorBase {
|
---|
| 33 |
|
---|
| 34 | public override string Description {
|
---|
| 35 | get { return @"Initiates a TCP socket, it opens one socket for sending and one socket for listening as specified in the configuration"; }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | public TcpNetworkInitiator() {
|
---|
| 39 | AddVariableInfo(new VariableInfo("DriverConfiguration", "A configuration object", typeof(TcpNetworkDriverConfiguration), VariableKind.In));
|
---|
| 40 | AddVariableInfo(new VariableInfo("NetworkConnection", "A connection object", typeof(SocketData), VariableKind.New));
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | public override IOperation Apply(IScope scope) {
|
---|
| 44 | TcpNetworkDriverConfiguration config = GetVariableValue<TcpNetworkDriverConfiguration>("DriverConfiguration", scope, true);
|
---|
| 45 | SocketData socket = new SocketData();
|
---|
| 46 | socket.Initialize(config);
|
---|
| 47 | while (!socket.Connect()) ;
|
---|
| 48 |
|
---|
| 49 | IVariableInfo info = GetVariableInfo("NetworkConnection");
|
---|
| 50 | if (info.Local)
|
---|
| 51 | AddVariable(new Variable(info.ActualName, socket));
|
---|
| 52 | else
|
---|
| 53 | scope.AddVariable(new Variable(scope.TranslateName(info.FormalName), socket));
|
---|
| 54 |
|
---|
| 55 | return null;
|
---|
| 56 | }
|
---|
| 57 | }
|
---|
| 58 | }
|
---|