/* * Copyright (c) 2021, The OpenThread Authors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /** * @file * This file includes definitions for Anycast Locator functionality. */ #ifndef ANYCAST_LOCATOR_HPP_ #define ANYCAST_LOCATOR_HPP_ #include "openthread-core-config.h" #if OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_ENABLE #include "coap/coap.hpp" #include "common/locator.hpp" #include "common/non_copyable.hpp" #include "net/ip6_address.hpp" namespace ot { /** * This class implements Anycast Locator functionality which allows caller to determine the mesh local EID and RLOC16 * of the closest destination of an anycast address (if any). * * The closest destination is determined based on the current routing table and path costs within the Thread mesh. * */ class AnycastLocator : public InstanceLocator, private NonCopyable { public: /** * This function pointer type defines the callback to notify the outcome of a request. * */ typedef otThreadAnycastLocatorCallback Callback; /** * This constructor initializes the `AnycastLocator` object. * * @param[in] aInstance A reference to the OpenThread instance. * */ explicit AnycastLocator(Instance &aInstance); /** * This method requests the closest destination of a given anycast address to be located. * * If a previous `Locate()` request is ongoing, a subsequent call to this method will cancel and replace the * earlier request. * * @param[in] aAnycastAddress The anycast address to locate the closest destination of. * @param[in] aCallback The callback handler to report the result. * @param[in] aContext An arbitrary context used with @p aCallback. * * @retval kErrorNone The request started successfully. @p aCallback will be invoked to report the result. * @retval kErrorNoBufs Out of buffers to prepare and send the request message. * @retval kErrorInvalidArgs The @p aAnycastAddress is not a valid anycast address or @p aCallback is `nullptr`. * */ Error Locate(const Ip6::Address &aAnycastAddress, Callback aCallback, void *aContext); /** * This method indicates whether an earlier request is in progress. * * @returns TRUE if an earlier request is in progress, FALSE otherwise. * */ bool IsInProgress(void) const { return (mCallback != nullptr); } private: static void HandleResponse(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo, Error aError); void HandleResponse(Coap::Message *aMessage, const Ip6::MessageInfo *aMessageInfo, Error aError); #if OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_SEND_RESPONSE static void HandleAnycastLocate(void *aContext, otMessage *aMessage, const otMessageInfo *aMessageInfo); void HandleAnycastLocate(const Coap::Message &aRequest, const Ip6::MessageInfo &aMessageInfo); #endif Callback mCallback; void * mContext; #if OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_SEND_RESPONSE Coap::Resource mAnycastLocate; #endif }; } // namespace ot #endif // OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_ENABLE #endif // ANYCAST_LOCATOR_HPP_