/examples/src/main/java/com/google/bitcoin/examples/PrintPeers.java

https://code.google.com/ · Java · 111 lines · 78 code · 12 blank · 21 comment · 9 complexity · 2210d2f65c10e979ebb9743597757ae9 MD5 · raw file

  1. /**
  2. * Copyright 2011 John Sample.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.bitcoin.examples;
  17. import com.google.bitcoin.core.NetworkParameters;
  18. import com.google.bitcoin.core.TCPNetworkConnection;
  19. import com.google.bitcoin.core.VersionMessage;
  20. import com.google.bitcoin.discovery.DnsDiscovery;
  21. import com.google.bitcoin.discovery.PeerDiscoveryException;
  22. import com.google.bitcoin.params.MainNetParams;
  23. import com.google.bitcoin.utils.BriefLogFormatter;
  24. import com.google.common.collect.Lists;
  25. import com.google.common.util.concurrent.FutureCallback;
  26. import com.google.common.util.concurrent.Futures;
  27. import com.google.common.util.concurrent.ListenableFuture;
  28. import java.net.InetAddress;
  29. import java.net.InetSocketAddress;
  30. import java.util.ArrayList;
  31. import java.util.List;
  32. import java.util.concurrent.TimeUnit;
  33. /**
  34. * Prints a list of IP addresses obtained from DNS.
  35. */
  36. public class PrintPeers {
  37. private static InetSocketAddress[] dnsPeers;
  38. private static void printElapsed(long start) {
  39. long now = System.currentTimeMillis();
  40. System.out.println(String.format("Took %.2f seconds", (now - start) / 1000.0));
  41. }
  42. private static void printPeers(InetSocketAddress[] addresses) {
  43. for (InetSocketAddress address : addresses) {
  44. String hostAddress = address.getAddress().getHostAddress();
  45. System.out.println(String.format("%s:%d", hostAddress, address.getPort()));
  46. }
  47. }
  48. private static void printDNS() throws PeerDiscoveryException {
  49. long start = System.currentTimeMillis();
  50. DnsDiscovery dns = new DnsDiscovery(MainNetParams.get());
  51. dnsPeers = dns.getPeers(10, TimeUnit.SECONDS);
  52. printPeers(dnsPeers);
  53. printElapsed(start);
  54. }
  55. public static void main(String[] args) throws Exception {
  56. BriefLogFormatter.init();
  57. System.out.println("=== DNS ===");
  58. printDNS();
  59. System.out.println("=== Version/chain heights ===");
  60. ArrayList<InetAddress> addrs = new ArrayList<InetAddress>();
  61. for (InetSocketAddress peer : dnsPeers) addrs.add(peer.getAddress());
  62. System.out.println("Scanning " + addrs.size() + " peers:");
  63. final NetworkParameters params = MainNetParams.get();
  64. final Object lock = new Object();
  65. final long[] bestHeight = new long[1];
  66. List<ListenableFuture<TCPNetworkConnection>> futures = Lists.newArrayList();
  67. for (final InetAddress addr : addrs) {
  68. final ListenableFuture<TCPNetworkConnection> future =
  69. TCPNetworkConnection.connectTo(params, new InetSocketAddress(addr, params.getPort()), 1000 /* timeout */, null);
  70. futures.add(future);
  71. // Once the connection has completed version handshaking ...
  72. Futures.addCallback(future, new FutureCallback<TCPNetworkConnection>() {
  73. public void onSuccess(TCPNetworkConnection conn) {
  74. // Check the chain height it claims to have.
  75. VersionMessage ver = conn.getVersionMessage();
  76. long nodeHeight = ver.bestHeight;
  77. synchronized (lock) {
  78. long diff = bestHeight[0] - nodeHeight;
  79. if (diff > 0) {
  80. System.out.println("Node is behind by " + diff + " blocks: " + addr);
  81. } else if (diff == 0) {
  82. System.out.println("Node " + addr + " has " + nodeHeight + " blocks");
  83. bestHeight[0] = nodeHeight;
  84. } else if (diff < 0) {
  85. System.out.println("Node is ahead by " + Math.abs(diff) + " blocks: " + addr);
  86. bestHeight[0] = nodeHeight;
  87. }
  88. }
  89. conn.close();
  90. }
  91. public void onFailure(Throwable throwable) {
  92. System.out.println("Failed to talk to " + addr + ": " + throwable.getMessage());
  93. }
  94. });
  95. }
  96. // Wait for every tried connection to finish.
  97. Futures.successfulAsList(futures).get();
  98. }
  99. }