blob: 8c59319a646af5ece45a4b61ac4abd2905256e02 [file] [log] [blame]
/*
* Copyright (c) 2020, 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 defines the OpenThread SRP server API.
*/
#include "openthread-core-config.h"
#if OPENTHREAD_CONFIG_SRP_SERVER_ENABLE
#include <openthread/srp_server.h>
#include "common/as_core_type.hpp"
#include "common/locator_getters.hpp"
using namespace ot;
const char *otSrpServerGetDomain(otInstance *aInstance)
{
return AsCoreType(aInstance).Get<Srp::Server>().GetDomain();
}
otError otSrpServerSetDomain(otInstance *aInstance, const char *aDomain)
{
return AsCoreType(aInstance).Get<Srp::Server>().SetDomain(aDomain);
}
otSrpServerState otSrpServerGetState(otInstance *aInstance)
{
return MapEnum(AsCoreType(aInstance).Get<Srp::Server>().GetState());
}
otSrpServerAddressMode otSrpServerGetAddressMode(otInstance *aInstance)
{
return MapEnum(AsCoreType(aInstance).Get<Srp::Server>().GetAddressMode());
}
otError otSrpServerSetAddressMode(otInstance *aInstance, otSrpServerAddressMode aMode)
{
return AsCoreType(aInstance).Get<Srp::Server>().SetAddressMode(MapEnum(aMode));
}
uint8_t otSrpServerGetAnycastModeSequenceNumber(otInstance *aInstance)
{
return AsCoreType(aInstance).Get<Srp::Server>().GetAnycastModeSequenceNumber();
}
otError otSrpServerSetAnycastModeSequenceNumber(otInstance *aInstance, uint8_t aSequenceNumber)
{
return AsCoreType(aInstance).Get<Srp::Server>().SetAnycastModeSequenceNumber(aSequenceNumber);
}
void otSrpServerSetEnabled(otInstance *aInstance, bool aEnabled)
{
AsCoreType(aInstance).Get<Srp::Server>().SetEnabled(aEnabled);
}
void otSrpServerGetLeaseConfig(otInstance *aInstance, otSrpServerLeaseConfig *aLeaseConfig)
{
AsCoreType(aInstance).Get<Srp::Server>().GetLeaseConfig(AsCoreType(aLeaseConfig));
}
otError otSrpServerSetLeaseConfig(otInstance *aInstance, const otSrpServerLeaseConfig *aLeaseConfig)
{
return AsCoreType(aInstance).Get<Srp::Server>().SetLeaseConfig(AsCoreType(aLeaseConfig));
}
void otSrpServerSetServiceUpdateHandler(otInstance * aInstance,
otSrpServerServiceUpdateHandler aServiceHandler,
void * aContext)
{
AsCoreType(aInstance).Get<Srp::Server>().SetServiceHandler(aServiceHandler, aContext);
}
void otSrpServerHandleServiceUpdateResult(otInstance *aInstance, otSrpServerServiceUpdateId aId, otError aError)
{
AsCoreType(aInstance).Get<Srp::Server>().HandleServiceUpdateResult(aId, aError);
}
const otSrpServerHost *otSrpServerGetNextHost(otInstance *aInstance, const otSrpServerHost *aHost)
{
return AsCoreType(aInstance).Get<Srp::Server>().GetNextHost(AsCoreTypePtr(aHost));
}
bool otSrpServerHostIsDeleted(const otSrpServerHost *aHost)
{
return AsCoreType(aHost).IsDeleted();
}
const char *otSrpServerHostGetFullName(const otSrpServerHost *aHost)
{
return AsCoreType(aHost).GetFullName();
}
const otIp6Address *otSrpServerHostGetAddresses(const otSrpServerHost *aHost, uint8_t *aAddressesNum)
{
return AsCoreType(aHost).GetAddresses(*aAddressesNum);
}
const otSrpServerService *otSrpServerHostGetNextService(const otSrpServerHost * aHost,
const otSrpServerService *aService)
{
return AsCoreType(aHost).FindNextService(AsCoreTypePtr(aService), Srp::Server::kFlagsBaseTypeServiceOnly);
}
const otSrpServerService *otSrpServerHostFindNextService(const otSrpServerHost * aHost,
const otSrpServerService *aPrevService,
otSrpServerServiceFlags aFlags,
const char * aServiceName,
const char * aInstanceName)
{
return AsCoreType(aHost).FindNextService(AsCoreTypePtr(aPrevService), aFlags, aServiceName, aInstanceName);
}
bool otSrpServerServiceIsDeleted(const otSrpServerService *aService)
{
return AsCoreType(aService).IsDeleted();
}
bool otSrpServerServiceIsSubType(const otSrpServerService *aService)
{
return AsCoreType(aService).IsSubType();
}
const char *otSrpServerServiceGetFullName(const otSrpServerService *aService)
{
return AsCoreType(aService).GetInstanceName();
}
const char *otSrpServerServiceGetInstanceName(const otSrpServerService *aService)
{
return AsCoreType(aService).GetInstanceName();
}
const char *otSrpServerServiceGetServiceName(const otSrpServerService *aService)
{
return AsCoreType(aService).GetServiceName();
}
otError otSrpServerServiceGetServiceSubTypeLabel(const otSrpServerService *aService, char *aLabel, uint8_t aMaxSize)
{
return AsCoreType(aService).GetServiceSubTypeLabel(aLabel, aMaxSize);
}
uint16_t otSrpServerServiceGetPort(const otSrpServerService *aService)
{
return AsCoreType(aService).GetPort();
}
uint16_t otSrpServerServiceGetWeight(const otSrpServerService *aService)
{
return AsCoreType(aService).GetWeight();
}
uint16_t otSrpServerServiceGetPriority(const otSrpServerService *aService)
{
return AsCoreType(aService).GetPriority();
}
const uint8_t *otSrpServerServiceGetTxtData(const otSrpServerService *aService, uint16_t *aDataLength)
{
*aDataLength = AsCoreType(aService).GetTxtDataLength();
return AsCoreType(aService).GetTxtData();
}
const otSrpServerHost *otSrpServerServiceGetHost(const otSrpServerService *aService)
{
return &AsCoreType(aService).GetHost();
}
#endif // OPENTHREAD_CONFIG_SRP_SERVER_ENABLE