Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-SMF
Commits
a23d88a7
Commit
a23d88a7
authored
Dec 02, 2022
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleanup for Event Exposure
parent
8def4bba
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
49 deletions
+86
-49
src/smf_app/smf_context.cpp
src/smf_app/smf_context.cpp
+74
-49
src/smf_app/smf_context.hpp
src/smf_app/smf_context.hpp
+12
-0
No files found.
src/smf_app/smf_context.cpp
View file @
a23d88a7
...
...
@@ -3990,6 +3990,28 @@ bool smf_context::get_pdu_session_info(
return
true
;
}
//------------------------------------------------------------------------------
bool
smf_context
::
get_pdu_session_info
(
const
scid_t
&
scid
,
supi64_t
&
supi
,
std
::
shared_ptr
<
smf_pdu_session
>&
sp
)
{
Logger
::
smf_app
().
debug
(
"Get PDU Session information related to SMF Context ID "
SCID_FMT
" "
,
scid
);
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi
,
pdu_session_id
))
{
return
false
;
}
if
(
!
find_pdu_session
(
pdu_session_id
,
sp
))
{
Logger
::
smf_app
().
warn
(
"Could not retrieve the PDU Session Info with PDU Session ID %d!"
,
pdu_session_id
);
return
false
;
}
return
true
;
}
//------------------------------------------------------------------------------
void
smf_context
::
handle_sm_context_status_change
(
scid_t
scid
,
const
std
::
string
&
status
,
uint8_t
http_version
)
{
...
...
@@ -4172,8 +4194,9 @@ void smf_context::handle_ue_ip_change(scid_t scid, uint8_t http_version) {
scid
);
supi64_t
supi64
=
{};
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
pdu_session_id
))
{
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
sp
))
{
Logger
::
smf_app
().
debug
(
"Could not retrieve info with "
"SMF Context ID "
SCID_FMT
" "
,
...
...
@@ -4181,18 +4204,10 @@ void smf_context::handle_ue_ip_change(scid_t scid, uint8_t http_version) {
return
;
}
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
find_pdu_session
(
pdu_session_id
,
sp
))
{
Logger
::
smf_app
().
warn
(
"Could not retrieve the corresponding SMF PDU Session context!"
);
return
;
}
Logger
::
smf_app
().
debug
(
"Send request to N11 to triger FlexCN (Event "
"Exposure), SUPI "
SUPI_64_FMT
" , PDU Session ID %d, HTTP version %d"
,
supi
,
pdu_session_id
,
http_version
);
supi
,
sp
->
get_pdu_session_id
()
,
http_version
);
std
::
vector
<
std
::
shared_ptr
<
smf_subscription
>>
subscriptions
=
{};
smf_app_inst
->
get_ee_subscriptions
(
...
...
@@ -4209,7 +4224,7 @@ void smf_context::handle_ue_ip_change(scid_t scid, uint8_t http_version) {
for
(
auto
i
:
subscriptions
)
{
event_notification
ev_notif
=
{};
ev_notif
.
set_supi
(
supi64
);
// SUPI
ev_notif
.
set_pdu_session_id
(
pdu_session_id
);
// PDU session ID
ev_notif
.
set_pdu_session_id
(
sp
->
get_pdu_session_id
()
);
// PDU session ID
ev_notif
.
set_smf_event
(
smf_event_t
::
SMF_EVENT_UE_IP_CH
);
ev_notif
.
set_notif_uri
(
i
.
get
()
->
notif_uri
);
ev_notif
.
set_notif_id
(
i
.
get
()
->
notif_id
);
...
...
@@ -4264,16 +4279,17 @@ void smf_context::handle_qos_monitoring(
"SMF Context-related SEID "
SEID_FMT
,
seid
);
supi64_t
supi64
=
{};
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
pdu_session_id
))
{
Logger
::
smf_app
().
debug
(
"Could not retrieve info with "
"SMF Context ID "
SCID_FMT
" "
,
scid
);
// Get the smf context
std
::
shared_ptr
<
smf_context
>
pc
=
{};
if
(
!
smf_app_inst
->
seid_2_smf_context
(
seid
,
pc
))
{
Logger
::
smf_app
().
warn
(
"Context associated with this SEID "
SEID_FMT
" does not exit!"
,
seid
);
return
;
}
supi_t
supi
=
pc
.
get
()
->
supi
;
supi64_t
supi64
=
smf_supi_to_u64
(
supi
);
std
::
vector
<
std
::
shared_ptr
<
smf_subscription
>>
subscriptions
=
{};
smf_app_inst
->
get_ee_subscriptions
(
smf_event_t
::
SMF_EVENT_QOS_MON
,
subscriptions
);
...
...
@@ -4333,8 +4349,9 @@ void smf_context::handle_flexcn_event(scid_t scid, uint8_t http_version) {
scid
);
supi64_t
supi64
=
{};
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
pdu_session_id
))
{
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
sp
))
{
Logger
::
smf_app
().
debug
(
"Could not retrieve info with "
"SMF Context ID "
SCID_FMT
" "
,
...
...
@@ -4342,19 +4359,22 @@ void smf_context::handle_flexcn_event(scid_t scid, uint8_t http_version) {
return
;
}
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
find_pdu_session
(
pdu_session_id
,
sp
))
{
// Get SMF Context
std
::
shared_ptr
<
smf_context
>
sc
=
{};
if
(
smf_app_inst
->
is_supi_2_smf_context
(
supi64
))
{
sc
=
smf_app_inst
->
supi_2_smf_context
(
supi64
);
}
else
{
Logger
::
smf_app
().
warn
(
"Could not retrieve the corresponding SMF PDU Session context!"
);
"Could not retrieve the corresponding SMF context with "
"Supi "
SUPI_64_FMT
"!"
,
supi64
);
return
;
}
Logger
::
smf_app
().
debug
(
"Send request to N11 to triger FlexCN (Event "
"Exposure), SUPI "
SUPI_64_FMT
" , PDU Session ID %d, HTTP version %d"
,
supi
,
pdu_session_id
,
http_version
);
supi
,
sp
->
get_pdu_session_id
()
,
http_version
);
std
::
vector
<
std
::
shared_ptr
<
smf_subscription
>>
subscriptions
=
{};
smf_app_inst
->
get_ee_subscriptions
(
...
...
@@ -4371,7 +4391,7 @@ void smf_context::handle_flexcn_event(scid_t scid, uint8_t http_version) {
for
(
auto
i
:
subscriptions
)
{
event_notification
ev_notif
=
{};
ev_notif
.
set_supi
(
supi64
);
// SUPI
ev_notif
.
set_pdu_session_id
(
pdu_session_id
);
// PDU session ID
ev_notif
.
set_pdu_session_id
(
sp
->
get_pdu_session_id
()
);
// PDU session ID
ev_notif
.
set_smf_event
(
smf_event_t
::
SMF_EVENT_FLEXCN
);
ev_notif
.
set_notif_uri
(
i
.
get
()
->
notif_uri
);
ev_notif
.
set_notif_id
(
i
.
get
()
->
notif_id
);
...
...
@@ -4475,8 +4495,9 @@ void smf_context::handle_pdusesest(scid_t scid, uint8_t http_version) {
scid
);
supi64_t
supi64
=
{};
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
pdu_session_id
))
{
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
sp
))
{
Logger
::
smf_app
().
debug
(
"Could not retrieve info with "
"SMF Context ID "
SCID_FMT
" "
,
...
...
@@ -4484,19 +4505,10 @@ void smf_context::handle_pdusesest(scid_t scid, uint8_t http_version) {
return
;
}
// get smf_pdu_session
std
::
shared_ptr
<
smf_pdu_session
>
sp
=
{};
if
(
!
find_pdu_session
(
pdu_session_id
,
sp
))
{
Logger
::
smf_app
().
warn
(
"Could not retrieve the corresponding SMF PDU Session context!"
);
return
;
}
Logger
::
smf_app
().
debug
(
"Send request to N11 to triger PDU_SES_EST (Event "
"Exposure), SUPI "
SUPI_64_FMT
" , PDU Session ID %d, HTTP version %d"
,
supi
,
pdu_session_id
,
http_version
);
supi
,
sp
->
get_pdu_session_id
()
,
http_version
);
std
::
vector
<
std
::
shared_ptr
<
smf_subscription
>>
subscriptions
=
{};
smf_app_inst
->
get_ee_subscriptions
(
...
...
@@ -4513,7 +4525,7 @@ void smf_context::handle_pdusesest(scid_t scid, uint8_t http_version) {
for
(
auto
i
:
subscriptions
)
{
event_notification
ev_notif
=
{};
ev_notif
.
set_supi
(
supi64
);
// SUPI
ev_notif
.
set_pdu_session_id
(
pdu_session_id
);
// PDU session ID
ev_notif
.
set_pdu_session_id
(
sp
->
get_pdu_session_id
()
);
// PDU session ID
ev_notif
.
set_smf_event
(
smf_event_t
::
SMF_EVENT_PDUSESEST
);
ev_notif
.
set_notif_uri
(
i
.
get
()
->
notif_uri
);
ev_notif
.
set_notif_id
(
i
.
get
()
->
notif_id
);
...
...
@@ -4573,6 +4585,7 @@ void smf_context::handle_plmn_change(scid_t scid, uint8_t http_version) {
"Send request to N11 to triger FlexCN, "
"SMF Context ID "
SCID_FMT
" "
,
scid
);
supi64_t
supi64
=
{};
pdu_session_id_t
pdu_session_id
=
{};
if
(
!
get_pdu_session_info
(
scid
,
supi64
,
pdu_session_id
))
{
...
...
@@ -4583,6 +4596,18 @@ void smf_context::handle_plmn_change(scid_t scid, uint8_t http_version) {
return
;
}
// Get SMF Context
std
::
shared_ptr
<
smf_context
>
sc
=
{};
if
(
smf_app_inst
->
is_supi_2_smf_context
(
supi64
))
{
sc
=
smf_app_inst
->
supi_2_smf_context
(
supi64
);
}
else
{
Logger
::
smf_app
().
warn
(
"Could not retrieve the corresponding SMF context with "
"Supi "
SUPI_64_FMT
"!"
,
supi64
);
return
;
}
std
::
vector
<
std
::
shared_ptr
<
smf_subscription
>>
subscriptions
=
{};
smf_app_inst
->
get_ee_subscriptions
(
smf_event_t
::
SMF_EVENT_FLEXCN
,
subscriptions
);
...
...
src/smf_app/smf_context.hpp
View file @
a23d88a7
...
...
@@ -1184,6 +1184,18 @@ class smf_context : public std::enable_shared_from_this<smf_context> {
bool
get_pdu_session_info
(
const
scid_t
&
scid
,
supi64_t
&
supi
,
pdu_session_id_t
&
pdu_session_id
);
/*
* Get PDU related information
* @param [const scid_t&] scid: SMF Context ID
* @param [supi64_t&] supi: SUPI
* @param [std::shared_ptr<smf_pdu_session>&] sp: Pointer to the PDU Session
* Info
* @return true if this Context ID exist and can get related info, otherwise,
* return false
*/
bool
get_pdu_session_info
(
const
scid_t
&
scid
,
supi64_t
&
supi
,
std
::
shared_ptr
<
smf_pdu_session
>&
sp
);
/*
* Handle SM Context Status Change (Send notification AMF)
* @param [scid_t] scid: SMF Context ID
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment