ESP-IDF
ot::NetworkData::Leader::ContextIds
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Methods
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::NetworkData::Leader::ContextIds
ot::NetworkData::Leader::ContextIds class
Syntax
Show:
Summary
Declaration
from
network_data_leader.hpp:495
class
ContextIds
:
public
InstanceLocator
{
public
:
static
constexpr
uint8_t
kInvalidId
=
NumericLimits
<
uint8_t
>
::
kMax
;
explicit
ContextIds
(
Instance
&
aInstance
)
;
void
Clear
(
void
)
;
Error
GetUnallocatedId
(
uint8_t
&
aId
)
;
void
MarkAsInUse
(
uint8_t
aId
)
{
mRemoveTimes
[
aId
-
kMinId
]
.
SetValue
(
kInUse
)
;
}
void
ScheduleToRemove
(
uint8_t
aId
)
;
uint32_t
GetReuseDelay
(
void
)
const
{
return
mReuseDelay
;
}
void
SetReuseDelay
(
uint32_t
aDelay
)
{
mReuseDelay
=
aDelay
;
}
void
HandleTimer
(
void
)
;
#if
OPENTHREAD_CONFIG_BORDER_ROUTER_SIGNAL_NETWORK_DATA_FULL
void
MarkAsClone
(
void
)
{
mIsClone
=
true
;
}
#endif
private
:
static
constexpr
uint32_t
kReuseDelay
=
5
*
60
;
static
constexpr
uint8_t
kMinId
=
1
;
static
constexpr
uint8_t
kMaxId
=
15
;
static
constexpr
uint32_t
kUnallocated
=
0
;
static
constexpr
uint32_t
kInUse
=
1
;
bool
IsUnallocated
(
uint8_t
aId
)
const
{
return
mRemoveTimes
[
aId
-
kMinId
]
.
GetValue
(
)
==
kUnallocated
;
}
bool
IsInUse
(
uint8_t
aId
)
const
{
return
mRemoveTimes
[
aId
-
kMinId
]
.
GetValue
(
)
==
kInUse
;
}
TimeMilli
GetRemoveTime
(
uint8_t
aId
)
const
{
return
mRemoveTimes
[
aId
-
kMinId
]
;
}
void
SetRemoveTime
(
uint8_t
aId
,
TimeMilli
aTime
)
;
void
MarkAsUnallocated
(
uint8_t
aId
)
{
mRemoveTimes
[
aId
-
kMinId
]
.
SetValue
(
kUnallocated
)
;
}
TimeMilli
mRemoveTimes
[
kMaxId
-
kMinId
+
1
]
;
uint32_t
mReuseDelay
;
#if
OPENTHREAD_CONFIG_BORDER_ROUTER_SIGNAL_NETWORK_DATA_FULL
bool
mIsClone
;
#endif
}
;
Fields
Field
Declared as
ot::NetworkData::Leader::ContextIds::kInvalidId
ot::NetworkData::Leader::ContextIds::kReuseDelay
ot::NetworkData::Leader::ContextIds::kMinId
ot::NetworkData::Leader::ContextIds::kMaxId
ot::NetworkData::Leader::ContextIds::kUnallocated
ot::NetworkData::Leader::ContextIds::kInUse
ot::NetworkData::Leader::ContextIds::mRemoveTimes
TimeMilli
[
kMaxId
-
kMinId
+
1
]
ot::NetworkData::Leader::ContextIds::mReuseDelay
uint32_t
ot::NetworkData::Leader::ContextIds::mIsClone
bool
Methods
Clear()
GetUnallocatedId()
MarkAsInUse()
ScheduleToRemove()
GetReuseDelay() const
SetReuseDelay()
HandleTimer()
MarkAsClone()
IsUnallocated() const
IsInUse() const
GetRemoveTime() const
SetRemoveTime()
MarkAsUnallocated()
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out