sigar/bindings/dotnet/src/Sigar.cs

589 lines
19 KiB
C#
Raw Normal View History

2004-06-22 06:37:04 +08:00
using System;
using System.IO;
using System.Collections;
using System.Runtime.InteropServices;
2004-09-18 05:05:59 +08:00
using System.Text;
2004-06-22 06:37:04 +08:00
namespace Hyperic.Sigar {
public class Sigar {
internal const int OK = 0;
internal const int SIGAR_START_ERROR = 20000;
internal const int SIGAR_ENOTIMPL = (SIGAR_START_ERROR + 1);
2004-06-22 06:37:04 +08:00
2004-09-18 06:20:02 +08:00
public const String NULL_HWADDR = "00:00:00:00:00:00";
public const int IFF_UP = 0x1;
public const int IFF_BROADCAST = 0x2;
public const int IFF_DEBUG = 0x4;
public const int IFF_LOOPBACK = 0x8;
public const int IFF_POINTOPOINT = 0x10;
public const int IFF_NOTRAILERS = 0x20;
public const int IFF_RUNNING = 0x40;
public const int IFF_NOARP = 0x80;
public const int IFF_PROMISC = 0x100;
public const int IFF_ALLMULTI = 0x200;
public const int IFF_MULTICAST = 0x800;
2004-06-22 06:37:04 +08:00
internal const int FS_NAME_LEN = 64;
//cp sigar-x86-winnt.dll sigar.dll
//ln -s libsigar-x86-linux.so libsigar.so
//XXX can we determine the real name at runtime?
internal const string LIBSIGAR = "sigar";
2004-06-22 06:37:04 +08:00
internal HandleRef sigar;
[DllImport(LIBSIGAR)]
unsafe private static extern int sigar_open(IntPtr *sigar);
2004-06-22 06:37:04 +08:00
[DllImport(LIBSIGAR)]
private static extern int sigar_close(IntPtr sigar);
public Sigar() {
IntPtr handle;
unsafe { //&pointers are considered "unsafe"
sigar_open(&handle);
}
2004-06-22 06:37:04 +08:00
this.sigar = new HandleRef(this, handle);
}
2004-09-18 06:40:47 +08:00
[DllImport(Sigar.LIBSIGAR)]
private static extern string
sigar_format_size(ulong size, StringBuilder buffer);
public static string FormatSize(ulong size) {
StringBuilder buffer = new StringBuilder();
buffer.Capacity = 56;
return sigar_format_size(size, buffer);
}
2004-06-22 06:37:04 +08:00
public Mem Mem() {
return Hyperic.Sigar.Mem.NativeGet(this);
}
public Swap Swap() {
return Hyperic.Sigar.Swap.NativeGet(this);
}
2004-07-25 10:19:03 +08:00
public Cpu Cpu() {
return Hyperic.Sigar.Cpu.NativeGet(this);
}
public CpuInfo[] CpuInfoList() {
return Hyperic.Sigar.CpuInfoList.NativeGet(this);
2004-06-22 06:37:04 +08:00
}
public FileSystem[] FileSystemList() {
return Hyperic.Sigar.FileSystemList.NativeGet(this);
}
public FileSystemUsage FileSystemUsage(string dirname) {
return Hyperic.Sigar.FileSystemUsage.NativeGet(this, dirname);
}
2004-09-18 02:00:16 +08:00
public String[] NetInterfaceList() {
return Hyperic.Sigar.NetInterfaceList.NativeGet(this);
}
2004-09-18 04:46:30 +08:00
public NetInterfaceConfig NetInterfaceConfig(string name) {
return Hyperic.Sigar.NetInterfaceConfig.NativeGet(this, name);
}
2004-09-18 06:16:14 +08:00
public NetInterfaceStat NetInterfaceStat(string name) {
return Hyperic.Sigar.NetInterfaceStat.NativeGet(this, name);
}
2004-06-22 06:37:04 +08:00
~Sigar() {
sigar_close(this.sigar.Handle);
}
internal static IntPtr incrementIntPtr(IntPtr ptr, int size) {
Int32 x = (Int32)ptr;
x += size;
return (IntPtr)x;
}
internal static SigarException FindException(Sigar sigar, int errno) {
switch (errno) {
case SIGAR_ENOTIMPL:
return new SigarNotImplementedException(sigar, errno);
default:
return new SigarException(sigar, errno);
}
}
2004-06-22 06:37:04 +08:00
}
2004-09-18 07:33:57 +08:00
public class SigarException : Exception {
Sigar sigar;
int errno;
public SigarException(Sigar sigar, int errno) : base() {
2004-09-18 07:33:57 +08:00
this.sigar = sigar;
this.errno = errno;
}
[DllImport(Sigar.LIBSIGAR)]
private static extern string
sigar_strerror(IntPtr sigar, int errno);
public override string Message {
get {
return sigar_strerror(this.sigar.sigar.Handle, this.errno);
}
}
}
public class SigarNotImplementedException : SigarException {
public SigarNotImplementedException(Sigar sigar, int errno) :
base(sigar, errno) { }
}
2004-06-22 06:37:04 +08:00
[StructLayout(LayoutKind.Sequential)]
public struct Mem {
public readonly ulong Ram;
public readonly ulong Total;
public readonly ulong Used;
public readonly ulong Free;
public readonly ulong Shared;
private readonly ulong NA_buffer;
private readonly ulong NA_cached;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_mem_get(IntPtr sigar, IntPtr mem);
2004-06-22 06:37:04 +08:00
internal static Mem NativeGet(Sigar sigar) {
Type type = typeof(Mem);
//sigar_mem_t *ptr = malloc(sizeof(*ptr))
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_mem_get(sigar.sigar.Handle, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-06-22 06:37:04 +08:00
}
//memcpy(ptr, this, sizeof(this))
Mem mem = (Mem)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return mem;
}
}
[StructLayout(LayoutKind.Sequential)]
public struct Swap {
public readonly ulong Total;
public readonly ulong Used;
public readonly ulong Free;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_swap_get(IntPtr sigar, IntPtr swap);
2004-06-22 06:37:04 +08:00
internal static Swap NativeGet(Sigar sigar) {
Type type = typeof(Swap);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_swap_get(sigar.sigar.Handle, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-06-22 06:37:04 +08:00
}
Swap swap = (Swap)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return swap;
}
}
2004-07-25 10:19:03 +08:00
[StructLayout(LayoutKind.Sequential)]
public struct Cpu {
public readonly ulong User;
public readonly ulong Sys;
private readonly ulong NA_Nice;
public readonly ulong Idle;
public readonly ulong Total;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_cpu_get(IntPtr sigar, IntPtr cpu);
2004-07-25 10:19:03 +08:00
internal static Cpu NativeGet(Sigar sigar) {
Type type = typeof(Cpu);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_cpu_get(sigar.sigar.Handle, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-07-25 10:19:03 +08:00
}
Cpu cpu = (Cpu)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return cpu;
}
}
2004-06-22 06:37:04 +08:00
[StructLayout(LayoutKind.Sequential)]
public struct CpuInfo {
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=128)]
public readonly string Vendor; //char[128]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=128)]
public readonly string Model; //char[128]
public readonly int Mhz;
private readonly ulong CacheSize; //XXX not implemented
}
[StructLayout(LayoutKind.Sequential)]
internal struct CpuInfoList {
2004-06-22 06:37:04 +08:00
private readonly uint Number; //sizeof(unsigned long) == 4
private readonly uint size;
private readonly IntPtr data;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_cpu_info_list_get(IntPtr sigar, IntPtr cpu_infos);
2004-06-22 06:37:04 +08:00
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_cpu_info_list_destroy(IntPtr sigar, IntPtr cpu_infos);
2004-06-22 06:37:04 +08:00
internal static CpuInfo[] NativeGet(Sigar sigar) {
Type type = typeof(CpuInfoList);
2004-06-22 06:37:04 +08:00
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_cpu_info_list_get(sigar.sigar.Handle, ptr);
2004-06-22 06:37:04 +08:00
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-06-22 06:37:04 +08:00
}
CpuInfoList infosPtr =
(CpuInfoList)Marshal.PtrToStructure(ptr, type);
2004-06-22 06:37:04 +08:00
CpuInfo[] infos = new CpuInfo[infosPtr.Number];
IntPtr eptr = infosPtr.data;
int size = Marshal.SizeOf(infos[0]);
for (int i=0; i<infosPtr.Number; i++) {
2004-09-18 07:03:17 +08:00
infos[i] =
(CpuInfo)Marshal.PtrToStructure(eptr, typeof(CpuInfo));
2004-06-22 06:37:04 +08:00
//eptr += sizeof(sigar_cpu_info_t);
eptr = Sigar.incrementIntPtr(eptr, size);
}
sigar_cpu_info_list_destroy(sigar.sigar.Handle, ptr);
2004-06-22 06:37:04 +08:00
Marshal.FreeHGlobal(ptr);
return infos;
}
}
[StructLayout(LayoutKind.Sequential)]
public struct FileSystem {
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=Sigar.FS_NAME_LEN)]
public readonly string DirName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=Sigar.FS_NAME_LEN)]
public readonly string DevName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=Sigar.FS_NAME_LEN)]
public readonly string TypeName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=Sigar.FS_NAME_LEN)]
public readonly string SysTypeName;
public readonly int Type;
public readonly uint Flags;
}
[StructLayout(LayoutKind.Sequential)]
internal struct FileSystemList {
private readonly uint Number;
private readonly uint size;
private readonly IntPtr data;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_file_system_list_get(IntPtr sigar, IntPtr fslist);
2004-06-22 06:37:04 +08:00
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_file_system_list_destroy(IntPtr sigar, IntPtr fslist);
2004-06-22 06:37:04 +08:00
internal static FileSystem[] NativeGet(Sigar sigar) {
Type type = typeof(FileSystemList);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_file_system_list_get(sigar.sigar.Handle, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-06-22 06:37:04 +08:00
}
FileSystemList fsPtr =
(FileSystemList)Marshal.PtrToStructure(ptr, type);
FileSystem[] fs = new FileSystem[fsPtr.Number];
IntPtr fptr = fsPtr.data;
int size = Marshal.SizeOf(fs[0]);
for (int i=0; i<fsPtr.Number; i++) {
2004-09-18 07:03:17 +08:00
fs[i] =
(FileSystem)Marshal.PtrToStructure(fptr,
typeof(FileSystem));
2004-06-22 06:37:04 +08:00
//fptr += sizeof(sigar_fs_t);
fptr = Sigar.incrementIntPtr(fptr, size);
}
sigar_file_system_list_destroy(sigar.sigar.Handle, ptr);
Marshal.FreeHGlobal(ptr);
return fs;
}
}
[StructLayout(LayoutKind.Sequential)]
public struct FileSystemUsage {
public readonly ulong Total;
public readonly ulong Free;
public readonly ulong Avail;
private readonly ulong NA_Files; //XXX not implemented
private readonly ulong NA_FreeFiles;
public readonly double UsePercent;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_file_system_usage_get(IntPtr sigar, string dirname,
IntPtr fsusage);
2004-06-22 06:37:04 +08:00
2004-09-18 07:03:17 +08:00
internal static FileSystemUsage NativeGet(Sigar sigar,
string dirname) {
2004-06-22 06:37:04 +08:00
Type type = typeof(FileSystemUsage);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_file_system_usage_get(sigar.sigar.Handle,
dirname, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-06-22 06:37:04 +08:00
}
FileSystemUsage fsusage =
(FileSystemUsage)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return fsusage;
}
}
2004-09-18 02:00:16 +08:00
[StructLayout(LayoutKind.Sequential)]
internal struct NetInterfaceList {
private readonly uint number;
private readonly uint size;
private readonly IntPtr data;
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_net_interface_list_get(IntPtr sigar, IntPtr iflist);
2004-09-18 02:00:16 +08:00
[DllImport(Sigar.LIBSIGAR)]
2004-09-18 07:03:17 +08:00
private static extern int
sigar_net_interface_list_destroy(IntPtr sigar, IntPtr iflist);
2004-09-18 02:00:16 +08:00
internal static String[] NativeGet(Sigar sigar) {
Type type = typeof(NetInterfaceList);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
2004-09-18 07:03:17 +08:00
int status =
sigar_net_interface_list_get(sigar.sigar.Handle, ptr);
2004-09-18 02:00:16 +08:00
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-09-18 02:00:16 +08:00
}
NetInterfaceList ifPtr =
(NetInterfaceList)Marshal.PtrToStructure(ptr, type);
String[] iflist = new String[ifPtr.number];
IntPtr iptr = ifPtr.data;
for (int i=0; i<ifPtr.number; i++) {
IntPtr str = Marshal.ReadIntPtr(iptr, i * IntPtr.Size);
iflist[i] = Marshal.PtrToStringAnsi(str);
}
sigar_net_interface_list_destroy(sigar.sigar.Handle, ptr);
Marshal.FreeHGlobal(ptr);
return iflist;
}
}
2004-09-18 04:46:30 +08:00
[StructLayout(LayoutKind.Sequential)]
public struct NetInterfaceConfig {
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=16)]
public readonly string Name; //char[16]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=64)]
public readonly string Hwaddr; //char[64]
private readonly ulong address;
private readonly ulong destination;
private readonly ulong broadcast;
private readonly ulong netmask;
public readonly ulong Flags;
public readonly ulong Mtu;
public readonly ulong Metric;
[DllImport(Sigar.LIBSIGAR)]
private static extern int
sigar_net_interface_config_get(IntPtr sigar, string name,
IntPtr ifconfig);
internal static NetInterfaceConfig NativeGet(Sigar sigar,
string name) {
Type type = typeof(NetInterfaceConfig);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_net_interface_config_get(sigar.sigar.Handle,
name, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-09-18 04:46:30 +08:00
}
NetInterfaceConfig ifconfig =
(NetInterfaceConfig)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return ifconfig;
}
2004-09-18 05:05:59 +08:00
[DllImport(Sigar.LIBSIGAR)]
private static extern int
sigar_inet_ntoa(IntPtr sigar, ulong address,
StringBuilder addr_str);
private string inet_ntoa(ulong address) {
StringBuilder buffer = new StringBuilder();
buffer.Capacity = (3 * 4 + 3 + 1);
sigar_inet_ntoa(IntPtr.Zero, address, buffer);
return buffer.ToString();
}
public string Address {
get {
return inet_ntoa(this.address);
}
}
public string Destination {
get {
return inet_ntoa(this.destination);
}
}
public string Broadcast {
get {
return inet_ntoa(this.broadcast);
}
}
public string Netmask {
get {
return inet_ntoa(this.netmask);
}
}
public String FlagsString() {
ulong flags = this.Flags;
String retval = "";
if (flags == 0)
retval += "[NO FLAGS] ";
if ((flags & Sigar.IFF_UP) > 0)
retval += "UP ";
if ((flags & Sigar.IFF_BROADCAST) > 0)
retval += "BROADCAST ";
if ((flags & Sigar.IFF_DEBUG) > 0)
retval += "DEBUG ";
if ((flags & Sigar.IFF_LOOPBACK) > 0)
retval += "LOOPBACK ";
if ((flags & Sigar.IFF_POINTOPOINT) > 0)
retval += "POINTOPOINT ";
if ((flags & Sigar.IFF_NOTRAILERS) > 0)
retval += "NOTRAILERS ";
if ((flags & Sigar.IFF_RUNNING) > 0)
retval += "RUNNING ";
if ((flags & Sigar.IFF_NOARP) > 0)
retval += "NOARP ";
if ((flags & Sigar.IFF_PROMISC) > 0)
retval += "PROMISC ";
if ((flags & Sigar.IFF_ALLMULTI) > 0)
retval += "ALLMULTI ";
if ((flags & Sigar.IFF_MULTICAST) > 0)
retval += "MULTICAST ";
return retval;
}
2004-09-18 04:46:30 +08:00
}
2004-09-18 06:16:14 +08:00
[StructLayout(LayoutKind.Sequential)]
public struct NetInterfaceStat {
public readonly ulong RxPackets;
public readonly ulong RxBytes;
public readonly ulong RxErrors;
public readonly ulong RxDropped;
public readonly ulong RxOverruns;
public readonly ulong RxFrame;
public readonly ulong TxPackets;
public readonly ulong TxBytes;
public readonly ulong TxErrors;
public readonly ulong TxDropped;
public readonly ulong TxOverruns;
public readonly ulong TxCollisions;
public readonly ulong TxCarrier;
[DllImport(Sigar.LIBSIGAR)]
private static extern int
sigar_net_interface_stat_get(IntPtr sigar, string name,
IntPtr ifstat);
internal static NetInterfaceStat NativeGet(Sigar sigar,
string name) {
Type type = typeof(NetInterfaceStat);
IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(type));
int status = sigar_net_interface_stat_get(sigar.sigar.Handle,
name, ptr);
if (status != Sigar.OK) {
Marshal.FreeHGlobal(ptr);
throw Sigar.FindException(sigar, status);
2004-09-18 06:16:14 +08:00
}
NetInterfaceStat ifstat =
(NetInterfaceStat)Marshal.PtrToStructure(ptr, type);
Marshal.FreeHGlobal(ptr);
return ifstat;
}
}
2004-06-22 06:37:04 +08:00
}