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
01dca258
Commit
01dca258
authored
May 17, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add method: userinfo, usagereport
parent
6ccaa7f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
259 additions
and
12 deletions
+259
-12
windows/netreport/README
windows/netreport/README
+10
-0
windows/netreport/setup.py
windows/netreport/setup.py
+2
-3
windows/netreport/src/netuse.c
windows/netreport/src/netuse.c
+247
-9
No files found.
windows/netreport/README
View file @
01dca258
Net Resource Usage Report For Windows
Net Resource Usage Report For Windows
Build extentions
================
$ python setup.py build
Test basic functions
====================
$ python tests.py
windows/netreport/setup.py
View file @
01dca258
...
@@ -30,9 +30,8 @@ if sys.platform.startswith("cygwin"):
...
@@ -30,9 +30,8 @@ if sys.platform.startswith("cygwin"):
sources
=
[
'src/netuse.c'
],
sources
=
[
'src/netuse.c'
],
define_macros
=
[(
'_WIN32_WINNT'
,
'0x0503'
),
define_macros
=
[(
'_WIN32_WINNT'
,
'0x0503'
),
(
'USE_SYS_TYPES_FD_SET'
,
1
)],
(
'USE_SYS_TYPES_FD_SET'
,
1
)],
libraries
=
[
"psapi"
,
"kernel32"
,
"advapi32"
,
libraries
=
[
"kernel32"
,
"advapi32"
,
"shell32"
,
"shell32"
,
"netapi32"
,
"iphlpapi"
,
"netapi32"
,
"mpr"
],
"wtsapi32"
],
#extra_compile_args=["/Z7"],
#extra_compile_args=["/Z7"],
#extra_link_args=["/DEBUG"]
#extra_link_args=["/DEBUG"]
)]
)]
...
...
windows/netreport/src/netuse.c
View file @
01dca258
...
@@ -25,35 +25,273 @@
...
@@ -25,35 +25,273 @@
#include <string.h>
#include <string.h>
#include <sys/cygwin.h>
#include <sys/cygwin.h>
/* Avoid select function conflict in the winsock2.h */
#define __INSIDE_CYGWIN__
#include <windows.h>
#include <windows.h>
#include <lm.h>
#include <winnetwk.h>
#define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x))
#define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x))
#define FREE(x) HeapFree(GetProcessHeap(), 0, (x))
#define FREE(x) HeapFree(GetProcessHeap(), 0, (x))
#define MAX_USERBUFFER_SIZE 1024
static
char
userinfo
[
MAX_USERBUFFER_SIZE
]
=
{
0
};
static
char
*
logonuser
=
NULL
;
static
char
*
logondomain
=
NULL
;
static
char
*
logonserver
=
NULL
;
static
size_t
wchar2mchar
(
wchar_t
*
ws
,
char
*
buffer
,
size_t
size
)
{
size_t
len
;
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
ws
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
if
(
len
+
1
>
size
)
return
-
1
;
if
(
WideCharToMultiByte
(
CP_ACP
,
0
,
ws
,
-
1
,
buffer
,
len
,
NULL
,
NULL
)
==
0
)
return
-
1
;
return
len
+
1
;
}
static
PyObject
*
netuse_user_info
(
PyObject
*
self
,
PyObject
*
args
)
{
DWORD
dwLevel
=
1
;
LPWKSTA_USER_INFO_1
pBuf
=
NULL
;
NET_API_STATUS
nStatus
;
//
// Call the NetWkstaUserGetInfo function;
// specify level 1.
//
nStatus
=
NetWkstaUserGetInfo
(
NULL
,
dwLevel
,
(
LPBYTE
*
)
&
pBuf
);
//
// If the call succeeds, print the information
// about the logged-on user.
//
if
(
nStatus
==
NERR_Success
)
{
if
(
pBuf
!=
NULL
)
{
size_t
size
=
MAX_USERBUFFER_SIZE
;
size_t
len
;
logonuser
=
userinfo
;
len
=
wchar2mchar
(
pBuf
->
wkui1_username
,
logonuser
,
size
);
if
(
len
==
-
1
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Unicode convertion error"
);
return
NULL
;
}
size
-=
len
;
logondomain
=
logonuser
+
len
;
len
=
wchar2mchar
(
pBuf
->
wkui1_logon_domain
,
logondomain
,
size
);
if
(
len
==
-
1
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Unicode convertion error"
);
return
NULL
;
}
size
-=
len
;
logonserver
=
logondomain
+
len
;
len
=
wchar2mchar
(
pBuf
->
wkui1_logon_server
,
logonserver
,
size
);
if
(
len
==
-
1
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Unicode convertion error"
);
return
NULL
;
}
}
}
// Otherwise, print the system error.
//
else
{
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred: %ld"
,
nStatus
);
return
NULL
;
}
//
// Free the allocated memory.
//
if
(
pBuf
!=
NULL
)
{
NetApiBufferFree
(
pBuf
);
return
Py_BuildValue
(
"sss"
,
logonuser
,
logondomain
,
logonserver
);
}
PyErr_SetString
(
PyExc_RuntimeError
,
"No logon user information"
);
return
NULL
;
}
static
PyObject
*
static
PyObject
*
netuse_
init
(
PyObject
*
self
,
PyObject
*
args
)
netuse_
map_drive
(
PyObject
*
self
,
PyObject
*
args
)
{
{
return
NULL
;
return
NULL
;
}
}
static
PyObject
*
netuse_usage_report
(
PyObject
*
self
,
PyObject
*
args
)
{
char
*
servername
=
NULL
;
PyObject
*
retvalue
=
NULL
;
DWORD
bitmasks
;
char
chdrive
=
'@'
;
char
drivepath
[
4
]
=
{
'A'
,
':'
,
'\\'
,
0
};
char
drivename
[
3
]
=
{
'A'
,
':'
,
0
};
ULARGE_INTEGER
lFreeBytesAvailable
;
ULARGE_INTEGER
lTotalNumberOfBytes
;
ULARGE_INTEGER
lTotalNumberOfFreeBytes
;
char
szRemoteName
[
MAX_PATH
];
DWORD
dwResult
,
cchBuff
=
MAX_PATH
;
DWORD
serverlen
=
0
;
if
(
!
PyArg_ParseTuple
(
args
,
"|s"
,
&
servername
))
{
return
NULL
;
}
if
(
servername
)
serverlen
=
strlen
(
servername
);
bitmasks
=
GetLogicalDrives
();
if
(
bitmasks
==
0
)
{
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred in GetLogicalDrives: %ld"
,
GetLastError
()
);
return
NULL
;
}
retvalue
=
PyList_New
(
0
);
if
(
retvalue
==
NULL
)
return
NULL
;
while
(
bitmasks
)
{
++
chdrive
;
drivepath
[
0
]
=
chdrive
;
drivename
[
0
]
=
chdrive
;
if
((
bitmasks
&
1L
)
==
0
)
{
bitmasks
>>=
1
;
continue
;
}
bitmasks
>>=
1
;
switch
(
GetDriveType
(
drivepath
))
{
case
DRIVE_FIXED
:
case
DRIVE_REMOTE
:
break
;
default:
continue
;
}
dwResult
=
WNetGetConnection
(
drivename
,
szRemoteName
,
&
cchBuff
);
if
(
dwResult
==
NO_ERROR
)
{
if
(
servername
)
{
if
((
cchBuff
<
serverlen
+
3
)
||
(
strncmp
(
servername
,
szRemoteName
+
2
,
serverlen
)
!=
0
)
||
(
szRemoteName
[
serverlen
+
2
]
!=
'\\'
)
)
continue
;
}
}
// The device is not currently connected, but it is a persistent connection.
else
if
(
dwResult
==
ERROR_CONNECTION_UNAVAIL
)
{
continue
;
}
// The device is not a redirected device.
else
if
(
dwResult
==
ERROR_NOT_CONNECTED
)
{
continue
;
}
else
{
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred in WNetGetConnection: %ld"
,
GetLastError
()
);
Py_XDECREF
(
retvalue
);
return
NULL
;
}
if
(
GetDiskFreeSpaceEx
(
drivepath
,
&
lFreeBytesAvailable
,
&
lTotalNumberOfBytes
,
&
lTotalNumberOfFreeBytes
))
{
PyObject
*
pobj
=
Py_BuildValue
(
"ssLLL"
,
drivename
,
szRemoteName
,
lFreeBytesAvailable
,
lTotalNumberOfFreeBytes
,
lTotalNumberOfBytes
);
if
(
PyList_Append
(
retvalue
,
pobj
)
==
-
1
)
{
Py_XDECREF
(
retvalue
);
return
NULL
;
}
}
else
{
PyErr_Format
(
PyExc_RuntimeError
,
"A system error has occurred in GetDiskFreeSpaceEx(%s): %ld"
,
drivepath
,
GetLastError
()
);
Py_XDECREF
(
retvalue
);
return
NULL
;
}
}
return
retvalue
;
}
static
PyMethodDef
NetUseMethods
[]
=
{
static
PyMethodDef
NetUseMethods
[]
=
{
{
{
"init"
,
"userinfo"
,
netuse_init
,
netuse_user_info
,
METH_VARARGS
,
(
"userinfo()
\n\n
"
"Get the logon user information, return a tuple:
\n
"
"(user, domain, server).
\n
"
)
},
{
"mapdrive"
,
netuse_map_drive
,
METH_VARARGS
,
(
"mapdrive()
\n\n
"
"Create mapped drive from server shared folder
\n
"
)
},
{
"usagereport"
,
netuse_usage_report
,
METH_VARARGS
,
METH_VARARGS
,
(
(
"
ini
t()
\n\n
"
"
usagerepor
t()
\n\n
"
"
Initialize an inotify instance and return a PyCObject, When this
\n
"
"
Return a tuple to report all the mapped drive information:
\n
"
"
PyCObject is reclaimed, GC will free the memory
.
\n
"
"
(user, domain, drive, usage, total)
.
\n
"
)
)
},
},
{
NULL
,
NULL
,
0
,
NULL
}
{
NULL
,
NULL
,
0
,
NULL
}
};
};
PyMODINIT_FUNC
netuse
(
void
)
PyMODINIT_FUNC
init
netuse
(
void
)
{
{
PyObject
*
module
;
PyObject
*
module
;
module
=
Py_InitModule3
(
"netuse"
,
module
=
Py_InitModule3
(
"netuse"
,
...
...
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