summaryrefslogtreecommitdiff
path: root/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-10-26 19:48:31 +0000
committerAlan Conway <aconway@apache.org>2007-10-26 19:48:31 +0000
commitf61e1ef7589da893b9b54448224dc0961515eb40 (patch)
tree258ac1fd99ac122b105ad90ad4394d8d544c5cbf /cpp/src/Makefile.am
parentc5294d471ade7a18c52ca7d4028a494011c82293 (diff)
downloadqpid-python-f61e1ef7589da893b9b54448224dc0961515eb40.tar.gz
Session resume support in client & broker: Client can resume a session
after voluntary suspend() or network failure. Frames lost in network failure are automatically re-transmitted for transparent re-connection. client::Session improvements: - Locking to avoid races between network & user threads. - Replaced client::StateManager with sys::StateMonitor - avoid heap allocation. qpid::Exception clean up: - use QPID_MSG consistently to format exception messages. - throw typed exceptions (in reply_exceptions.h) for AMQP exceptions. - re-throw correct typed exception on client for exceptions from broker. - Removed QpidError.h rubygen/templates/constants.rb: - constants.h: Added FOO_CLASS_ID and FOO_BAR_METHOD_ID constants. - reply_constants.h: Added throwReplyException(code, text) log::Logger: - Fixed shutdown race in Statement::~Initializer() git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@588761 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
-rw-r--r--cpp/src/Makefile.am13
1 files changed, 5 insertions, 8 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index 57b3d27b71..ebb8916d6a 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -52,7 +52,6 @@ qpidd_SOURCES = qpidd.cpp
posix_plat_src = \
qpid/sys/epoll/EpollPoller.cpp \
- qpid/sys/posix/check.cpp \
qpid/sys/posix/Socket.cpp \
qpid/sys/posix/AsynchIO.cpp \
qpid/sys/posix/Time.cpp \
@@ -110,8 +109,7 @@ libqpidcommon_la_SOURCES = \
qpid/framing/InitiationHandler.cpp \
qpid/framing/ProtocolInitiation.cpp \
qpid/framing/ProtocolVersion.cpp \
- qpid/framing/ProtocolVersionException.cpp \
- qpid/framing/ResumeHandler.cpp qpid/framing/ResumeHandler.h \
+ qpid/framing/SessionState.cpp qpid/framing/SessionState.h \
qpid/framing/SendContent.cpp \
qpid/framing/SequenceNumber.cpp \
qpid/framing/SequenceNumberSet.cpp \
@@ -126,7 +124,6 @@ libqpidcommon_la_SOURCES = \
qpid/Exception.cpp \
qpid/Plugin.cpp \
qpid/Url.cpp \
- qpid/QpidError.cpp \
qpid/sys/AsynchIOAcceptor.cpp \
qpid/sys/Dispatcher.cpp \
qpid/sys/Runnable.cpp \
@@ -210,7 +207,6 @@ libqpidclient_la_SOURCES = \
qpid/client/MessageListener.cpp \
qpid/client/Correlator.cpp \
qpid/client/CompletionTracker.cpp \
- qpid/client/SessionHandler.cpp \
qpid/client/ConnectionHandler.cpp \
qpid/client/ExecutionHandler.cpp \
qpid/client/FutureCompletion.cpp \
@@ -221,12 +217,12 @@ libqpidclient_la_SOURCES = \
nobase_include_HEADERS = \
$(platform_hdr) \
+ qpid/assert.h \
qpid/Exception.h \
qpid/ExceptionHolder.h \
qpid/Msg.h \
qpid/Options.h \
qpid/Plugin.h \
- qpid/QpidError.h \
qpid/SharedObject.h \
qpid/Url.h \
qpid/memory.h \
@@ -323,7 +319,6 @@ nobase_include_HEADERS = \
qpid/client/MessageQueue.h \
qpid/client/Response.h \
qpid/client/SessionCore.h \
- qpid/client/SessionHandler.h \
qpid/client/StateManager.h \
qpid/client/TypedResult.h \
qpid/framing/AMQBody.h \
@@ -339,6 +334,7 @@ nobase_include_HEADERS = \
qpid/framing/Blob.h \
qpid/framing/BodyHandler.h \
qpid/framing/Buffer.h \
+ qpid/framing/ChannelHandler.h \
qpid/framing/ChannelAdapter.h \
qpid/framing/FieldTable.h \
qpid/framing/FieldValue.h \
@@ -360,7 +356,6 @@ nobase_include_HEADERS = \
qpid/framing/OutputHandler.h \
qpid/framing/ProtocolInitiation.h \
qpid/framing/ProtocolVersion.h \
- qpid/framing/ProtocolVersionException.h \
qpid/framing/Proxy.h \
qpid/framing/SendContent.h \
qpid/framing/SequenceNumber.h \
@@ -399,6 +394,8 @@ nobase_include_HEADERS = \
qpid/sys/Shlib.h \
qpid/sys/ShutdownHandler.h \
qpid/sys/Socket.h \
+ qpid/sys/StateMonitor.h \
+ qpid/sys/Waitable.h \
qpid/sys/Thread.h \
qpid/sys/Time.h \
qpid/sys/TimeoutHandler.h