123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- /*
- * SpanDSP - a series of DSP components for telephony
- *
- * rfc2198_sim_tests.c - Tests for the G.1050/TIA-921 model
- * with redundant transmission in the
- * style of UDPTL or RFC2198..
- *
- * Written by Steve Underwood <steveu@coppice.org>
- *
- * Copyright (C) 2007 Steve Underwood
- *
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2, as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- #if defined(HAVE_CONFIG_H)
- #include "config.h"
- #endif
- #if defined(HAVE_FL_FL_H) && defined(HAVE_FL_FL_CARTESIAN_H) && defined(HAVE_FL_FL_AUDIO_METER_H)
- #define ENABLE_GUI
- #endif
- #include <stdlib.h>
- #include <stdio.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <string.h>
- #include <time.h>
- #include <sndfile.h>
- #if defined(HAVE_MATH_H)
- #define GEN_CONST
- #endif
- #include "spandsp.h"
- #include "spandsp-sim.h"
- #if defined(ENABLE_GUI)
- #include "media_monitor.h"
- #endif
- #define PACKET_SIZE 256
- #define PACKET_INTERVAL 20
- #define SIMULATION_TIME 300
- #define MODEL_NO 8
- #define SPEED_PATTERN_NO 133
- int main(int argc, char *argv[])
- {
- rfc2198_sim_state_t *s;
- double *packet_arrival_times;
- int packets_per_sec;
- int num_packets;
- int model_no;
- int speed_pattern_no;
- int simulation_time;
- int i;
- int len;
- uint8_t put_pkt[256];
- uint8_t get_pkt[256];
- int put_pkt_len;
- int get_pkt_len;
- int get_seq_no;
- double get_departure_time;
- double get_arrival_time;
- int packets_put;
- int packets_really_put;
- int packets_got;
- int oos_packets_got;
- int missing_packets_got;
- int highest_seq_no_got;
- int opt;
- FILE *out_file;
- #if defined(ENABLE_GUI)
- int use_gui;
- #endif
- #if defined(ENABLE_GUI)
- use_gui = false;
- #endif
- model_no = MODEL_NO;
- speed_pattern_no = SPEED_PATTERN_NO;
- simulation_time = SIMULATION_TIME;
- while ((opt = getopt(argc, argv, "gm:s:t:")) != -1)
- {
- switch (opt)
- {
- case 'g':
- #if defined(ENABLE_GUI)
- use_gui = true;
- #else
- fprintf(stderr, "Graphical monitoring not available\n");
- exit(2);
- #endif
- break;
- case 'm':
- model_no = optarg[0] - 'A' + 1;
- if (model_no < 0 || model_no > 8)
- {
- fprintf(stderr, "Bad model ID '%s'\n", optarg);
- exit(2);
- }
- break;
- case 's':
- speed_pattern_no = atoi(optarg);
- if (speed_pattern_no < 1 || speed_pattern_no > 133)
- {
- fprintf(stderr, "Bad link speed pattern %s\n", optarg);
- exit(2);
- }
- break;
- case 't':
- simulation_time = atoi(optarg);
- break;
- default:
- //usage();
- exit(2);
- break;
- }
- }
- argc -= optind;
- argv += optind;
- if ((out_file = fopen("rfc2198_sim_tests.txt", "w")) == NULL)
- {
- fprintf(stderr, "Can't open %s\n", "rfc2198_sim_tests.txt");
- return 2;
- }
- packets_per_sec = 1000/PACKET_INTERVAL;
- num_packets = packets_per_sec*simulation_time;
- if ((packet_arrival_times = calloc(num_packets, sizeof(double))) == NULL)
- {
- fprintf(stderr, "Can't allocate the data buffers\n");
- return 2;
- }
- for (i = 0; i < num_packets; i++)
- packet_arrival_times[i] = 0.0;
- /* If we don't initialise this random number generator it gives endless zeros on some systems. */
- /* Use a fixed seed to produce identical results in successive runs of the simulation, for debug purposes. */
- srand48(0x1234567);
- if ((s = rfc2198_sim_init(model_no, speed_pattern_no, PACKET_SIZE, packets_per_sec, 3)) == NULL)
- {
- fprintf(stderr, "Failed to start the G.1050 model\n");
- exit(2);
- }
- //rfc2198_sim_dump_parms(model_no, speed_pattern_no);
- #if defined(ENABLE_GUI)
- if (use_gui)
- start_media_monitor();
- #endif
- for (i = 0; i < 256; i++)
- put_pkt[i] = i;
- put_pkt_len = 256;
- get_pkt_len = -1;
- get_seq_no = -1;
- get_arrival_time = -1;
- packets_put = 0;
- packets_really_put = 0;
- packets_got = 0;
- oos_packets_got = 0;
- missing_packets_got = 0;
- highest_seq_no_got = -1;
- for (i = 0; i < num_packets; i++)
- {
- if ((len = rfc2198_sim_put(s, put_pkt, put_pkt_len, i, (double) i*0.001*PACKET_INTERVAL)) > 0)
- packets_really_put++;
- packets_put++;
- #if 0
- if (i == 5)
- rfc2198_sim_queue_dump(s);
- #endif
- if (i >= 5)
- {
- do
- {
- get_pkt_len = rfc2198_sim_get(s, get_pkt, 256, (double) i*0.001*PACKET_INTERVAL, &get_seq_no, &get_departure_time, &get_arrival_time);
- if (get_pkt_len >= 0)
- {
- #if defined(ENABLE_GUI)
- if (use_gui)
- media_monitor_rx(get_seq_no, get_departure_time, get_arrival_time);
- #endif
- packets_got++;
- if (get_seq_no < highest_seq_no_got)
- oos_packets_got++;
- else if (get_seq_no > highest_seq_no_got + 1)
- missing_packets_got += (get_seq_no - highest_seq_no_got - 1);
- if (get_seq_no > highest_seq_no_got)
- highest_seq_no_got = get_seq_no;
- fprintf(out_file, "%d, %.3f, %.8f\n", get_seq_no, get_seq_no*0.001*PACKET_INTERVAL, get_arrival_time);
- }
- }
- while (get_pkt_len >= 0);
- }
- #if defined(ENABLE_GUI)
- if (use_gui)
- media_monitor_update_display();
- #endif
- }
- /* Clear out anything remaining in the queue, by jumping forwards in time */
- do
- {
- get_pkt_len = rfc2198_sim_get(s, get_pkt, 256, (double) i*0.001*PACKET_INTERVAL + 5.0, &get_seq_no, &get_departure_time, &get_arrival_time);
- if (get_pkt_len >= 0)
- {
- packets_got++;
- fprintf(out_file, "%d, %.3f, %.8f\n", get_seq_no, get_seq_no*0.001*PACKET_INTERVAL, get_arrival_time);
- }
- }
- while (get_pkt_len >= 0);
- fclose(out_file);
- rfc2198_sim_free(s);
- free(packet_arrival_times);
- printf("Put %d packets. Really put %d packets. Got %d packets.\n", packets_put, packets_really_put, packets_got);
- printf("%d OOS packets, %d missing packets\n", oos_packets_got, missing_packets_got - oos_packets_got);
- printf("%d packets queued, %d received\n", packets_really_put, packets_got);
- printf("%.3f%% of packets lost before redundancy\n", 100.0*(packets_put - packets_really_put)/packets_put);
- printf("%.3f%% of packets lost after redundancy\n", 100.0*(packets_put - packets_got)/packets_put);
- return 0;
- }
- /*- End of function --------------------------------------------------------*/
- /*- End of file ------------------------------------------------------------*/
|