blob: 82b1f7498091945a1d3fccc12f213d2f319b5a84 [file] [log] [blame]
/*
* Copyright (c) 2017, 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 NCP service.
*/
#ifndef OTBR_AGENT_NCP_OPENTHREAD_HPP_
#define OTBR_AGENT_NCP_OPENTHREAD_HPP_
#include <chrono>
#include <memory>
#include <openthread/instance.h>
#include <openthread/openthread-system.h>
#include "ncp.hpp"
#include "agent/thread_helper.hpp"
namespace otbr {
namespace Ncp {
/**
* This interface defines NCP Controller functionality.
*
*/
class ControllerOpenThread : public Controller
{
public:
/**
* This constructor initializes this object.
*
* @param[in] aInterfaceName A string of the NCP interface name.
* @param[in] aRadioFile A string of the NCP device file, which can be serial device or executables.
* @param[in] aRadioConfig A string of the NCP device parameters.
*
*/
ControllerOpenThread(const char *aInterfaceName, char *aRadioFile, char *aRadioConfig);
/**
* This method initalize the NCP controller.
*
* @retval OTBR_ERROR_NONE Successfully initialized NCP controller.
*
*/
otbrError Init(void) override;
/**
* This method get mInstance pointer.
*
* @retval the pointer of mInstance.
*
*/
otInstance *GetInstance(void) { return mInstance; }
/**
* This method gets the thread functionality helper.
*
* @retval the pointer to the helper object.
*
*/
otbr::agent::ThreadHelper *GetThreadHelper(void) { return mThreadHelper.get(); }
/**
* This method updates the fd_set to poll.
*
* @param[inout] aMainloop A reference to OpenThread mainloop context.
*
*/
void UpdateFdSet(otSysMainloopContext &aMainloop) override;
/**
* This method performs the DTLS processing.
*
* @param[in] aMainloop A reference to OpenThread mainloop context.
*
*/
void Process(const otSysMainloopContext &aMainloop) override;
/**
* This method reset the NCP controller.
*
*/
void Reset(void) override;
/**
* This method return whether reset is requested.
*
* @retval TRUE reset is requested.
* @retval FALSE reset isn't requested.
*
*/
bool IsResetRequested(void) override;
/**
* This method request the event.
*
* @param[in] aEvent The event id to request.
*
* @retval OTBR_ERROR_NONE Successfully requested the event.
* @retval OTBR_ERROR_ERRNO Failed to request the event.
*
*/
otbrError RequestEvent(int aEvent) override;
void PostTimerTask(std::chrono::steady_clock::time_point aTimePoint, const std::function<void(void)> &aTask);
~ControllerOpenThread(void) override;
private:
static void HandleStateChanged(otChangedFlags aFlags, void *aContext)
{
static_cast<ControllerOpenThread *>(aContext)->HandleStateChanged(aFlags);
}
void HandleStateChanged(otChangedFlags aFlags);
otInstance *mInstance;
otPlatformConfig mConfig;
std::unique_ptr<otbr::agent::ThreadHelper> mThreadHelper;
std::multimap<std::chrono::steady_clock::time_point, std::function<void(void)>> mTimers;
bool mTriedAttach;
};
} // namespace Ncp
} // namespace otbr
#endif // OTBR_AGENT_NCP_OPENTHREAD_HPP_