/usr/include/odil/SCP.h is in libodil-dev 0.8.0-4build1.
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 | /*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for details.
************************************************************************/
#ifndef _f4680d8c_18a8_4317_956d_3ae238cb39cc
#define _f4680d8c_18a8_4317_956d_3ae238cb39cc
#include "odil/Association.h"
#include "odil/DataSet.h"
#include "odil/Exception.h"
#include "odil/message/Message.h"
#include "odil/message/Request.h"
#include "odil/odil.h"
#include "odil/Value.h"
namespace odil
{
/// @brief Base class for all Service Class Providers.
class ODIL_API SCP
{
public:
/**
* @brief Abstract base class for SCP returning multiple data sets.
*
* initialize, done, next and get shall throw an SCP::Exception on error.
*/
class ODIL_API DataSetGenerator
{
public:
/// @brief Destructor.
virtual ~DataSetGenerator() =0;
/// @brief Initialize the generator.
virtual void initialize(message::Request const & request) =0;
/// @brief Test whether all elements have been generated.
virtual bool done() const =0;
/// @brief Prepare the next element.
virtual void next() =0;
/// @brief Return the current element.
virtual DataSet get() const =0;
};
class Exception: public odil::Exception
{
public:
/// @brief Status to be sent back to user.
Value::Integer status;
/// @brief Status detail fields (e.g. offending element).
DataSet status_fields;
/// @brief Constructor.
Exception(
std::string const & message,
Value::Integer status, DataSet const & status_fields=DataSet());
/// @brief Destructor.
virtual ~Exception() noexcept;
};
/// @brief Create a Service Class Provider.
SCP(Association & association);
/// @brief Destructor
virtual ~SCP();
/// @brief Receive and process a message.
void receive_and_process();
/// @brief Process a message.
virtual void operator()(message::Message const & message) =0;
/// @brief Process a message.
virtual void operator()(message::Message && message) =0;
protected:
/// @brief Association with peer.
Association & _association;
};
}
#endif // _f4680d8c_18a8_4317_956d_3ae238cb39cc
|