/usr/include/proton/condition.h is in libqpid-proton8-dev 0.14.0-5.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | #ifndef PROTON_CONDITION_H
#define PROTON_CONDITION_H 1
/*
*
* 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 <proton/import_export.h>
#include <proton/codec.h>
#include <proton/type_compat.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
/** @file
*
* The Condition API for the proton Engine.
*
* @defgroup condition Condition
* @ingroup connection
* @{
*/
/**
* An AMQP Condition object. Conditions hold exceptional information
* pertaining to the closing of an AMQP endpoint such as a Connection,
* Session, or Link. Conditions also hold similar information
* pertaining to deliveries that have reached terminal states.
* Connections, Sessions, Links, and Deliveries may all have local and
* remote conditions associated with them.
*
* The local condition may be modified by the local endpoint to signal
* a particular condition to the remote peer. The remote condition may
* be examined by the local endpoint to detect whatever condition the
* remote peer may be signaling. Although often conditions are used to
* indicate errors, not all conditions are errors per/se, e.g.
* conditions may be used to redirect a connection from one host to
* another.
*
* Every condition has a short symbolic name, a longer description,
* and an additional info map associated with it. The name identifies
* the formally defined condition, and the map contains additional
* information relevant to the identified condition.
*/
typedef struct pn_condition_t pn_condition_t;
/**
* Returns true if the condition object is holding some information,
* i.e. if the name is set to some non NULL value. Returns false
* otherwise.
*
* @param[in] condition the condition object to test
* @return true iff some condition information is set
*/
PN_EXTERN bool pn_condition_is_set(pn_condition_t *condition);
/**
* Clears the condition object of any exceptional information. After
* calling ::pn_condition_clear(), ::pn_condition_is_set() is
* guaranteed to return false and ::pn_condition_get_name() as well as
* ::pn_condition_get_description() will return NULL. The ::pn_data_t
* returned by ::pn_condition_info() will still be valid, but will
* have been cleared as well (See ::pn_data_clear()).
*
* @param[in] condition the condition object to clear
*/
PN_EXTERN void pn_condition_clear(pn_condition_t *condition);
/**
* Returns the name associated with the exceptional condition, or NULL
* if there is no conditional information set.
*
* @param[in] condition the condition object
* @return a pointer to the name, or NULL
*/
PN_EXTERN const char *pn_condition_get_name(pn_condition_t *condition);
/**
* Sets the name associated with the exceptional condition.
*
* @param[in] condition the condition object
* @param[in] name the desired name
* @return an error code or 0 on success
*/
PN_EXTERN int pn_condition_set_name(pn_condition_t *condition, const char *name);
/**
* Gets the description associated with the exceptional condition.
*
* @param[in] condition the condition object
* @return a pointer to the description, or NULL
*/
PN_EXTERN const char *pn_condition_get_description(pn_condition_t *condition);
/**
* Sets the description associated with the exceptional condition.
*
* @param[in] condition the condition object
* @param[in] description the desired description
* @return an error code or 0 on success
*/
PN_EXTERN int pn_condition_set_description(pn_condition_t *condition, const char *description);
/**
* Returns a data object that holds the additional information
* associated with the condition. The data object may be used both to
* access and to modify the additional information associated with the
* condition.
*
* @param[in] condition the condition object
* @return a data object holding the additional information for the condition
*/
PN_EXTERN pn_data_t *pn_condition_info(pn_condition_t *condition);
/**
* Returns true if the condition is a redirect.
*
* @param[in] condition the condition object
* @return true if the condition is a redirect, false otherwise
*/
PN_EXTERN bool pn_condition_is_redirect(pn_condition_t *condition);
/**
* Retrieves the redirect host from the additional information
* associated with the condition. If the condition is not a redirect,
* this will return NULL.
*
* @param[in] condition the condition object
* @return the redirect host or NULL
*/
PN_EXTERN const char *pn_condition_redirect_host(pn_condition_t *condition);
/**
* Retrieves the redirect port from the additional information
* associated with the condition. If the condition is not a redirect,
* this will return an error code.
*
* @param[in] condition the condition object
* @return the redirect port or an error code
*/
PN_EXTERN int pn_condition_redirect_port(pn_condition_t *condition);
/** @}
*/
#ifdef __cplusplus
}
#endif
#endif /* condition.h */
|