aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Sardara <msardara+fdio@cisco.com>2018-02-26 11:01:44 +0100
committerMauro Sardara <msardara+fdio@cisco.com>2018-02-26 11:13:24 +0100
commit82a8803fc86680a149d43181f43b1ac4f69a359d (patch)
treee0bfc826179caeb193550a624f008f55e1ad20cb
parent95f3619c8be677bcd9cf3bb320c7262bbe6dc44b (diff)
Removed old iPing application.
New apps added: iping-client: ping client that provides statistics regarding the rtt and the losses. It allows to configure the ping interval, the interest lifetime, the ttl and the name. iping-server: simple server replying to icnet-ping-client. It allows to configure the reply size and the name. Change-Id: I6b08333147acfaffd8becacb48f27f6c42dbeeb9 Signed-off-by: Mauro Sardara <msardara+fdio@cisco.com>
-rwxr-xr-xapps/CMakeLists.txt2
-rwxr-xr-xapps/consumers/CMakeLists.txt6
-rw-r--r--apps/iping/CMakeLists.txt50
-rw-r--r--apps/iping/client.keystorebin1646 -> 0 bytes
-rw-r--r--apps/iping/iPing_Client.c429
-rw-r--r--apps/iping/iPing_Common.c63
-rw-r--r--apps/iping/iPing_Common.h69
-rw-r--r--apps/iping/iPing_Server.c216
-rw-r--r--apps/iping/iPing_Stats.c139
-rw-r--r--apps/iping/iPing_Stats.h124
-rwxr-xr-xapps/producers/CMakeLists.txt6
11 files changed, 7 insertions, 1097 deletions
diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt
index a661847f..2e92a56b 100755
--- a/apps/CMakeLists.txt
+++ b/apps/CMakeLists.txt
@@ -14,4 +14,4 @@
cmake_minimum_required(VERSION 3.2)
#include( CTest )
-subdirs(consumers producers general iping http)
+subdirs(consumers producers general http)
diff --git a/apps/consumers/CMakeLists.txt b/apps/consumers/CMakeLists.txt
index 4cf2d2a2..f38ecec9 100755
--- a/apps/consumers/CMakeLists.txt
+++ b/apps/consumers/CMakeLists.txt
@@ -27,7 +27,7 @@ add_executable(consumer-hello-world ${CONSUMER__HELLO_WORLD_SOURCE_FILES})
target_link_libraries(consumer-hello-world icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
install(TARGETS consumer-hello-world DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
-add_executable(icnet-ping-client ${CONSUMER_PING_CLIENT_SOURCE_FILES})
+add_executable(iping-client ${CONSUMER_PING_CLIENT_SOURCE_FILES})
-target_link_libraries(icnet-ping-client icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
-install(TARGETS icnet-ping-client DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
+target_link_libraries(iping-client icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
+install(TARGETS iping-client DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
diff --git a/apps/iping/CMakeLists.txt b/apps/iping/CMakeLists.txt
deleted file mode 100644
index b2fa4874..00000000
--- a/apps/iping/CMakeLists.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright (c) 2017 Cisco and/or its affiliates.
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-cmake_minimum_required(VERSION 3.2)
-
-set(CMAKE_C_STANDARD 99)
-set(CMAKE_C_STANDARD_REQUIRED ON)
-
-if ($ENV{CCNX_HOME})
- set(CCNX_HOME $ENV{CCNX_HOME})
-else ($ENV{CCNX_HOME})
- set(CCNX_HOME /usr/local)
-endif ($ENV{CCNX_HOME})
-
-set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -D_GNU_SOURCE")
-
-set(CCNX_LIBRARIES longbow longbow-ansiterm parc ccnx_common ccnx_api_portal ccnx_transport_rta ccnx_api_control ccnx_api_notify)
-
-set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
-
-set(CCNX_PING_CLIENT_SOURCE_FILES
- iPing_Client.c
- iPing_Common.c
- iPing_Stats.c)
-
-set(CCNX_PING_SERVER_SOURCE_FILES
- iPing_Server.c
- iPing_Common.c)
-
-include_directories(${CCNX_HOME}/include)
-
-link_directories(${CCNX_HOME}/lib)
-
-add_executable(iPing_Client ${CCNX_PING_CLIENT_SOURCE_FILES})
-target_link_libraries(iPing_Client ${CCNX_LIBRARIES})
-install(TARGETS iPing_Client RUNTIME DESTINATION bin COMPONENT library)
-
-add_executable(iPing_Server ${CCNX_PING_SERVER_SOURCE_FILES})
-target_link_libraries(iPing_Server ${CCNX_LIBRARIES})
-install(TARGETS iPing_Server RUNTIME DESTINATION bin COMPONENT library)
diff --git a/apps/iping/client.keystore b/apps/iping/client.keystore
deleted file mode 100644
index f59eca9f..00000000
--- a/apps/iping/client.keystore
+++ /dev/null
Binary files differ
diff --git a/apps/iping/iPing_Client.c b/apps/iping/iPing_Client.c
deleted file mode 100644
index ea6b0711..00000000
--- a/apps/iping/iPing_Client.c
+++ /dev/null
@@ -1,429 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <stdio.h>
-#include <inttypes.h>
-#include <getopt.h>
-#include <LongBow/runtime.h>
-#include <ccnx/api/ccnx_Portal/ccnx_Portal.h>
-#include <ccnx/api/ccnx_Portal/ccnx_PortalRTA.h>
-#include <parc/algol/parc_Clock.h>
-#include <parc/security/parc_Security.h>
-#include <parc/algol/parc_DisplayIndented.h>
-#include "iPing_Stats.h"
-#include "iPing_Common.h"
-
-typedef enum {
- CCNxPingClientMode_None = 0, CCNxPingClientMode_Flood, CCNxPingClientMode_PingPong, CCNxPingClientMode_All
-} CCNxPingClientMode;
-
-typedef struct ccnx_Ping_client {
- CCNxPortal *portal;
- CCNxPortalFactory *factory;
- CCNxPingStats *stats;
- CCNxPingClientMode mode;
-
- CCNxName *prefix;
-
- size_t numberOfOutstanding;
- uint64_t receiveTimeoutInMs;
- uint32_t interestLifetime;
- int interestCounter;
- size_t count;
- uint64_t intervalInMs;
- size_t payloadSize;
- int nonce;
-} CCNxPingClient;
-
-/**
- * Create a new CCNxPortalFactory instance using a randomly generated identity saved to
- * the specified keystore.
- *
- * @return A new CCNxPortalFactory instance which must eventually be released by calling ccnxPortalFactory_Release().
- */
-static CCNxPortalFactory *_setupClientPortalFactory(void) {
- const char *keystoreName = "client.keystore";
- const char *keystorePassword = "keystore_password";
- const char *subjectName = "client";
-
- return ccnxPingCommon_SetupPortalFactory(keystoreName, keystorePassword, subjectName);
-}
-
-/**
- * Release the references held by the `CCNxPingClient`.
- */
-static bool _ccnxPingClient_Destructor(CCNxPingClient **clientPtr) {
- CCNxPingClient *client = *clientPtr;
-
- if (client->factory != NULL) {
- ccnxPortalFactory_Release(&(client->factory));
- }
- if (client->portal != NULL) {
- ccnxPortal_Release(&(client->portal));
- }
- if (client->prefix != NULL) {
- ccnxName_Release(&(client->prefix));
- }
- if (client->stats != NULL) {
- ccnxPingStats_Release(&client->stats);
- }
- return true;
-}
-
-parcObject_Override(CCNxPingClient, PARCObject, .destructor = (PARCObjectDestructor *) _ccnxPingClient_Destructor);
-
-parcObject_ImplementAcquire(ccnxPingClient, CCNxPingClient);
-parcObject_ImplementRelease(ccnxPingClient, CCNxPingClient);
-
-/**
- * Create a new empty `CCNxPingClient` instance.
- */
-static CCNxPingClient *ccnxPingClient_Create(void) {
- CCNxPingClient *client = parcObject_CreateInstance(CCNxPingClient);
-
- client->stats = ccnxPingStats_Create();
- client->interestCounter = 100;
- client->prefix = ccnxName_CreateFromCString(ccnxPing_DefaultPrefix);
- client->receiveTimeoutInMs = ccnxPing_DefaultReceiveTimeoutInUs / 1000;
- client->count = 10;
- client->intervalInMs = 1000;
- client->nonce = rand();
- client->numberOfOutstanding = 0;
- client->interestLifetime = 4 * 1000; //4s
-
- return client;
-}
-
-/**
- * Get the next `CCNxName` to issue. Increment the interest counter
- * for the client.
- */
-static CCNxName *_ccnxPingClient_CreateNextName(CCNxPingClient *client) {
- client->interestCounter++;
- char *suffixBuffer = NULL;
-
- asprintf(&suffixBuffer, "%x", client->nonce);
- CCNxName *name1 = ccnxName_ComposeNAME(client->prefix, suffixBuffer);
- free(suffixBuffer);
-
- suffixBuffer = NULL;
- asprintf(&suffixBuffer, "%u", (unsigned int) client->payloadSize);
- CCNxName *name2 = ccnxName_ComposeNAME(name1, suffixBuffer);
- free(suffixBuffer);
- ccnxName_Release(&name1);
-
- suffixBuffer = NULL;
- asprintf(&suffixBuffer, "%06lu", (long) client->interestCounter);
- CCNxName *name3 = ccnxName_ComposeNAME(name2, suffixBuffer);
- free(suffixBuffer);
- ccnxName_Release(&name2);
-
- return name3;
-}
-
-/**
- * Convert a timeval struct to a single microsecond count.
- */
-static uint64_t _ccnxPingClient_CurrentTimeInUs(PARCClock *clock) {
- struct timeval currentTimeVal;
- parcClock_GetTimeval(clock, &currentTimeVal);
- uint64_t microseconds = ((uint64_t) currentTimeVal.tv_sec) * 1000000 + currentTimeVal.tv_usec;
- return microseconds;
-}
-
-/**
- * Run a single ping test.
- */
-static void _ccnxPingClient_RunPing(CCNxPingClient *client, size_t totalPings) {
- uint64_t delayInUs = client->intervalInMs * 1000;
- uint64_t timeoutInUs = client->receiveTimeoutInMs * 1000;
- PARCClock *clock = parcClock_Wallclock();
-
- client->factory = _setupClientPortalFactory();
- client->portal = ccnxPortalFactory_CreatePortal(client->factory, ccnxPortalRTA_Message);
-
- size_t outstanding = 0;
-
- uint64_t nextPacketSendTime = 0;
- uint64_t currentTimeInUs = 0;
-
- for (int pings = 0; pings < totalPings; pings++) {
-
- CCNxName *name;
- CCNxInterest *interest;
- CCNxMetaMessage *message;
-
- name = _ccnxPingClient_CreateNextName(client);
- interest = ccnxInterest_CreateSimple(name);
- message = ccnxMetaMessage_CreateFromInterest(interest);
- ccnxInterest_SetLifetime(interest, client->interestLifetime);
-
- if (ccnxPortal_Send(client->portal, message, CCNxStackTimeout_Never)) {
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- nextPacketSendTime = currentTimeInUs + delayInUs;
-
- ccnxPingStats_RecordRequest(client->stats, name, currentTimeInUs);
- } else {
- printf("Error in sending\n");
- nextPacketSendTime = 0;
- }
-
- ccnxMetaMessage_Release(&message);
- ccnxInterest_Release(&interest);
- outstanding++;
-
- /* Now wait for the responses and record their times
- * First packet wait until its arrives or timeout
- */
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- uint64_t receiveDelay = timeoutInUs;
- CCNxMetaMessage *response = ccnxPortal_Receive(client->portal, &receiveDelay);
-
- //Remove the timeout ping only if we are in the ping mode
- if (response == NULL && (client->mode != CCNxPingClientMode_Flood)) {
- ccnxPingStats_RecordLost(client->stats, name);
- outstanding--;
- }
- ccnxName_Release(&name);
-
- /* Loop to handle content that arrives too late, that is after receiveDelay
- * They will be just evicted from the hashtable and not considered in the
- */
- while (response != NULL) {
- printf("Received content\n");
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- if (ccnxMetaMessage_IsContentObject(response)) {
- CCNxContentObject *contentObject = ccnxMetaMessage_GetContentObject(response);
- CCNxName *responseName = ccnxContentObject_GetName(contentObject);
- bool existing;
- uint64_t
- delta = ccnxPingStats_RecordResponse(client->stats, responseName, currentTimeInUs, response, &existing);
- // Only display output if we're in ping mode
- if (client->mode == CCNxPingClientMode_PingPong && existing) {
- size_t contentSize = parcBuffer_Remaining(ccnxContentObject_GetPayload(contentObject));
- char *nameString = ccnxName_ToString(responseName);
- printf("%zu bytes from %s: time=%"PRIu64" us\n", contentSize, nameString, delta);
- parcMemory_Deallocate(&nameString);
- }
- }
- ccnxMetaMessage_Release(&response);
-
- outstanding--;
-
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
-
- /* The following covers the case in which a content arrived after
- * receiveDelay. If that happens, it will be read from the portal
- * after the next interest sending, therefore we might have two
- * contents to read rather than one. This code is fine as long as we
- * do not consider in statistics content arriving after receiveDelay
- */
- receiveDelay = nextPacketSendTime - currentTimeInUs;
- response = ccnxPortal_Receive(client->portal, &receiveDelay);
- }
- }
-
- /* We're done with pings, so let's wait to see if we have any
- * stragglers. We wait for 30s more
- */
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- nextPacketSendTime = currentTimeInUs + 10000000; //10s
-
- uint64_t receiveDelay = nextPacketSendTime - currentTimeInUs;
- CCNxMetaMessage *response = ccnxPortal_Receive(client->portal, &receiveDelay);
-
- /* Loop to handle content that arrives too late, that is after receiveDelay
- * They will be just evicted from the hashtable and not considered in the
- */
- while (response != NULL) {
- printf("Received content\n");
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- if (ccnxMetaMessage_IsContentObject(response)) {
- CCNxContentObject *contentObject = ccnxMetaMessage_GetContentObject(response);
- CCNxName *responseName = ccnxContentObject_GetName(contentObject);
- bool existing;
- uint64_t delta = ccnxPingStats_RecordResponse(client->stats, responseName, currentTimeInUs, response, &existing);
- // Only display output if we're in ping mode
- if (client->mode == CCNxPingClientMode_PingPong && existing) {
- size_t contentSize = parcBuffer_Remaining(ccnxContentObject_GetPayload(contentObject));
- char *nameString = ccnxName_ToString(responseName);
- printf("%zu bytes from %s: time=%"PRIu64" us\n", contentSize, nameString, delta);
- parcMemory_Deallocate(&nameString);
- }
- }
- ccnxMetaMessage_Release(&response);
- outstanding--;
- currentTimeInUs = _ccnxPingClient_CurrentTimeInUs(clock);
- /* The following covers the case in which a content arrived after
- * receiveDelay. If that happens, it will be read from the portal
- * after the next interest sending, therefore we might have two
- * contents to read rather than one. This code is fine as long as we
- * do not consider in statistics content arriving after receiveDelay
- */
- receiveDelay = nextPacketSendTime - currentTimeInUs;
- response = ccnxPortal_Receive(client->portal, &receiveDelay);
- }
- parcClock_Release(&clock);
-}
-
-/**
- * Display the usage message.
- */
-static void _displayUsage(char *progName) {
- printf("CCNx Simple Ping Performance Test\n");
- printf(" (you must have ccnxPing_Server running)\n");
- printf("\n");
- printf("Usage: %s -p [ -c count ] [ -s size ] [ -i interval ]\n", progName);
- printf(" %s -f [ -c count ] [ -s size ]\n", progName);
- printf(" %s -h\n", progName);
- printf("\n");
- printf("Example:\n");
- printf(" ccnxPing_Client -l ccnx:/some/prefix -c 100 -f\n");
- printf("\n");
- printf("Options:\n");
- printf(" -h (--help) Show this help message\n");
- printf(" -p (--ping) ping mode - \n");
- printf(
- " -f (--flood) flood mode - send as fast as possible. ATTENTION, NO MIGHT USE A LOT OF MEMORY IF THE NUMBER OF SENDING INTEREST IS HUGE\n");
- printf(" -c (--count) Number of count to run\n");
- printf(
- " -i (--interval) Interval in milliseconds between interests in ping mode. Such interval cannot always be satisfied because in ping mode the application waits to receive a content before issuing the next interest. If any content is received interval==timeout\n");
- printf(" -s (--size) Size of the interests\n");
- printf(" -l (--locator) Set the locator for this server. The default is 'ccnx:/locator'. \n");
- printf(
- " -t (--timeout) Time that the application waits for a content. When elapsed the content will be dropped and RTT not considered. Default timeout==1s\n");
- printf(
- " -e (--lifetime) Set interest lifetime in milliseconds. When elapsed the interest is evicted only from the PIT. Eviction from the application internal state (used for recording interest sending time adn calculate RTT). Default lifetime==4s.\n");
-}
-
-/**
- * Parse the command lines to initialize the state of the
- */
-static bool _ccnxPingClient_ParseCommandline(CCNxPingClient *client, int argc, char *argv[argc]) {
- static struct option longopts[] =
- {{"ping", no_argument, NULL, 'p'}, {"flood", no_argument, NULL, 'f'}, {"count", required_argument, NULL, 'c'}, {
- "size", required_argument, NULL, 's'
- }, {"interval", required_argument, NULL, 'i'}, {"locator", required_argument, NULL, 'l'},
- {"outstanding", required_argument, NULL, 'o'
- }, {"help", no_argument, NULL, 'h'}, {"timeout", required_argument, NULL, 't'},
- {"lifetime", required_argument, NULL, 'e'
- }, {NULL, 0, NULL, 0}};
-
- client->payloadSize = ccnxPing_DefaultPayloadSize;
-
- int c;
- while ((c = getopt_long(argc, argv, "phfc:s:i:l:o:t:e:", longopts, NULL)) != -1) {
- switch (c) {
- case 'p':
- if (client->mode != CCNxPingClientMode_None) {
- return false;
- }
- client->mode = CCNxPingClientMode_PingPong;
- break;
- case 'f':
- if (client->mode != CCNxPingClientMode_None) {
- return false;
- }
- client->mode = CCNxPingClientMode_Flood;
- client->intervalInMs = 0;
- client->receiveTimeoutInMs = 0;
- break;
- case 'c':
- sscanf(optarg, "%zu", &(client->count));
- break;
- case 'i':
- if (client->mode != CCNxPingClientMode_Flood) {
- sscanf(optarg, "%"PRIu64"", &(client->intervalInMs));
- printf("Timer %"PRIu64"\n", (client->intervalInMs));
- }
- break;
- case 't':
- if (client->mode != CCNxPingClientMode_Flood) {
- sscanf(optarg, "%"PRIu64"", &(client->receiveTimeoutInMs));
- }
- break;
- case 's':
- sscanf(optarg, "%zu", &(client->payloadSize));
- break;
- case 'o':
- sscanf(optarg, "%zu", &(client->numberOfOutstanding));
- break;
- case 'l':
- ccnxName_Release(&(client->prefix));
- client->prefix = ccnxName_CreateFromCString(optarg);
- break;
- case 'h':
- _displayUsage(argv[0]);
- return false;
- case 'e':
- sscanf(optarg, "%"PRIu32"", &(client->interestLifetime));
- break;
- default:
- break;
- }
- }
- if (client->mode == CCNxPingClientMode_None) {
- _displayUsage(argv[0]);
- return false;
- }
- return true;
-};
-
-static void _ccnxPingClient_DisplayStatistics(CCNxPingClient *client) {
- bool ableToCompute = ccnxPingStats_Display(client->stats);
- if (!ableToCompute) {
- parcDisplayIndented_PrintLine(0,
- "No packets were received. Check to make sure the client and server are configured correctly and that the forwarder is running.\n");
- }
-}
-
-static void _ccnxPingClient_RunPingormanceTest(CCNxPingClient *client) {
- switch (client->mode) {
- case CCNxPingClientMode_All:
- _ccnxPingClient_RunPing(client, mediumNumberOfPings);
- _ccnxPingClient_DisplayStatistics(client);
-
- ccnxPingStats_Release(&client->stats);
- client->stats = ccnxPingStats_Create();
-
- _ccnxPingClient_RunPing(client, smallNumberOfPings);
- _ccnxPingClient_DisplayStatistics(client);
- break;
- case CCNxPingClientMode_Flood:
- _ccnxPingClient_RunPing(client, client->count);
- _ccnxPingClient_DisplayStatistics(client);
- break;
- case CCNxPingClientMode_PingPong:
- _ccnxPingClient_RunPing(client, client->count);
- _ccnxPingClient_DisplayStatistics(client);
- break;
- case CCNxPingClientMode_None:
- default:
- fprintf(stderr, "Error, unknown mode");
- break;
- }
-}
-
-int main(int argc, char *argv[argc]) {
- parcSecurity_Init();
- CCNxPingClient *client = ccnxPingClient_Create();
- bool runPing = _ccnxPingClient_ParseCommandline(client, argc, argv);
- if (runPing) {
- _ccnxPingClient_RunPingormanceTest(client);
- }
- ccnxPingClient_Release(&client);
- parcSecurity_Fini();
- return EXIT_SUCCESS;
-}
diff --git a/apps/iping/iPing_Common.c b/apps/iping/iPing_Common.c
deleted file mode 100644
index 9cc53559..00000000
--- a/apps/iping/iPing_Common.c
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <stdio.h>
-
-#include "iPing_Common.h"
-
-#include <parc/security/parc_Security.h>
-#include <parc/security/parc_Pkcs12KeyStore.h>
-#include <parc/security/parc_IdentityFile.h>
-
-const size_t ccnxPing_DefaultReceiveTimeoutInUs = 1000000; // 1 second
-const size_t ccnxPing_DefaultPayloadSize = 1400;
-const size_t mediumNumberOfPings = 100;
-const size_t smallNumberOfPings = 10;
-
-static PARCIdentity *_ccnxPingCommon_CreateAndGetIdentity(const char *keystoreName,
- const char *keystorePassword,
- const char *subjectName) {
- parcSecurity_Init();
-
- unsigned int keyLength = 1024;
- unsigned int validityDays = 30;
-
- bool success = parcPkcs12KeyStore_CreateFile(keystoreName, keystorePassword, subjectName, keyLength, validityDays);
- assertTrue(success,
- "parcPkcs12KeyStore_CreateFile('%s', '%s', '%s', %d, %d) failed.",
- keystoreName,
- keystorePassword,
- subjectName,
- keyLength,
- validityDays);
-
- PARCIdentityFile *identityFile = parcIdentityFile_Create(keystoreName, keystorePassword);
- PARCIdentity *result = parcIdentity_Create(identityFile, PARCIdentityFileAsPARCIdentity);
- parcIdentityFile_Release(&identityFile);
-
- parcSecurity_Fini();
-
- return result;
-}
-
-CCNxPortalFactory *ccnxPingCommon_SetupPortalFactory(const char *keystoreName,
- const char *keystorePassword,
- const char *subjectName) {
- PARCIdentity *identity = _ccnxPingCommon_CreateAndGetIdentity(keystoreName, keystorePassword, subjectName);
- CCNxPortalFactory *result = ccnxPortalFactory_Create(identity);
- parcIdentity_Release(&identity);
-
- return result;
-}
diff --git a/apps/iping/iPing_Common.h b/apps/iping/iPing_Common.h
deleted file mode 100644
index df91186b..00000000
--- a/apps/iping/iPing_Common.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef ccnxPingCommon_h
-#define ccnxPingCommon_h
-
-#include <stdint.h>
-
-#include <ccnx/api/ccnx_Portal/ccnx_Portal.h>
-
-/**
- * The `CCNxName` prefix for the server.
- */
-#define ccnxPing_DefaultPrefix "ccnx:/localhost"
-
-/**
- * The default client receive timeout (in microseconds).
- */
-extern const size_t ccnxPing_DefaultReceiveTimeoutInUs;
-
-/**
- * The default size of a content object payload.
- */
-extern const size_t ccnxPing_DefaultPayloadSize;
-
-/**
- * The maximum size of a content object payload.
- * 64KB is the limit imposed by the packet structure.
- * Here we limit the max Payload Size to 1400 bytes.
- */
-#define ccnxPing_MaxPayloadSize 1400
-
-/**
- * A default "medium" number of messages to send.
- */
-extern const size_t mediumNumberOfPings;
-
-/**
- * A default "small" number of messages to send.
- */
-extern const size_t smallNumberOfPings;
-
-/**
- * Initialize and return a new instance of CCNxPortalFactory. A randomly generated identity is
- * used to initialize the factory. The returned instance must eventually be released by calling
- * ccnxPortalFactory_Release().
- *
- * @param [in] keystoreName The name of the file to save the new identity.
- * @param [in] keystorePassword The password of the file holding the identity.
- * @param [in] subjectName The name of the owner of the identity.
- *
- * @return A new instance of a CCNxPortalFactory initialized with a randomly created identity.
- */
-CCNxPortalFactory *ccnxPingCommon_SetupPortalFactory(const char *keystoreName,
- const char *keystorePassword,
- const char *subjectName);
-#endif // ccnxPingCommon_h.h
diff --git a/apps/iping/iPing_Server.c b/apps/iping/iPing_Server.c
deleted file mode 100644
index eb9543a3..00000000
--- a/apps/iping/iPing_Server.c
+++ /dev/null
@@ -1,216 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <stdio.h>
-
-#include <getopt.h>
-
-#include <LongBow/runtime.h>
-
-#include <parc/algol/parc_Object.h>
-
-#include <parc/security/parc_Security.h>
-
-#include <ccnx/common/ccnx_Name.h>
-
-#include <ccnx/api/ccnx_Portal/ccnx_Portal.h>
-#include <ccnx/api/ccnx_Portal/ccnx_PortalRTA.h>
-
-#include "iPing_Common.h"
-
-typedef struct ccnx_ping_server {
- CCNxPortal *portal;
- CCNxName *prefix;
- size_t payloadSize;
-
- uint8_t generalPayload[ccnxPing_MaxPayloadSize];
-} CCNxPingServer;
-
-/**
- * Create a new CCNxPortalFactory instance using a randomly generated identity saved to
- * the specified keystore.
- *
- * @return A new CCNxPortalFactory instance which must eventually be released by calling ccnxPortalFactory_Release().
- */
-static CCNxPortalFactory *_setupServerPortalFactory(void) {
- const char *keystoreName = "server.keystore";
- const char *keystorePassword = "keystore_password";
- const char *subjectName = "server";
-
- return ccnxPingCommon_SetupPortalFactory(keystoreName, keystorePassword, subjectName);
-}
-
-/**
- * Release the references held by the `CCNxPingClient`.
- */
-static bool _ccnxPingServer_Destructor(CCNxPingServer **serverPtr) {
- CCNxPingServer *server = *serverPtr;
- if (server->portal != NULL) {
- ccnxPortal_Release(&(server->portal));
- }
- if (server->prefix != NULL) {
- ccnxName_Release(&(server->prefix));
- }
- return true;
-}
-
-parcObject_Override(CCNxPingServer, PARCObject, .destructor = (PARCObjectDestructor *) _ccnxPingServer_Destructor);
-
-parcObject_ImplementAcquire(ccnxPingServer, CCNxPingServer);
-parcObject_ImplementRelease(ccnxPingServer, CCNxPingServer);
-
-/**
- * Create a new empty `CCNxPingServer` instance.
- */
-static CCNxPingServer *ccnxPingServer_Create(void) {
- CCNxPingServer *server = parcObject_CreateInstance(CCNxPingServer);
-
- server->prefix = ccnxName_CreateFromCString(ccnxPing_DefaultPrefix);
- server->payloadSize = ccnxPing_DefaultPayloadSize;
-
- return server;
-}
-
-/**
- * Create a `PARCBuffer` payload of the server-configured size.
- */
-PARCBuffer *_ccnxPingServer_MakePayload(CCNxPingServer *server, int size) {
- PARCBuffer *payload = parcBuffer_Wrap(server->generalPayload, size, 0, size);
- return payload;
-}
-
-/**
- * Run the `CCNxPingServer` indefinitely.
- */
-static void _ccnxPingServer_Run(CCNxPingServer *server) {
- CCNxPortalFactory *factory = _setupServerPortalFactory();
- server->portal = ccnxPortalFactory_CreatePortal(factory, ccnxPortalRTA_Message);
- ccnxPortalFactory_Release(&factory);
-
- size_t yearInSeconds = 60 * 60 * 24 * 365;
-
- size_t sizeIndex;
-
- if (ccnxPortal_Listen(server->portal, server->prefix, yearInSeconds, CCNxStackTimeout_Never)) {
- while (true) {
- CCNxMetaMessage *request = ccnxPortal_Receive(server->portal, CCNxStackTimeout_Never);
-
- // This should never happen.
- if (request == NULL) {
- break;
- }
-
- CCNxInterest *interest = ccnxMetaMessage_GetInterest(request);
- if (interest != NULL) {
- CCNxName *interestName = ccnxInterest_GetName(interest);
-
- // Extract the size of the payload response from the client
- sizeIndex = ccnxName_GetSegmentCount(interestName) - 2;
- CCNxNameSegment *sizeSegment = ccnxName_GetSegment(interestName, sizeIndex);
- char *segmentString = ccnxNameSegment_ToString(sizeSegment);
- int size = atoi(segmentString);
- size = size > ccnxPing_MaxPayloadSize ? ccnxPing_MaxPayloadSize : size;
-
- PARCBuffer *payload = _ccnxPingServer_MakePayload(server, size);
-
- CCNxContentObject *contentObject = ccnxContentObject_CreateWithNameAndPayload(interestName, payload);
- CCNxMetaMessage *message = ccnxMetaMessage_CreateFromContentObject(contentObject);
-
- if (ccnxPortal_Send(server->portal, message, CCNxStackTimeout_Never) == false) {
- fprintf(stderr, "ccnxPortal_Send failed: %d\n", ccnxPortal_GetError(server->portal));
- }
-
- parcMemory_Deallocate(&segmentString);
- ccnxContentObject_Release(&contentObject);
- ccnxMetaMessage_Release(&message);
- parcBuffer_Release(&payload);
-
- }
- ccnxMetaMessage_Release(&request);
- }
- }
-}
-
-/**
- * Display the usage message.
- */
-static void _displayUsage(char *progName) {
- printf("CCNx Simple Ping Performance Test\n");
- printf("\n");
- printf("Usage: %s [-l locator] [-s size] \n", progName);
- printf(" %s -h\n", progName);
- printf("\n");
- printf("Example:\n");
- printf(" ccnxPing_Server -l ccnx:/some/prefix -s 1400\n");
- printf("\n");
- printf("Options:\n");
- printf(" -h (--help) Show this help message\n");
- printf(" -l (--locator) Set the locator for this server. The default is 'ccnx:/locator'. \n");
- printf(
- " -s (--size) Set the payload size (less than 1400 - see `ccnxPing_MaxPayloadSize` in ccnxPing_Common.h)\n");
-}
-
-/**
- * Parse the command lines to initialize the state of the
- */
-static bool _ccnxPingServer_ParseCommandline(CCNxPingServer *server, int argc, char *argv[argc]) {
- static struct option longopts[] =
- {{"locator", required_argument, NULL, 'l'}, {"size", required_argument, NULL, 's'},
- {"help", no_argument, NULL, 'h'
- }, {NULL, 0, NULL, 0}};
-
- // Default value
- server->payloadSize = ccnxPing_MaxPayloadSize;
-
- int c;
- while ((c = getopt_long(argc, argv, "l:s:h", longopts, NULL)) != -1) {
- switch (c) {
- case 'l':
- server->prefix = ccnxName_CreateFromCString(optarg);
- break;
- case 's':
- sscanf(optarg, "%zu", &(server->payloadSize));
- if (server->payloadSize > ccnxPing_MaxPayloadSize) {
- _displayUsage(argv[0]);
- return false;
- }
- break;
- case 'h':
- _displayUsage(argv[0]);
- return false;
- default:
- break;
- }
- }
-
- return true;
-};
-
-int main(int argc, char *argv[argc]) {
- parcSecurity_Init();
-
- CCNxPingServer *server = ccnxPingServer_Create();
- bool runServer = _ccnxPingServer_ParseCommandline(server, argc, argv);
-
- if (runServer) {
- _ccnxPingServer_Run(server);
- }
-
- ccnxPingServer_Release(&server);
-
- parcSecurity_Fini();
-
- return EXIT_SUCCESS;
-}
diff --git a/apps/iping/iPing_Stats.c b/apps/iping/iPing_Stats.c
deleted file mode 100644
index bf405294..00000000
--- a/apps/iping/iPing_Stats.c
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <stdio.h>
-
-#include <ccnx/common/ccnx_Name.h>
-#include <ccnx/transport/common/transport_MetaMessage.h>
-
-#include <parc/algol/parc_HashMap.h>
-#include <parc/algol/parc_DisplayIndented.h>
-
-#include "iPing_Stats.h"
-
-typedef struct ping_stats_entry {
- uint64_t sendTimeInUs;
- uint64_t rtt;
- size_t size;
- CCNxName *nameSent;
-} CCNxPingStatsEntry;
-
-struct ping_stats {
- uint64_t totalRtt;
- size_t totalReceived;
- size_t totalSent;
- size_t totalLost;
- PARCHashMap *pings;
-};
-
-static bool _ccnxPingStatsEntry_Destructor(CCNxPingStatsEntry **statsPtr) {
- CCNxPingStatsEntry *entry = *statsPtr;
- ccnxName_Release(&entry->nameSent);
-
- return true;
-}
-
-static bool _ccnxPingStats_Destructor(CCNxPingStats **statsPtr) {
- CCNxPingStats *stats = *statsPtr;
- parcHashMap_Release(&stats->pings);
- return true;
-}
-
-parcObject_Override(CCNxPingStatsEntry,
- PARCObject,
- .destructor = (PARCObjectDestructor *) _ccnxPingStatsEntry_Destructor);
-
-parcObject_ImplementAcquire(ccnxPingStatsEntry, CCNxPingStatsEntry);
-parcObject_ImplementRelease(ccnxPingStatsEntry, CCNxPingStatsEntry);
-
-CCNxPingStatsEntry *ccnxPingStatsEntry_Create() {
- return parcObject_CreateInstance(CCNxPingStatsEntry);
-}
-
-parcObject_Override(CCNxPingStats, PARCObject, .destructor = (PARCObjectDestructor *) _ccnxPingStats_Destructor);
-
-parcObject_ImplementAcquire(ccnxPingStats, CCNxPingStats);
-parcObject_ImplementRelease(ccnxPingStats, CCNxPingStats);
-
-CCNxPingStats *ccnxPingStats_Create(void) {
- CCNxPingStats *stats = parcObject_CreateInstance(CCNxPingStats);
-
- stats->pings = parcHashMap_Create();
- stats->totalSent = 0;
- stats->totalReceived = 0;
- stats->totalRtt = 0;
-
- return stats;
-}
-
-void ccnxPingStats_RecordRequest(CCNxPingStats *stats, CCNxName *name, uint64_t currentTime) {
- CCNxPingStatsEntry *entry = ccnxPingStatsEntry_Create();
-
- entry->nameSent = ccnxName_Acquire(name);
- entry->sendTimeInUs = currentTime;
-
- stats->totalSent++;
-
- char *nameString = ccnxName_ToString(name);
- printf("Insert entry %s\n", nameString);
- parcMemory_Deallocate(&nameString);
- parcHashMap_Put(stats->pings, name, entry);
-}
-
-uint64_t ccnxPingStats_RecordResponse(CCNxPingStats *stats,
- CCNxName *nameResponse,
- uint64_t currentTime,
- CCNxMetaMessage *message,
- bool *existing) {
- CCNxPingStatsEntry *entry = (CCNxPingStatsEntry *) parcHashMap_Get(stats->pings, nameResponse);
- if (entry != NULL) {
- *existing = true;
- stats->totalReceived++;
- uint64_t rtt = currentTime - entry->sendTimeInUs;
- stats->totalRtt += rtt;
- ccnxPingStatsEntry_Release(&entry);
- parcHashMap_Remove(stats->pings, nameResponse);
- return rtt;
- } else {
- *existing = false;
- char *nameString = ccnxName_ToString(nameResponse);
- printf("No entry for name %s\n", nameString);
- parcMemory_Deallocate(&nameString);
- }
- return 0;
-}
-
-size_t ccnxPingStats_RecordLost(CCNxPingStats *stats, CCNxName *nameResponse) {
- //size_t pingsReceived = stats->totalReceived + 1;
- CCNxPingStatsEntry *entry = (CCNxPingStatsEntry *) parcHashMap_Get(stats->pings, nameResponse);
- if (entry != NULL) {
- stats->totalLost++;
- ccnxPingStatsEntry_Release(&entry);
- parcHashMap_Remove(stats->pings, nameResponse);
- }
- return 0;
-}
-
-bool ccnxPingStats_Display(CCNxPingStats *stats) {
- if (stats->totalReceived > 0) {
- parcDisplayIndented_PrintLine(0,
- "Sent = %zu : Received = %zu : AvgDelay %llu us",
- stats->totalSent,
- stats->totalReceived,
- stats->totalRtt / stats->totalReceived);
- return true;
- }
- return false;
-}
diff --git a/apps/iping/iPing_Stats.h b/apps/iping/iPing_Stats.h
deleted file mode 100644
index cf28aaf4..00000000
--- a/apps/iping/iPing_Stats.h
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef ccnxPing_Stats_h
-#define ccnxPing_Stats_h
-
-/**
- * Structure to collect and display the performance statistics.
- */
-struct ping_stats;
-typedef struct ping_stats CCNxPingStats;
-
-/**
- * Create an empty `CCNxPingStats` instance.
- *
- * The returned result must be freed via {@link ccnxPingStats_Release}
- *
- * @return A newly allocated `CCNxPingStats`.
- *
- * Example
- * @code
- * {
- * CCNxPingStats *stats = ccnxPingStats_Create();
- * }
- * @endcode
- */
-CCNxPingStats *ccnxPingStats_Create(void);
-
-/**
- * Increase the number of references to a `CCNxPingStats`.
- *
- * Note that new `CCNxPingStats` is not created,
- * only that the given `CCNxPingStats` reference count is incremented.
- * Discard the reference by invoking `ccnxPingStats_Release`.
- *
- * @param [in] clock A pointer to a `CCNxPingStats` instance.
- *
- * @return The input `CCNxPingStats` pointer.
- *
- * Example:
- * @code
- * {
- * CCNxPingStats *stats = ccnxPingStats_Create();
- * CCNxPingStats *copy = ccnxPingStats_Acquire(stats);
- * ccnxPingStats_Release(&stats);
- * ccnxPingStats_Release(&copy);
- * }
- * @endcode
- */
-CCNxPingStats *ccnxPingStats_Acquire(const CCNxPingStats *stats);
-
-/**
- * Release a previously acquired reference to the specified instance,
- * decrementing the reference count for the instance.
- *
- * The pointer to the instance is set to NULL as a side-effect of this function.
- *
- * If the invocation causes the last reference to the instance to be released,
- * the instance is deallocated and the instance's implementation will perform
- * additional cleanup and release other privately held references.
- *
- * @param [in,out] clockPtr A pointer to a pointer to the instance to release.
- *
- * Example:
- * @code
- * {
- * CCNxPingStats *stats = ccnxPingStats_Create();
- * CCNxPingStats *copy = ccnxPingStats_Acquire(stats);
- * ccnxPingStats_Release(&stats);
- * ccnxPingStats_Release(&copy);
- * }
- * @endcode
- */
-void ccnxPingStats_Release(CCNxPingStats **statsPtr);
-
-/**
- * Record the name and time for a request (e.g., interest).
- *
- * @param [in] stats The `CCNxPingStats` instance.
- * @param [in] name The `CCNxName` name structure.
- * @param [in] timeInUs The send time (in microseconds).
- */
-void ccnxPingStats_RecordRequest(CCNxPingStats *stats, CCNxName *name, uint64_t timeInUs);
-
-/**
- * Record the name and time for a response (e.g., content object).
- *
- * @param [in] stats The `CCNxPingStats` instance.
- * @param [in] name The `CCNxName` name structure.
- * @param [in] timeInUs The send time (in microseconds).
- * @param [in] message The response `CCNxMetaMessage`.
- *
- * @return The delta between the request and response (in microseconds).
- */
-uint64_t ccnxPingStats_RecordResponse(CCNxPingStats *stats,
- CCNxName *name,
- uint64_t timeInUs,
- CCNxMetaMessage *message,
- bool *existing);
-
-size_t ccnxPingStats_RecordLost(CCNxPingStats *stats, CCNxName *nameResponse);
-
-/**
- * Display the average statistics stored in this `CCNxPingStats` instance.
- *
- * @param [in] stats The `CCNxPingStats` instance from which to draw the average data.
- *
- * @retval true If the stats were displayed correctly
- * @retval false Otherwise
- */
-bool ccnxPingStats_Display(CCNxPingStats *stats);
-#endif // ccnxPing_Stats_h
diff --git a/apps/producers/CMakeLists.txt b/apps/producers/CMakeLists.txt
index 2d97eb2e..10353057 100755
--- a/apps/producers/CMakeLists.txt
+++ b/apps/producers/CMakeLists.txt
@@ -25,13 +25,13 @@ set(PRODUCER_PING_SOURCE_FILES
add_executable(producer-test ${PRODUCER_SOURCE_FILES})
add_executable(producer-hello-world ${PRODUCER_HELLO_WORLD_SOURCE_FILES})
-add_executable(icnet-ping-server ${PRODUCER_PING_SOURCE_FILES})
+add_executable(iping-server ${PRODUCER_PING_SOURCE_FILES})
target_link_libraries(producer-test icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
target_link_libraries(producer-hello-world icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
-target_link_libraries(icnet-ping-server icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
+target_link_libraries(iping-server icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
install(TARGETS producer-test DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
install(TARGETS producer-hello-world DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
-install(TARGETS icnet-ping-server DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)
+install(TARGETS iping-server DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library)