/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 #include #include #include #include #include "qpid/messaging/Connection.h" #include "qpid/messaging/Session.h" #include "qpid/messaging/exceptions.h" #include "QpidMarshal.h" #include "Connection.h" #include "Session.h" #include "QpidException.h" #include "TypeTranslator.h" namespace Org { namespace Apache { namespace Qpid { namespace Messaging { /// /// Connection is a managed wrapper for a qpid::messaging::Connection /// // Disallow access if object has been destroyed. void Connection::ThrowIfDisposed() { if (IsDisposed) throw gcnew ObjectDisposedException (GetType()->FullName); } // constructors Connection::Connection(System::String ^ url) { System::Exception ^ newException = nullptr; try { privateLock = gcnew System::Object(); nativeObjPtr = new ::qpid::messaging::Connection(QpidMarshal::ToNative(url)); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } Connection::Connection(System::String ^ url, System::Collections::Generic::Dictionary< System::String ^, System::Object ^> ^ options) { System::Exception ^ newException = nullptr; try { privateLock = gcnew System::Object(); nativeObjPtr = new ::qpid::messaging::Connection(QpidMarshal::ToNative(url)); for each (System::Collections::Generic::KeyValuePair kvp in options) { SetOption(kvp.Key, kvp.Value); } } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } Connection::Connection(System::String ^ url, System::String ^ options) { System::Exception ^ newException = nullptr; try { privateLock = gcnew System::Object(); nativeObjPtr = new ::qpid::messaging::Connection(QpidMarshal::ToNative(url), QpidMarshal::ToNative(options)); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } // Copy constructor look-alike (C#) Connection::Connection(const Connection ^ connection) { System::Exception ^ newException = nullptr; try { privateLock = gcnew System::Object(); nativeObjPtr = new ::qpid::messaging::Connection( *(const_cast(connection)->NativeConnection)); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } // Copy constructor implicitly dereferenced (C++) Connection::Connection(const Connection % connection) { System::Exception ^ newException = nullptr; try { privateLock = gcnew System::Object(); nativeObjPtr = new ::qpid::messaging::Connection( *(const_cast(connection).NativeConnection)); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } // Destructor Connection::~Connection() { this->!Connection(); } // Finalizer Connection::!Connection() { if (NULL != nativeObjPtr) { msclr::lock lk(privateLock); if (NULL != nativeObjPtr) { delete nativeObjPtr; nativeObjPtr = NULL; } } } void Connection::SetOption(System::String ^ name, System::Object ^ value) { System::Exception ^ newException = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); ::qpid::types::Variant entryValue; TypeTranslator::ManagedToNativeObject(value, entryValue); std::string entryName = QpidMarshal::ToNative(name); nativeObjPtr->::qpid::messaging::Connection::setOption(entryName, entryValue); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } void Connection::Open() { System::Exception ^ newException = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); nativeObjPtr->open(); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } void Connection::Close() { System::Exception ^ newException = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); nativeObjPtr->close(); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } void Connection::Reconnect(System::String ^ url) { System::Exception ^ newException = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); std::string nativeUrl = QpidMarshal::ToNative(url); nativeObjPtr->reconnect(nativeUrl); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } void Connection::Reconnect() { System::Exception ^ newException = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); nativeObjPtr->reconnect(); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } if (newException != nullptr) { throw newException; } } // // CreateTransactionalSession() // Session ^ Connection::CreateTransactionalSession() { return CreateTransactionalSession(""); } Session ^ Connection::CreateTransactionalSession(System::String ^ name) { System::Exception ^ newException = nullptr; Session ^ newSession = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); // create native session ::qpid::messaging::Session sessionp = nativeObjPtr->createTransactionalSession(QpidMarshal::ToNative(name)); // create managed session newSession = gcnew Session(sessionp, this); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } finally { // Clean up and throw on caught exceptions if (newException != nullptr) { if (newSession != nullptr) { delete newSession; } } } if (newException != nullptr) { throw newException; } return newSession; } // // CreateSession() // Session ^ Connection::CreateSession() { return CreateSession(""); } Session ^ Connection::CreateSession(System::String ^ name) { System::Exception ^ newException = nullptr; Session ^ newSession = nullptr; try { msclr::lock lk(privateLock); ThrowIfDisposed(); // create native session ::qpid::messaging::Session sessionp = nativeObjPtr->createSession(QpidMarshal::ToNative(name)); // create managed session newSession = gcnew Session(sessionp, this); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } finally { // Clean up and throw on caught exceptions if (newException != nullptr) { if (newSession != nullptr) { delete newSession; } } } if (nullptr != newException) { throw newException; } return newSession; } Session ^ Connection::GetSession(System::String ^ name) { System::Exception ^ newException = nullptr; Session ^ newSession = nullptr; try { const std::string n = QpidMarshal::ToNative(name); msclr::lock lk(privateLock); ThrowIfDisposed(); ::qpid::messaging::Session sess = nativeObjPtr->::qpid::messaging::Connection::getSession(n); newSession = gcnew Session(sess, this); } catch (const ::qpid::types::Exception & error) { String ^ errmsg = gcnew String(error.what()); newException = gcnew QpidException(errmsg); } finally { // Clean up and throw on caught exceptions if (newException != nullptr) { if (newSession != nullptr) { delete newSession; } } } if (nullptr != newException) { throw newException; } return newSession; } }}}}