summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-08-30 08:18:31 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-08-30 08:18:31 +0200
commit176879e5bbce6115ff5741f2426f689bda312109 (patch)
tree295d25e283b37c66497743fb33665d128ad03218 /examples
parent1d650934e477be32db9a3c64de077deed0416689 (diff)
engine virtualised; chatroom example removed
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am2
-rw-r--r--examples/chat/Makefile.am15
-rw-r--r--examples/chat/chatroom.cpp74
-rw-r--r--examples/chat/display.cpp55
-rw-r--r--examples/chat/prompt.cpp61
5 files changed, 0 insertions, 207 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
deleted file mode 100644
index 5ab090f..0000000
--- a/examples/Makefile.am
+++ /dev/null
@@ -1,2 +0,0 @@
-SUBDIRS = chat
-DIST_SUBDIRS = chat
diff --git a/examples/chat/Makefile.am b/examples/chat/Makefile.am
deleted file mode 100644
index 84dad79..0000000
--- a/examples/chat/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-INCLUDES = -I$(top_builddir) -I$(top_builddir)/include
-
-noinst_PROGRAMS = chatroom display prompt
-
-chatroom_SOURCES = chatroom.cpp
-chatroom_LDADD = $(top_builddir)/src/libzmq.la
-chatroom_CXXFLAGS = -Wall -pedantic -Werror
-
-display_SOURCES = display.cpp
-display_LDADD = $(top_builddir)/src/libzmq.la
-display_CXXFLAGS = -Wall -pedantic -Werror
-
-prompt_SOURCES = prompt.cpp
-prompt_LDADD = $(top_builddir)/src/libzmq.la
-prompt_CXXFLAGS = -Wall -pedantic -Werror
diff --git a/examples/chat/chatroom.cpp b/examples/chat/chatroom.cpp
deleted file mode 100644
index 4cf123a..0000000
--- a/examples/chat/chatroom.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- Copyright (c) 2007-2009 FastMQ Inc.
-
- This file is part of 0MQ.
-
- 0MQ is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- 0MQ 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, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <time.h>
-#include <string.h>
-#include <iostream>
-
-using namespace std;
-
-#include <zmq.hpp>
-
-int main (int argc, const char *argv [])
-{
- // Check the command line syntax
- if (argc != 3) {
- cerr << "usage: chatroom <in-interface> <out-interface>" << endl;
- return 1;
- }
-
- // Retrieve command line arguments
- const char *in_interface = argv [1];
- const char *out_interface = argv [2];
-
- // Initialise 0MQ infrastructure
- zmq::context_t ctx (1, 1);
-
- // Create two sockets. One for receiving messages from 'propmt'
- // applications, one for sending messages to 'display' applications
- zmq::socket_t in_socket (ctx, ZMQ_SUB);
- in_socket.bind (in_interface);
- zmq::socket_t out_socket (ctx, ZMQ_PUB);
- out_socket.bind (out_interface);
-
- while (true) {
-
- // Get a message
- zmq::message_t in_message;
- in_socket.recv (&in_message);
-
- // Get the current time. Replace the newline character at the end
- // by space character.
- char timebuf [256];
- time_t current_time;
- time (&current_time);
- snprintf (timebuf, 256, "%s", ctime (&current_time));
- timebuf [strlen (timebuf) - 1] = ' ';
-
- // Create and fill in the message
- zmq::message_t out_message (strlen (timebuf) + in_message.size ());
- char *data = (char*) out_message.data ();
- memcpy (data, timebuf, strlen (timebuf));
- data += strlen (timebuf);
- memcpy (data, in_message.data (), in_message.size ());
-
- // Send the message
- out_socket.send (out_message);
- }
-}
diff --git a/examples/chat/display.cpp b/examples/chat/display.cpp
deleted file mode 100644
index eb55aa8..0000000
--- a/examples/chat/display.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- Copyright (c) 2007-2009 FastMQ Inc.
-
- This file is part of 0MQ.
-
- 0MQ is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- 0MQ 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, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <string.h>
-#include <string>
-#include <iostream>
-
-using namespace std;
-
-#include <zmq.hpp>
-
-int main (int argc, const char *argv [])
-{
- // Check the command line syntax.
- if (argc != 2) {
- cerr << "usage: display <chatroom-out-address>" << endl;
- return 1;
- }
-
- // Retrieve command line arguments
- const char *chatroom_out_address = argv [1];
-
- // Initialise 0MQ infrastructure, connect to the chatroom and ask for all
- // messages and gap notifications.
- zmq::context_t ctx (1, 1);
- zmq::socket_t s (ctx, ZMQ_SUB);
- s.connect (chatroom_out_address);
-
- while (true) {
-
- // Get a message and print it to the console.
- zmq::message_t message;
- s.recv (&message);
- if (message.type () == zmq::message_gap)
- cout << "Problems connecting to the chatroom..." << endl;
- else
- cout << (char*) message.data () << flush;
- }
-}
diff --git a/examples/chat/prompt.cpp b/examples/chat/prompt.cpp
deleted file mode 100644
index 66ceaf4..0000000
--- a/examples/chat/prompt.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- Copyright (c) 2007-2009 FastMQ Inc.
-
- This file is part of 0MQ.
-
- 0MQ is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- 0MQ 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, see <http://www.gnu.org/licenses/>.
-*/
-
-#include <string.h>
-#include <string>
-#include <iostream>
-
-using namespace std;
-
-#include <zmq.hpp>
-
-int main (int argc, const char *argv [])
-{
- // Check the command line syntax.
- if (argc != 3) {
- cerr << "usage: prompt <chatroom-in-address> <user name>" << endl;
- return 1;
- }
-
- // Retrieve command line arguments
- const char *chatroom_in_address = argv [1];
- const char *user_name = argv [2];
-
- // Initialise 0MQ infrastructure and connect to the chatroom.
- zmq::context_t ctx (1, 1);
- zmq::socket_t s (ctx, ZMQ_PUB);
- s.connect (chatroom_in_address);
-
- while (true) {
-
- // Allow user to input the message text. Prepend it by user name.
- char textbuf [1024];
- char *rcc = fgets (textbuf, sizeof (textbuf), stdin);
- assert (rcc);
- string text (user_name);
- text = text + ": " + textbuf;
-
- // Create the message (terminating zero is part of the message)
- zmq::message_t message (text.size () + 1);
- memcpy (message.data (), text.c_str (), text.size () + 1);
-
- // Send the message
- s.send (message);
- }
-}