Beispiel #1
0
        private void ConnectCallback(IAsyncResult result)
        {
            if (_lastPingResult != _tcpClient.Connected)
            {
                OnPingResultChanged(new PingResult(_tcpClient.Connected, _stratumConnection.ToString()));
            }

            _lastPingResult = _tcpClient.Connected;

            // We are connected successfully
            try
            {
                var networkStream = _tcpClient.GetStream();
                var buffer        = new byte[_tcpClient.ReceiveBufferSize];

                // Now we are connected start async read operation.
                networkStream.BeginRead(buffer, 0, buffer.Length, ReadCallback, buffer);

                SendSubscribe();
                SendAuthorize();
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Socket error {_stratumConnection.Algo}:" + ex.Message);
            }
        }
Beispiel #2
0
        // Callback for Read operation
        private void ReadCallback(IAsyncResult result)
        {
            if (_oldReadAsyncResult != null && result != _oldReadAsyncResult)
            {
                return;
            }

            NetworkStream networkStream;
            int           bytesread;

            var buffer = result.AsyncState as byte[];

            try
            {
                networkStream = _tcpClient.GetStream();
                bytesread     = networkStream.EndRead(result);
            }
            catch (Exception ex)
            {
                Console.WriteLine("Socket error:" + ex.Message);
                return;
            }

            if (bytesread == 0)
            {
                //Debug.WriteLine(_stratumConnection.Algo + "    " + DateTime.Now + " Disconnected. Reconnecting...");

                _tcpClient.Close();
                _tcpClient = null;

                PendingAcks.Clear();

                Thread.Sleep(1000);

                ConnectToServer();

                return;
            }

            // Get the data
            var data = Encoding.ASCII.GetString(buffer, 0, bytesread);

            Debug.WriteLine($"|{_stratumConnection.Algo}| " + data);

            _page = _page + data;

            var foundClose = _page.IndexOf('}');

            while (foundClose > 0)
            {
                var currentString = _page.Substring(0, foundClose + 1);

                // We can get either a command or response from the server. Try to deserialise both
                var currentCommand  = Helpers.JsonDeserialize <StratumCommand>(currentString);
                var currentResponse = Helpers.JsonDeserialize <StratumResponse>(currentString);

                var e = new StratumEventArgs {
                    Algo = _stratumConnection.Algo
                };

                if (currentCommand.Method != null)             // We got a command
                {
                    e.MiningEventArg = currentCommand;

                    switch (currentCommand.Method)
                    {
                    case "mining.notify":
                        GotNotify?.Invoke(this, e);
                        break;

                    case "mining.set_difficulty":
                        GotSetDifficulty?.Invoke(this, e);
                        break;
                    }
                }
                else if (currentResponse.Error != null || currentResponse.Result != null)       // We got a response
                {
                    e.MiningEventArg = currentResponse;

                    // Find the command that this is the response to and remove it from the list of commands that we're waiting on a response to
                    var command = currentResponse.Id == null ? null : (string)PendingAcks[currentResponse.Id];

                    if (currentResponse.Id != null && PendingAcks.ContainsKey(currentResponse.Id))
                    {
                        PendingAcks.Remove(currentResponse.Id);
                    }

                    if (command == null)
                    {
                        Console.WriteLine("Unexpected Response");
                    }
                    else
                    {
                        GotResponse?.Invoke(command, e);

                        if (command.Contains("mining.authorize"))
                        {
                            var authSuccess = bool.Parse((e.MiningEventArg as StratumResponse)?.Result.ToString());

                            if (_lastAuthResult != authSuccess)
                            {
                                OnPingResultChanged(new PingResult(authSuccess, _stratumConnection.ToString()));
                            }

                            _lastAuthResult = authSuccess;
                        }
                    }
                }

                _page      = _page.Remove(0, foundClose + 2);
                foundClose = _page.IndexOf('}');
            }

            // Then start reading from the network again.
            _oldReadAsyncResult = networkStream.BeginRead(buffer, 0, buffer.Length, ReadCallback, buffer);
        }