X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=service%2Fresource-encapsulation%2Finclude%2FRCSRemoteResourceObject.h;h=e5af9a22cf175be38cb83008a333427b7738d9d3;hb=refs%2Ftags%2Faccepted%2Ftizen%2Funified%2F20171010.063815;hp=bd66a2f57c9dc9809ebd7fc5d11ad6fc4d94cbea;hpb=61274389a127dd467b0ee5c70c7b2115e70c52f4;p=platform%2Fupstream%2Fiotivity.git diff --git a/service/resource-encapsulation/include/RCSRemoteResourceObject.h b/service/resource-encapsulation/include/RCSRemoteResourceObject.h index bd66a2f..e5af9a2 100644 --- a/service/resource-encapsulation/include/RCSRemoteResourceObject.h +++ b/service/resource-encapsulation/include/RCSRemoteResourceObject.h @@ -30,11 +30,27 @@ #include #include "RCSResourceAttributes.h" +#include "RCSRepresentation.h" + +namespace OC +{ + class OCResource; + + namespace HeaderOption + { + class OCHeaderOption; + } +} namespace OIC { namespace Service { + + class RCSRepresentation; + + typedef std::vector< OC::HeaderOption::OCHeaderOption > HeaderOpts; + /** * The states of caching. * @@ -50,6 +66,12 @@ namespace OIC LOST_SIGNAL, /**< Failed to reach the resource. */ }; + enum class CacheMode + { + OBSERVE_ONLY, + OBSERVE_WITH_POLLING + }; + /** * The states of monitoring. * @@ -69,6 +91,74 @@ namespace OIC class PrimitiveResource; /** + * This is to specify query parameters for requests to the server. + * + * @see RCSRemoteResourceObject + */ + class RCSQueryParams + { + public: + typedef std::unordered_map< std::string, std::string > Map; + + public: + + /** + * Sets an interface of the resource to operate on + * + * @param interface interface + */ + RCSQueryParams& setResourceInterface(std::string interface); + + /** + * Sets a resource type of the resource to operate on + * + * @param type resource type + */ + RCSQueryParams& setResourceType(std::string type); + + /** + * Sets a resource type of the resource to operate on + * + * @param key key to be inserted + * @param value value to be inserted + * + * @note "rt" and "if" are reserved, so you should avoid them as a key. + * + */ + RCSQueryParams& put(std::string key, std::string value); + + /** + * Returns the resource interface. + */ + std::string getResourceInterface() const; + + /** + * Returns the resource type. + */ + std::string getResourceType() const; + + /** + * Returns a value. + * + * @param key key of the element whose mapped value is accessed. + * + * @throws InvalidKeyException If @a key doesn't match the key of any value. + */ + std::string get(const std::string& key) const; + + /** + * Returns all params. + */ + const Map& getAll() const; + + private: + std::string m_resourceInterface; + std::string m_resourceType; + + std::unordered_map< std::string, std::string > m_map; + }; + + /** * * This represents a remote resource and provides simple ways to interact with it. * Basically this is a client of a remote resource that runs on other device. @@ -79,7 +169,7 @@ namespace OIC * @see RCSDiscoveryManager * */ - class RCSRemoteResourceObject + class RCSRemoteResourceObject : public std::enable_shared_from_this { public: typedef std::shared_ptr< RCSRemoteResourceObject > Ptr; @@ -97,7 +187,8 @@ namespace OIC * * @param attrs the updated attributes */ - typedef std::function< void(const RCSResourceAttributes& attrs) > CacheUpdatedCallback; + typedef std::function< void(const RCSResourceAttributes& attrs, int eCode) > + CacheUpdatedCallback; /** * Callback definition to be invoked when the response of getRemoteAttributes is @@ -112,6 +203,18 @@ namespace OIC RemoteAttributesGetCallback; /** + * Callback definition to be invoked when the response of get is received. + * + * @param HeaderOpts + * @param rep the result representation + * @param eCode the error code received from the resource + * + * @see get + */ + typedef std::function< void(const HeaderOpts& headerOpts, + const RCSRepresentation& rep, int eCode) > GetCallback; + + /** * Callback definition to be invoked when the response of setRemoteAttributes is * received. * @@ -120,9 +223,21 @@ namespace OIC * * @see setRemoteAttributes */ - typedef std::function< void(const RCSResourceAttributes&, int) > + typedef std::function< void(const RCSResourceAttributes& attrs, int eCode) > RemoteAttributesSetCallback; + /** + * Callback definition to be invoked when the response of set is received. + * + * @param HeaderOpts + * @param rep the result representation + * @param eCode the error code received from the resource + * + * @see set + */ + typedef std::function< void(const HeaderOpts& headerOpts, + const RCSRepresentation& rep, int eCode) > SetCallback; + private: typedef int CacheID; typedef unsigned int BrokerID; @@ -135,6 +250,22 @@ namespace OIC ~RCSRemoteResourceObject(); /** + * Creates an instance from an OCResource instance. + * + * @throw RCSInvalidParameterException If ocResource is nullptr. + */ + static RCSRemoteResourceObject::Ptr fromOCResource( + std::shared_ptr< OC::OCResource > ocResource); + + /** + * Returns an equivalent OCResource using RCSRemoteResourceObject instance. + * + * @throw RCSInvalidParameterException If rcsResource is nullptr. + */ + static std::shared_ptr< OC::OCResource > toOCResource( + RCSRemoteResourceObject::Ptr rcsResource); + + /** * Returns whether monitoring is enabled. * * @see startMonitoring() @@ -219,6 +350,7 @@ namespace OIC * updates the cached data accordingly. * * @param cb If non-empty function, it will be invoked whenever the cache updated. + * @param mode if CacheMode is OBSERVE_ONLY, it will be invoked when receive observe response only. * * @throws BadRequestException If caching is already started. * @@ -231,7 +363,7 @@ namespace OIC * @see getCachedAttribute(const std::string&) const * */ - void startCaching(CacheUpdatedCallback cb); + void startCaching(CacheUpdatedCallback cb, CacheMode mode = CacheMode::OBSERVE_WITH_POLLING); /** * Stops caching. @@ -298,18 +430,43 @@ namespace OIC * Gets resource attributes directly from the server. * * This API send a get request to the resource of interest and provides - * the attributes to the caller in the RemoteAttributesReceivedCallback. + * the attributes to the caller in the RemoteAttributesGetCallback. * * @throws PlatformException If the operation failed * @throws InvalidParameterException If cb is an empty function or null. * - * @see RCSResourceAttributes::Value - * * @note The callback will be invoked in an internal thread. */ void getRemoteAttributes(RemoteAttributesGetCallback cb); /** + * Gets resource representation with empty query parameters directly from the server. + * + * @param cb A callback to receive the response. + * + * @throws PlatformException If the operation failed + * @throws InvalidParameterException If cb is an empty function or null. + * + * @note The callback will be invoked in an internal thread. + */ + void get(GetCallback cb); + + /** + * Gets resource representation directly from the server. + * + * The response could be different by the query parameters, it depends on server. + * + * @param queryParams Query parameters + * @param cb A callback to receive the response. + * + * @throws PlatformException If the operation failed + * @throws InvalidParameterException If cb is an empty function or null. + * + * @note The callback will be invoked in an internal thread. + */ + void get(const RCSQueryParams& queryParams, GetCallback cb); + + /** * Sends a set request with resource attributes to the server. * * The SetRequest behavior depends on the server, whether updating its attributes or not. @@ -329,6 +486,64 @@ namespace OIC RemoteAttributesSetCallback cb); /** + * Sends a set request with resource attributes to the server. + * + * The SetRequest behavior depends on query parameters and the server. + * + * @param attributes Attributes to set + * @param cb A callback to receive the response. + * + * @throws PlatformException If the operation failed + * @throws InvalidParameterException If cb is an empty function or null. + * + * @see RCSResourceObject + * @see RCSResourceObject::SetRequestHandlerPolicy + * + * @note The callback will be invoked in an internal thread. + */ + void set(const RCSResourceAttributes& attributes, SetCallback cb); + + /** + * Sends a set request with resource attributes to the server. + * + * The SetRequest behavior depends on query parameters and the server. + * + * @param queryParams Query parameters + * @param attributes Attributes to set + * @param cb A callback to receive the response. + * + * @throws PlatformException If the operation failed + * @throws InvalidParameterException If cb is an empty function or null. + * + * @see RCSResourceObject + * @see RCSResourceObject::SetRequestHandlerPolicy + * + * @note The callback will be invoked in an internal thread. + */ + void set(const RCSQueryParams& queryParams, const RCSResourceAttributes& attributes, + SetCallback cb); + + /** + * Sends a set request with resource representation to the server. + * + * The SetRequest behavior depends on query parameters and the server. + * + * @param queryParams Query parameters + * @param rep Representation to set + * @param cb A callback to receive the response. + * + * @throws PlatformException If the operation failed + * @throws InvalidParameterException If cb is an empty function or null. + * + * @see RCSResourceObject + * @see RCSResourceObject::SetRequestHandlerPolicy + * + * @note The callback will be invoked in an internal thread. + */ + void set(const RCSQueryParams& queryParams, const RCSRepresentation &rep, + SetCallback cb); + + /** * Returns the uri of the resource. * */