Exemple #1
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);
        }
Exemple #2
0
        // Callback for Read operation
        private void ReadCallback(IAsyncResult result)
        {
            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)
            {
                Console.WriteLine(DateTime.Now + " Disconnected. Reconnecting...");

                _tcpClient.Close();
                _tcpClient = null;

                ConnectToServer();
                return;
            }

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

            Debug.WriteLine(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 command  = Helpers.JsonDeserialize <StratumCommand>(currentString);
                var response = Helpers.JsonDeserialize <StratumResponse>(currentString);

                var e = new StratumEventArgs();

                if (command.Method != null)             // We got a command
                {
                    Console.WriteLine(DateTime.Now + " Got Command: " + currentString);
                    Debug.WriteLine(DateTime.Now + " Got Command: " + currentString);
                    e.MiningEventArg = command;

                    switch (command.Method)
                    {
                    case "mining.notify":
                        //if (GotNotify != null)
                        //    GotNotify(this, e);
                        break;

                    case "mining.set_difficulty":
                        //if (GotSetDifficulty != null)
                        //    GotSetDifficulty(this, e);
                        break;
                    }
                }
                else if (response.Error != null || response.Result != null)       // We got a response
                {
                    Console.WriteLine(DateTime.Now + " Got Response: " + currentString);
                    Debug.WriteLine(DateTime.Now + " Got Response: " + currentString);
                    e.MiningEventArg = response;

                    // 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 Cmd = (string)PendingACKs[response.Id];

                    //if (Cmd == null)
                    //    Console.WriteLine("Unexpected Response");
                    //else if (GotResponse != null)
                    //    GotResponse(Cmd, e);
                }

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

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