00001 #ifndef PROTON_SOURCE_HPP 00002 #define PROTON_SOURCE_HPP 00003 00004 /* 00005 * 00006 * Licensed to the Apache Software Foundation (ASF) under one 00007 * or more contributor license agreements. See the NOTICE file 00008 * distributed with this work for additional information 00009 * regarding copyright ownership. The ASF licenses this file 00010 * to you under the Apache License, Version 2.0 (the 00011 * "License"); you may not use this file except in compliance 00012 * with the License. You may obtain a copy of the License at 00013 * 00014 * http://www.apache.org/licenses/LICENSE-2.0 00015 * 00016 * Unless required by applicable law or agreed to in writing, 00017 * software distributed under the License is distributed on an 00018 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00019 * KIND, either express or implied. See the License for the 00020 * specific language governing permissions and limitations 00021 * under the License. 00022 * 00023 */ 00024 00025 #include "./fwd.hpp" 00026 #include "./internal/export.hpp" 00027 #include "./map.hpp" 00028 #include "./symbol.hpp" 00029 #include "./terminus.hpp" 00030 #include "./value.hpp" 00031 00032 #include <string> 00033 00036 00037 struct pn_terminus_t; 00038 00039 namespace proton { 00040 00044 class source : public terminus { 00045 public: 00048 typedef map<symbol, value> filter_map; 00049 00051 source() : terminus() {} 00052 00054 enum distribution_mode { 00055 // XXX Why is unspecified needed? The protocol doesn't have 00056 // it. 00058 UNSPECIFIED = PN_DIST_MODE_UNSPECIFIED, 00060 COPY = PN_DIST_MODE_COPY, 00062 MOVE = PN_DIST_MODE_MOVE 00063 }; 00064 00065 using terminus::durability_mode; 00066 using terminus::expiry_policy; 00067 00069 PN_CPP_EXTERN std::string address() const; 00070 00072 PN_CPP_EXTERN enum distribution_mode distribution_mode() const; 00073 00075 PN_CPP_EXTERN const filter_map& filters() const; 00076 00077 private: 00078 source(pn_terminus_t* t); 00079 source(const sender&); 00080 source(const receiver&); 00081 00082 filter_map filters_; 00083 00085 friend class proton::internal::factory<source>; 00086 friend class sender; 00087 friend class receiver; 00089 }; 00090 00091 } // proton 00092 00093 #endif // PROTON_SOURCE_HPP