Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
opentrafficshaper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eezysol
opentrafficshaper
Commits
3d0974f3
Commit
3d0974f3
authored
11 years ago
by
Nigel Kukard
Browse files
Options
Downloads
Patches
Plain Diff
Clean up old expired users in config manager
parent
06bcb112
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
opentrafficshaper/plugins/configmanager.pm
+35
-3
35 additions, 3 deletions
opentrafficshaper/plugins/configmanager.pm
with
35 additions
and
3 deletions
opentrafficshaper/plugins/configmanager.pm
+
35
−
3
View file @
3d0974f3
...
@@ -40,7 +40,14 @@ our (@ISA,@EXPORT,@EXPORT_OK);
...
@@ -40,7 +40,14 @@ our (@ISA,@EXPORT,@EXPORT_OK);
use
constant
{
use
constant
{
VERSION
=>
'
0.0.1
',
VERSION
=>
'
0.0.1
',
# After how long does a user get removed if he's offline
TIMEOUT_EXPIRE_OFFLINE
=>
300
,
TIMEOUT_EXPIRE_OFFLINE
=>
300
,
# After how long do we check users which have not been updated
TIMEOUT_EXPIRE_OLD
=>
7200
,
# How often our config check ticks
TICK_PERIOD
=>
5
,
TICK_PERIOD
=>
5
,
};
};
...
@@ -172,7 +179,10 @@ sub session_tick {
...
@@ -172,7 +179,10 @@ sub session_tick {
my
$now
=
time
();
my
$now
=
time
();
# Loop with changes
#
# LOOP WITH CHANGES
#
foreach
my
$uid
(
keys
%
{
$changeQueue
})
{
foreach
my
$uid
(
keys
%
{
$changeQueue
})
{
# Global user
# Global user
my
$guser
=
$users
->
{
$uid
};
my
$guser
=
$users
->
{
$uid
};
...
@@ -317,6 +327,28 @@ sub session_tick {
...
@@ -317,6 +327,28 @@ sub session_tick {
}
}
#
# CHECK OUT CONNECTED USERS
#
foreach
my
$uid
(
keys
%
{
$changeQueue
})
{
# Global user
my
$guser
=
$users
->
{
$uid
};
# Check for expired users
if
(
$now
-
$guser
->
{'
LastUpdate
'}
>
TIMEOUT_EXPIRE_OLD
)
{
# Looks like this user has expired?
# TODO: Check stats to make sure they 0
my
$cuser
=
{
'
Username
'
=>
'
Username
',
'
Status
'
=>
'
offline
',
'
LastUpdate
'
=>
$guser
->
{'
LastUpdate
'},
};
# Add to change queue
$changeQueue
->
{
$uid
}
=
$cuser
;
}
}
# Reset tick
# Reset tick
$kernel
->
delay
(
tick
=>
5
);
$kernel
->
delay
(
tick
=>
5
);
};
};
...
@@ -408,8 +440,8 @@ sub processChanges
...
@@ -408,8 +440,8 @@ sub processChanges
# Loop through what can change
# Loop through what can change
foreach
my
$item
('
GroupID
','
ClassID
','
TrafficLimitTx
','
TrafficLimitRx
','
TrafficLimitTxBurst
','
TrafficLimitRxBurst
')
{
foreach
my
$item
('
GroupID
','
ClassID
','
TrafficLimitTx
','
TrafficLimitRx
','
TrafficLimitTxBurst
','
TrafficLimitRxBurst
')
{
# Check if its changed
...
# Check if its
first set, if it is, check if its
changed
if
(
$orig
->
{
$item
}
ne
$new
->
{
$item
})
{
if
(
defined
(
$new
->
{
$item
})
&&
$orig
->
{
$item
}
ne
$new
->
{
$item
})
{
# If so record it & make the change
# If so record it & make the change
$res
->
{
$item
}
=
$orig
->
{
$item
}
=
$new
->
{
$item
};
$res
->
{
$item
}
=
$orig
->
{
$item
}
=
$new
->
{
$item
};
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment