Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
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
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
Kasra Jamshidi
slapos.package
Commits
716c8a75
Commit
716c8a75
authored
May 29, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issues in the netreport.py
parent
33494024
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
53 deletions
+52
-53
windows/netreport/src/netreport.py
windows/netreport/src/netreport.py
+52
-53
No files found.
windows/netreport/src/netreport.py
View file @
716c8a75
...
@@ -27,11 +27,11 @@
...
@@ -27,11 +27,11 @@
#
#
##############################################################################
##############################################################################
import
argparse
import
argparse
import
datetim
e
from
datetime
import
datetime
,
dat
e
import
logger
import
logger
from
lxml
import
etree
import
netuse
import
netuse
import
os.path
import
os.path
import
pickle
import
slapos.slap.slap
import
slapos.slap.slap
import
sys
import
sys
from
time
import
sleep
from
time
import
sleep
...
@@ -75,7 +75,6 @@ class NetDriveUsageReporter(object):
...
@@ -75,7 +75,6 @@ class NetDriveUsageReporter(object):
def
__init__
(
self
,
option_dict
):
def
__init__
(
self
,
option_dict
):
for
option
,
value
in
option_dict
.
items
():
for
option
,
value
in
option_dict
.
items
():
setattr
(
self
,
option
,
value
)
setattr
(
self
,
option
,
value
)
self
.
slap
=
slapos
.
slap
.
slap
()
self
.
slap_computer
=
None
self
.
slap_computer
=
None
self
.
_domain_name
=
None
self
.
_domain_name
=
None
self
.
_domain_account
=
None
self
.
_domain_account
=
None
...
@@ -87,58 +86,53 @@ class NetDriveUsageReporter(object):
...
@@ -87,58 +86,53 @@ class NetDriveUsageReporter(object):
connection_dict
=
{}
connection_dict
=
{}
connection_dict
[
'key_file'
]
=
self
.
key_file
connection_dict
[
'key_file'
]
=
self
.
key_file
connection_dict
[
'cert_file'
]
=
self
.
cert_file
connection_dict
[
'cert_file'
]
=
self
.
cert_file
self
.
slap
.
initializeConnection
(
self
.
master_url
,
slap
=
slapos
.
slap
.
slap
()
**
connection_dict
)
slap
.
initializeConnection
(
self
.
master_url
,
self
.
slap_computer
=
self
.
slap
.
registerComputer
(
self
.
computer_id
)
**
connection_dict
)
self
.
slap_computer
=
slap
.
registerComputer
(
self
.
computer_id
)
def
initializeConfigData
(
self
):
def
initializeConfigData
(
self
):
user_info
=
netuser
.
userInfo
()
user_info
=
netuser
.
userInfo
()
self
.
_domain_account
=
"%s
\
\
%s"
%
user_info
[
0
:
2
]
self
.
_domain_account
=
"%s
\
\
%s"
%
user_info
[
0
:
2
]
q
=
self
.
_db
.
execute
q
=
self
.
_db
.
execute
s
=
"SELECT _rowid, report_date FROM config
WHERE domain_account=? and computer_id=?"
s
=
"SELECT _rowid, report_date FROM config
"
\
r
=
"WHERE domain_account=? and computer_id=?"
for
r
in
q
(
s
,
(
self
.
_domain_account
,
self
.
computer_id
)):
for
r
in
q
(
s
,
(
self
.
_domain_account
,
self
.
computer_id
)):
self
.
_config_id
,
self
.
_report_date
=
r
self
.
_config_id
,
self
.
_report_date
=
r
else
:
else
:
q
(
"INSERT OR REPLACE INTO config(domain_account, computer_id, report_date)"
q
(
"INSERT OR REPLACE INTO config"
"(domain_account, computer_id, report_date)"
" VALUES (?,?,?)"
,
" VALUES (?,?,?)"
,
(
self
.
_domain_account
,
self
.
computer_id
,
date
time
.
now
()))
(
self
.
_domain_account
,
self
.
computer_id
,
date
.
today
().
isoformat
()))
for
r
in
q
(
s
,
(
self
.
_domain_account
,
self
.
computer_id
)):
for
r
in
q
(
s
,
(
self
.
_domain_account
,
self
.
computer_id
)):
self
.
_config_id
,
self
.
_report_date
=
r
self
.
_config_id
,
self
.
_report_date
=
r
def
run
(
self
):
def
run
(
self
):
self
.
initializeConfigData
()
self
.
initializeConfigData
()
self
.
initializeConnection
()
self
.
initializeConnection
()
curren
t_timestamp
=
datetime
.
now
()
las
t_timestamp
=
datetime
.
now
()
try
:
try
:
while
True
:
while
True
:
las
t_timestamp
=
datetime
.
now
()
curren
t_timestamp
=
datetime
.
now
()
d
=
last_timestamp
-
curren
t_timestamp
d
=
current_timestamp
-
las
t_timestamp
if
d
.
seconds
<
self
.
report_interval
:
if
d
.
seconds
<
self
.
report_interval
:
sleep
(
self
.
report_interval
)
sleep
(
self
.
report_interval
)
continue
continue
r
=
self
.
getUsageReport
(
d
.
seconds
,
current_timestamp
)
self
.
insertUsageReport
(
last_timestamp
.
isoformat
(),
d
.
seconds
)
current_timestamp
=
last_timestamp
self
.
insertRecord
(
r
[
0
],
r
[
1
],
r
[
2
],
r
[
3
])
self
.
sendReport
()
self
.
sendReport
()
last_timestamp
=
current_timestamp
except
KeyboardInterrupt
:
except
KeyboardInterrupt
:
pass
pass
def
getUsageReport
(
self
,
duration
,
timestamp
=
None
):
def
insertUsageReport
(
self
,
start
,
duration
):
if
timestamp
is
None
:
q
=
self
.
_db
.
execute
timestamp
=
datetime
.
now
()
for
r
in
netuse
.
usageReport
(
self
.
server_name
):
r
=
[
self
.
computer_id
,
self
.
report_sequence_no
,
timestamp
,
duration
,
q
(
"INSERT INTO net_drive_usage "
self
.
_domain_name
,
self
.
_domain_account
,
]
"(config_id, drive_letter, remote_folder, "
self
.
report_sequence_no
+=
1
" start, duration, usage_bytes )"
remark
=
[]
" VALUES (?, ?, ?, ?, ?, ?)"
,
total
=
0
(
self
.
_config_id
,
r
[
0
],
r
[
1
],
start
,
duration
,
r
[
3
]
-
r
[
2
]))
for
x
in
netuse
.
usageReport
(
self
.
server_name
):
total
+=
x
[
2
]
remark
.
append
(
" "
.
join
(
map
(
str
,
x
[
0
:
3
])))
r
.
append
(
total
)
r
.
append
(
"
\
n
"
.
join
(
remark
))
return
r
def
sendReport
(
self
):
def
sendReport
(
self
):
# If report_date is not today, then
# If report_date is not today, then
...
@@ -146,10 +140,9 @@ class NetDriveUsageReporter(object):
...
@@ -146,10 +140,9 @@ class NetDriveUsageReporter(object):
# Send xml data to master node
# Send xml data to master node
# Change report_date to today
# Change report_date to today
# (Optional) Move all the reported data to histroy table
# (Optional) Move all the reported data to histroy table
today
=
date
time
.
now
()
today
=
date
.
today
().
isoformat
()
if
self
.
_report_date
<
today
:
if
self
.
_report_date
<
today
:
xml_data
=
self
.
generateDailyReport
()
self
.
_postData
(
self
.
generateDailyReport
())
self
.
_postData
(
xml_data
)
self
.
_db
.
execute
(
"UPDATE config SET report_date=? where _rowid=?"
,
self
.
_db
.
execute
(
"UPDATE config SET report_date=? where _rowid=?"
,
(
today
,
self
.
_config_id
))
(
today
,
self
.
_config_id
))
...
@@ -168,45 +161,51 @@ class NetDriveUsageReporter(object):
...
@@ -168,45 +161,51 @@ class NetDriveUsageReporter(object):
report_date TEXT NOT NULL,
report_date TEXT NOT NULL,
remark TEXT)"""
)
remark TEXT)"""
)
q
(
"""CREATE TABLE IF NOT EXISTS net_drive_usage (
q
(
"""CREATE TABLE IF NOT EXISTS net_drive_usage (
id INTEGER PRIMARY KEY,
config_id INTEGER REFERENCES config ( _rowid ),
config_id INTEGER REFERENCES config ( _rowid ),
drive_letter TEXT NOT NULL,
drive_letter TEXT NOT NULL,
remote_folder TEXT NOT NULL,
remote_folder TEXT NOT NULL,
start
_timestamp
TEXT DEFAULT CURRENT_TIMESTAMP,
start TEXT DEFAULT CURRENT_TIMESTAMP,
duration FLOAT NOT NULL,
duration FLOAT NOT NULL,
usage_bytes INTEGER,
usage_bytes INTEGER,
remark TEXT)"""
)
remark TEXT)"""
)
q
(
"""CREATE TABLE IF NOT EXISTS net_drive_usage_history (
q
(
"""CREATE TABLE IF NOT EXISTS net_drive_usage_history (
id INTEGER PRIMARY KEY,
config_id INTEGER REFERENCES config ( _rowid ),
config_id INTEGER REFERENCES config ( _rowid ),
drive_letter TEXT NOT NULL,
drive_letter TEXT NOT NULL,
remote_folder TEXT NOT NULL,
remote_folder TEXT NOT NULL,
start
_timestamp
TEXT NOT NULL,
start TEXT NOT NULL,
duration FLOAT NOT NULL,
duration FLOAT NOT NULL,
bytes INTEGER
usage_bytes INTEGER,
remark TEXT)"""
)
remark TEXT)"""
)
def
insertRecord
(
self
,
drive_letter
,
remote_foler
,
duration
,
usage_bytes
):
self
.
_db
.
execute
(
"INSERT INTO net_drive_usage "
"(config_id, drive_letter, remote_folder, duration, usage_bytes )"
" VALUES (?, ?, ?, ?, ?)"
,
(
self
.
_config_id
,
drive_letter
,
remote_folder
,
duration
,
usage_bytes
))
def
generateDailyReport
(
self
,
report_date
=
None
,
remove
=
False
):
def
generateDailyReport
(
self
,
report_date
=
None
,
remove
=
False
):
if
report_date
is
None
:
if
report_date
is
None
:
report_date
=
self
.
_report_date
report_date
=
self
.
_report_date
q
=
self
.
_db
.
execute
q
=
self
.
_db
.
execute
xml_data
=
""
root
=
etree
.
Element
(
"report"
)
for
r
in
q
(
"SELECT * FROM net_drive_usage WHERE start_timestamp=?"
,
report_date
):
computer
=
etree
.
Element
(
"computer"
)
pass
computer
.
text
=
self
.
computer_id
account
=
etree
.
Element
(
"account"
)
account
.
text
=
self
.
_domain_account
report_date
=
etree
.
Element
(
"date"
)
report_date
.
text
=
self
.
_report_date
usage
=
etree
.
Element
(
"usage"
)
details
=
etree
.
Element
(
"details"
)
root
.
append
(
computer
,
account
,
report_date
,
usage
,
details
)
total
=
0
for
r
in
q
(
"SELECT duration, usage_bytes FROM net_drive_usage "
"WHERE config_id=? AND strftime('%Y-%m-%d', start)=?"
,
(
self
.
_config_id
,
report_date
)):
total
+=
r
[
0
]
*
r
[
1
]
usage
.
text
=
str
(
total
)
if
remove
:
if
remove
:
q
(
"INSERT INTO net_drive_usage_history "
q
(
"INSERT INTO net_drive_usage_history "
"SELECT * FROM net_drive_usage WHERE start_timestamp=?"
,
"SELECT * FROM net_drive_usage "
report_date
)
"WHERE config_id=? AND strftime('%Y-%m-%d', start)=?"
,
q
(
"DELETE FROM net_drive_usage WHERE start_timestamp=?"
,
(
self
.
_config_id
,
report_date
))
report_date
)
q
(
"DELETE FROM net_drive_usage "
return
xml_data
"WHERE config_id=? AND strftime('%Y-%m-%d', start)=?"
,
(
self
.
_config_id
,
report_date
))
return
etree
.
tostring
(
root
,
xml_declaration
=
True
)
def
main
():
def
main
():
reporter
=
NetDriveUsageReporter
(
parseArgumentTuple
())
reporter
=
NetDriveUsageReporter
(
parseArgumentTuple
())
...
...
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