1 /*
2 * Copyright (c) 2016, The OpenThread Authors.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. Neither the name of the copyright holder nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 /**
30 * @file
31 * This file implements the OpenThread Joiner API.
32 */
33
34 #include "openthread-core-config.h"
35
36 #if OPENTHREAD_CONFIG_JOINER_ENABLE
37
38 #include <openthread/joiner.h>
39
40 #include "common/as_core_type.hpp"
41 #include "common/debug.hpp"
42 #include "common/locator_getters.hpp"
43
44 using namespace ot;
45
otJoinerStart(otInstance * aInstance,const char * aPskd,const char * aProvisioningUrl,const char * aVendorName,const char * aVendorModel,const char * aVendorSwVersion,const char * aVendorData,otJoinerCallback aCallback,void * aContext)46 otError otJoinerStart(otInstance * aInstance,
47 const char * aPskd,
48 const char * aProvisioningUrl,
49 const char * aVendorName,
50 const char * aVendorModel,
51 const char * aVendorSwVersion,
52 const char * aVendorData,
53 otJoinerCallback aCallback,
54 void * aContext)
55 {
56 return AsCoreType(aInstance).Get<MeshCoP::Joiner>().Start(aPskd, aProvisioningUrl, aVendorName, aVendorModel,
57 aVendorSwVersion, aVendorData, aCallback, aContext);
58 }
59
otJoinerStop(otInstance * aInstance)60 void otJoinerStop(otInstance *aInstance)
61 {
62 AsCoreType(aInstance).Get<MeshCoP::Joiner>().Stop();
63 }
64
otJoinerGetState(otInstance * aInstance)65 otJoinerState otJoinerGetState(otInstance *aInstance)
66 {
67 return MapEnum(AsCoreType(aInstance).Get<MeshCoP::Joiner>().GetState());
68 }
69
otJoinerGetId(otInstance * aInstance)70 const otExtAddress *otJoinerGetId(otInstance *aInstance)
71 {
72 return &AsCoreType(aInstance).Get<MeshCoP::Joiner>().GetId();
73 }
74
otJoinerSetDiscerner(otInstance * aInstance,otJoinerDiscerner * aDiscerner)75 otError otJoinerSetDiscerner(otInstance *aInstance, otJoinerDiscerner *aDiscerner)
76 {
77 Error error = kErrorNone;
78 MeshCoP::Joiner &joiner = AsCoreType(aInstance).Get<MeshCoP::Joiner>();
79
80 if (aDiscerner != nullptr)
81 {
82 error = joiner.SetDiscerner(AsCoreType(aDiscerner));
83 }
84 else
85 {
86 error = joiner.ClearDiscerner();
87 }
88
89 return error;
90 }
91
otJoinerGetDiscerner(otInstance * aInstance)92 const otJoinerDiscerner *otJoinerGetDiscerner(otInstance *aInstance)
93 {
94 return AsCoreType(aInstance).Get<MeshCoP::Joiner>().GetDiscerner();
95 }
96
otJoinerStateToString(otJoinerState aState)97 const char *otJoinerStateToString(otJoinerState aState)
98 {
99 OT_ASSERT(aState <= OT_JOINER_STATE_JOINED);
100
101 return MeshCoP::Joiner::StateToString(MapEnum(aState));
102 }
103
104 #endif // OPENTHREAD_CONFIG_JOINER_ENABLE
105