aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2018-06-08 01:23:45 +0200
committerJulius Bünger <buenger@mytum.de>2018-06-08 01:29:23 +0200
commit365e3bcae1e79c4f71f68e0d1d41172d86c51e76 (patch)
tree68afe344f0d3d4b8f59cb975a0837bc47f07f3f9
parent4e2504a967ba09643c6dd7e3b9ce400e30adcb3d (diff)
rps profiler: add correct make rule, util
-rw-r--r--src/rps/Makefile.am7
-rw-r--r--src/rps/rps-test_util.c47
-rw-r--r--src/rps/rps-test_util.h3
3 files changed, 56 insertions, 1 deletions
diff --git a/src/rps/Makefile.am b/src/rps/Makefile.am
index 33e03af761..d477ade929 100644
--- a/src/rps/Makefile.am
+++ b/src/rps/Makefile.am
@@ -141,7 +141,12 @@ test_rps_seed_big_LDADD = $(ld_rps_test_lib)
test_rps_churn_SOURCES = $(rps_test_src)
test_rps_churn_LDADD = $(ld_rps_test_lib)
-gnunet_rps_profiler_SOURCES = $(rps_test_src)
+gnunet_rps_profiler_SOURCES = \
+ gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c \
+ rps-test_util.h rps-test_util.c \
+ gnunet-rps-profiler.c
+
+
gnunet_rps_profiler_LDADD = \
$(top_builddir)/src/statistics/libgnunetstatistics.la \
libgnunetrps.la \
diff --git a/src/rps/rps-test_util.c b/src/rps/rps-test_util.c
index 0c81cc2b42..ea55deac55 100644
--- a/src/rps/rps-test_util.c
+++ b/src/rps/rps-test_util.c
@@ -107,6 +107,53 @@ to_file_ (const char *file_name, char *line)
"Unable to close file\n");
}
+void
+to_file_raw (const char *file_name, void *buf, size_t size_buf)
+{
+ struct GNUNET_DISK_FileHandle *f;
+ size_t size2;
+
+
+ if (NULL == (f = GNUNET_DISK_file_open (file_name,
+ GNUNET_DISK_OPEN_APPEND |
+ GNUNET_DISK_OPEN_WRITE |
+ GNUNET_DISK_OPEN_CREATE,
+ GNUNET_DISK_PERM_USER_READ |
+ GNUNET_DISK_PERM_USER_WRITE |
+ GNUNET_DISK_PERM_GROUP_READ |
+ GNUNET_DISK_PERM_OTHER_READ)))
+ {
+ LOG (GNUNET_ERROR_TYPE_WARNING,
+ "Not able to open file %s\n",
+ file_name);
+ return;
+ }
+
+ size2 = GNUNET_DISK_file_write (f, buf, size_buf);
+ if (size_buf != size2)
+ {
+ LOG (GNUNET_ERROR_TYPE_WARNING,
+ "Unable to write to file! (Size: %u, size2: %u)\n",
+ size_buf,
+ size2);
+
+ if (GNUNET_YES != GNUNET_DISK_file_close (f))
+ LOG (GNUNET_ERROR_TYPE_WARNING,
+ "Unable to close file\n");
+
+ return;
+ }
+
+ //if (512 < size_buf)
+ //{
+ // GNUNET_free (output_buffer_p);
+ //}
+
+ //if (GNUNET_YES != GNUNET_DISK_file_close (f))
+ // LOG (GNUNET_ERROR_TYPE_WARNING,
+ // "Unable to close file\n");
+}
+
char *
auth_key_to_string (struct GNUNET_CRYPTO_AuthKey auth_key)
{
diff --git a/src/rps/rps-test_util.h b/src/rps/rps-test_util.h
index 2213e50d83..d424227506 100644
--- a/src/rps/rps-test_util.h
+++ b/src/rps/rps-test_util.h
@@ -74,5 +74,8 @@ const char *
store_prefix_file_name (const struct GNUNET_PeerIdentity *peer,
const char *prefix);
+void
+to_file_raw (const char *file_name, void *buf, size_t size_buf);
+
#endif /* RPS_TEST_UTIL_H */
/* end of gnunet-service-rps.c */