gnunet-service-fs.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. This file is part of GNUnet.
  3. (C) 2009, 2010 Christian Grothoff (and other contributing authors)
  4. GNUnet is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 3, or (at your
  7. option) any later version.
  8. GNUnet is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNUnet; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.
  16. */
  17. /**
  18. * @file fs/gnunet-service-fs.h
  19. * @brief shared data structures of gnunet-service-fs.c
  20. * @author Christian Grothoff
  21. */
  22. #ifndef GNUNET_SERVICE_FS_H
  23. #define GNUNET_SERVICE_FS_H
  24. #include "gnunet_util_lib.h"
  25. #include "gnunet_statistics_service.h"
  26. #include "gnunet_transport_service.h"
  27. #include "gnunet_core_service.h"
  28. #include "gnunet_block_lib.h"
  29. #include "fs.h"
  30. #define DEBUG_FS GNUNET_YES
  31. #define DEBUG_FS_CLIENT GNUNET_NO
  32. /**
  33. * Should we introduce random latency in processing? Required for proper
  34. * implementation of GAP, but can be disabled for performance evaluation of
  35. * the basic routing algorithm.
  36. *
  37. * Note that with delays enabled, performance can be significantly lower
  38. * (several orders of magnitude in 2-peer test runs); if you want to
  39. * measure throughput of other components, set this to NO. Also, you
  40. * might want to consider changing 'RETRY_PROBABILITY_INV' to 1 for
  41. * a rather wasteful mode of operation (that might still get the highest
  42. * throughput overall).
  43. *
  44. * Performance measurements (for 50 MB file, 2 peers):
  45. *
  46. * - Without delays: 3300 kb/s
  47. * - With delays: 101 kb/s
  48. */
  49. #define SUPPORT_DELAYS GNUNET_NO
  50. /**
  51. * At what frequency should our datastore load decrease
  52. * automatically (since if we don't use it, clearly the
  53. * load must be going down).
  54. */
  55. #define DATASTORE_LOAD_AUTODECLINE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250)
  56. /**
  57. * A connected peer.
  58. */
  59. struct GSF_ConnectedPeer;
  60. /**
  61. * An active request.
  62. */
  63. struct GSF_PendingRequest;
  64. /**
  65. * A local client.
  66. */
  67. struct GSF_LocalClient;
  68. /**
  69. * Information kept per plan per request ('pe' module).
  70. */
  71. struct GSF_RequestPlan;
  72. /**
  73. * DLL of request plans a particular pending request is
  74. * involved with.
  75. */
  76. struct GSF_RequestPlanReference;
  77. /**
  78. * Our connection to the datastore.
  79. */
  80. extern struct GNUNET_DATASTORE_Handle *GSF_dsh;
  81. /**
  82. * Our configuration.
  83. */
  84. extern const struct GNUNET_CONFIGURATION_Handle *GSF_cfg;
  85. /**
  86. * Handle for reporting statistics.
  87. */
  88. extern struct GNUNET_STATISTICS_Handle *GSF_stats;
  89. /**
  90. * Pointer to handle to the core service (points to NULL until we've
  91. * connected to it).
  92. */
  93. extern struct GNUNET_CORE_Handle *GSF_core;
  94. /**
  95. * Handle for DHT operations.
  96. */
  97. extern struct GNUNET_DHT_Handle *GSF_dht;
  98. /**
  99. * How long do requests typically stay in the routing table?
  100. */
  101. extern struct GNUNET_LOAD_Value *GSF_rt_entry_lifetime;
  102. /**
  103. * Typical priorities we're seeing from other peers right now. Since
  104. * most priorities will be zero, this value is the weighted average of
  105. * non-zero priorities seen "recently". In order to ensure that new
  106. * values do not dramatically change the ratio, values are first
  107. * "capped" to a reasonable range (+N of the current value) and then
  108. * averaged into the existing value by a ratio of 1:N. Hence
  109. * receiving the largest possible priority can still only raise our
  110. * "current_priorities" by at most 1.
  111. */
  112. extern double GSF_current_priorities;
  113. /**
  114. * How many query messages have we received 'recently' that
  115. * have not yet been claimed as cover traffic?
  116. */
  117. extern unsigned int GSF_cover_query_count;
  118. /**
  119. * How many content messages have we received 'recently' that
  120. * have not yet been claimed as cover traffic?
  121. */
  122. extern unsigned int GSF_cover_content_count;
  123. /**
  124. * Our block context.
  125. */
  126. extern struct GNUNET_BLOCK_Context *GSF_block_ctx;
  127. /**
  128. * Are we introducing randomized delays for better anonymity?
  129. */
  130. extern int GSF_enable_randomized_delays;
  131. /**
  132. * Test if the DATABASE (GET) load on this peer is too high
  133. * to even consider processing the query at
  134. * all.
  135. *
  136. * @return GNUNET_YES if the load is too high to do anything (load high)
  137. * GNUNET_NO to process normally (load normal)
  138. * GNUNET_SYSERR to process for free (load low)
  139. */
  140. int
  141. GSF_test_get_load_too_high_ (uint32_t priority);
  142. /**
  143. * We've just now completed a datastore request. Update our
  144. * datastore load calculations.
  145. *
  146. * @param start time when the datastore request was issued
  147. */
  148. void
  149. GSF_update_datastore_delay_ (struct GNUNET_TIME_Absolute start);
  150. #endif
  151. /* end of gnunet-service-fs.h */