singrdk/base/Applications/WebApps/Diagnostics/Diagnostics.sg

514 lines
22 KiB
Plaintext
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Note: The Singularity Diagnostics web application
//
using Microsoft.SingSharp;
using Microsoft.SingSharp.Runtime;
using Microsoft.Singularity.Diagnostics.Contracts;
using Microsoft.Singularity.Channels;
using Microsoft.Singularity.Directory;
using Microsoft.Singularity.WebApps;
using Microsoft.Singularity.WebApps.Contracts;
using Microsoft.Singularity.PingPong.Contracts;
using System;
using System.Collections;
using System.Diagnostics;
using System.Text;
using System.Web;
using Microsoft.Singularity.Io;
using Microsoft.Singularity.Configuration;
using Microsoft.SingSharp.Reflection;
using Microsoft.Singularity.Applications;
[assembly: Transform(typeof(WebAppResourceTransform))]
namespace Microsoft.Singularity.WebApps
{
[Category("WebApp")]
internal sealed class Parameters
{
[Endpoint]
public readonly TRef<WebAppContract.Exp:Start> webAppRef;
2008-11-17 18:29:00 -05:00
#if false
2008-03-05 09:52:00 -05:00
[Endpoint]
public readonly TRef<DirectoryServiceContract.Imp:Start> nsRef;
2008-11-17 18:29:00 -05:00
#endif
2008-03-05 09:52:00 -05:00
reflective private Parameters();
}
2008-11-17 18:29:00 -05:00
2008-03-05 09:52:00 -05:00
public class DiagnosticsWebApp : IWebApp
{
private TRef<ChannelContract.Imp:ReadyState> m_ChanConn;
private TRef<ProcessContract.Imp:ReadyState> m_ProcConn;
private TRef<MemoryContract.Imp:ReadyState> m_MemConn;
private TRef<PingContract.Imp:PendingState> m_PingConn;
private class ProcPairInfo
{
public int numChannels;
public int numMessages;
}
private Hashtable m_ProcPairInfoTable; // State from the last snapshot
public DiagnosticsWebApp()
{
ChannelContract.Imp! impChanConn;
ChannelContract.Exp! expChanConn;
ChannelContract.NewChannel(out impChanConn, out expChanConn);
ProcessContract.Imp! impProcConn;
ProcessContract.Exp! expProcConn;
ProcessContract.NewChannel(out impProcConn, out expProcConn);
MemoryContract.Imp! impMemConn;
MemoryContract.Exp! expMemConn;
MemoryContract.NewChannel(out impMemConn, out expMemConn);
DirectoryServiceContract.Imp epNS = DirectoryService.NewClientEndpoint();
2008-11-17 18:29:00 -05:00
try {
2008-03-05 09:52:00 -05:00
// Look up the general Diagnostics contract (this will go away!)
epNS.SendBind(Bitter.FromString2(ChannelContract.ModuleName), expChanConn);
2008-11-17 18:29:00 -05:00
switch receive {
2008-03-05 09:52:00 -05:00
case epNS.NakBind(ServiceContract.Exp:Start rejectedEP, error) :
delete impChanConn;
delete rejectedEP;
break;
case epNS.AckBind() :
impChanConn.RecvReady();
m_ChanConn = new TRef<ChannelContract.Imp:ReadyState>(impChanConn);
// success
break;
case epNS.ChannelClosed() :
throw new Exception("epNS channel closed");
}
// Look up the specific diagnostic modules we need
epNS.SendBind(Bitter.FromString2(ProcessContract.ModuleName), expProcConn);
2008-11-17 18:29:00 -05:00
switch receive {
2008-03-05 09:52:00 -05:00
case epNS.NakBind(ServiceContract.Exp:Start rejectedEP, error) :
delete impProcConn;
delete rejectedEP;
break;
case epNS.AckBind() :
impProcConn.RecvReady();
m_ProcConn = new TRef<ProcessContract.Imp:ReadyState>(impProcConn);
// success
break;
case epNS.ChannelClosed() :
throw new Exception("epNS channel closed");
}
epNS.SendBind(Bitter.FromString2(MemoryContract.ModuleName), expMemConn);
2008-11-17 18:29:00 -05:00
switch receive {
2008-03-05 09:52:00 -05:00
case epNS.NakBind(ServiceContract.Exp:Start rejectedEP, error) :
delete impMemConn;
delete rejectedEP;
break;
case epNS.AckBind() :
impMemConn.RecvReady();
m_MemConn = new TRef<MemoryContract.Imp:ReadyState>(impMemConn);
// success
break;
case epNS.ChannelClosed() :
throw new Exception("epNS channel closed");
}
}
2008-11-17 18:29:00 -05:00
finally {
2008-03-05 09:52:00 -05:00
delete epNS;
}
// Spawn the Ping child process so we can do simulated IPC bursts
PingContract.Imp! childImp;
PingContract.Exp! childExp;
PingContract.NewChannel(out childImp, out childExp);
string[] args = new string[1];
2008-11-17 18:29:00 -05:00
args[0] = "ChildPing";
2008-03-05 09:52:00 -05:00
Process child = new Process(args, (Endpoint * in ExHeap)childExp);
child.Start();
childImp.RecvPingReady();
childImp.SendStartPingPong(1);
m_PingConn = new TRef<PingContract.Imp:PendingState>(childImp);
}
public void ProcessRequest(IHttpRequest! request)
{
2008-11-17 18:29:00 -05:00
if (m_ChanConn == null) {
2008-03-05 09:52:00 -05:00
ReportInternalError(request, "No channel to the channel diagnostic module");
}
2008-11-17 18:29:00 -05:00
else if (m_ProcConn == null) {
2008-03-05 09:52:00 -05:00
ReportInternalError(request, "No channel to the process diagnostic module");
}
2008-11-17 18:29:00 -05:00
else if (m_MemConn == null) {
2008-03-05 09:52:00 -05:00
ReportInternalError(request, "No channel to the memory diagnostic module");
}
2008-11-17 18:29:00 -05:00
else if (m_PingConn == null) {
2008-03-05 09:52:00 -05:00
ReportInternalError(request, "No channel to the pingpong child apps");
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
ChannelContract.Imp impChanConn = m_ChanConn.Acquire();
ProcessContract.Imp impProcConn = m_ProcConn.Acquire();
MemoryContract.Imp impMemConn = m_MemConn.Acquire();
PingContract.Imp impPingConn = m_PingConn.Acquire();
2008-11-17 18:29:00 -05:00
try {
2008-03-05 09:52:00 -05:00
string uri = request.GetUriPath();
2008-11-17 18:29:00 -05:00
if (uri.EndsWith("diagram.png")) {
2008-03-05 09:52:00 -05:00
// Serve the image
request.SendStatus(200, "OK");
request.SendHeader("Content-type", "image/jpeg");
2008-11-17 18:29:00 -05:00
request.SendBodyData(
(!)((!)DiagnosticImage.ImageData)[0]
);
2008-03-05 09:52:00 -05:00
}
2008-11-17 18:29:00 -05:00
else if (uri.IndexOf("pingpong") > 0) {
2008-03-05 09:52:00 -05:00
string queryString = request.GetQueryString();
int numReps = 10000;
2008-11-17 18:29:00 -05:00
if (queryString != null) {
2008-03-05 09:52:00 -05:00
string paramPreamble = "numreps=";
int preambleIndex = queryString.IndexOf(paramPreamble);
2008-11-17 18:29:00 -05:00
if (preambleIndex != -1) {
2008-03-05 09:52:00 -05:00
int nextParamIndex = queryString.IndexOf(';', preambleIndex);
string numRepsStr;
int start = preambleIndex + paramPreamble.Length;
2008-11-17 18:29:00 -05:00
if (nextParamIndex == -1) {
2008-03-05 09:52:00 -05:00
numRepsStr = queryString.Substring(start);
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
numRepsStr = queryString.Substring(start, nextParamIndex - start);
}
numReps = Int32.Parse(numRepsStr);
}
}
// Start the ping-pong exchange
impPingConn.RecvDone();
impPingConn.SendStartPingPong(numReps);
// Serve the reply
request.SendStatus(200, "OK");
request.SendHeader("Content-type", "text/plain");
request.SendBodyData(Encoding.ASCII.GetBytes("Started " + numReps + " ping-pong exchanges."));
}
2008-11-17 18:29:00 -05:00
else if (uri.IndexOf("dumpheap") > 0) {
2008-03-05 09:52:00 -05:00
ServeHeapDump(impMemConn, request);
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
ServeMasterPage(impChanConn, impProcConn, impMemConn, request);
}
}
2008-11-17 18:29:00 -05:00
catch (Exception e) {
2008-03-05 09:52:00 -05:00
ReportInternalError(request, "Caught an exception: " + e);
}
2008-11-17 18:29:00 -05:00
finally {
2008-03-05 09:52:00 -05:00
m_PingConn.Release(impPingConn);
m_MemConn.Release(impMemConn);
m_ProcConn.Release(impProcConn);
m_ChanConn.Release(impChanConn);
}
}
request.Done();
}
private void ServeMasterPage(ChannelContract.Imp:ReadyState! impChanConn,
ProcessContract.Imp:ReadyState! impProcConn,
MemoryContract.Imp:ReadyState! impMemConn,
IHttpRequest! request)
{
// Serve the master page
// -----------------------------------------------
// First, get all our data in order.
long maxMemory, usedMemory, freeMemory;
long totalCommBlocks, totalCommBytes;
impMemConn.SendGetFreeMemory();
impMemConn.RecvMemory(out freeMemory);
impMemConn.SendGetUsedMemory();
impMemConn.RecvMemory(out usedMemory);
impMemConn.SendGetMaxMemory();
impMemConn.RecvMemory(out maxMemory);
impMemConn.SendTotalUsedCommunicationHeap();
impMemConn.RecvBlocksAndTotal(out totalCommBlocks, out totalCommBytes);
// This structure hashes process 2-tuples to the
// ProcPairInfo structure. The key
// is "procA:procB", using the process names,
// with the lower-ID process on the left.
Hashtable procPairTable = new Hashtable();
// This table lets us look up process names
Hashtable procNames = new Hashtable();
// Fill in the name table
int[]! in ExHeap procIDs;
impProcConn.SendGetProcessIDs();
impProcConn.RecvProcessIDs(out procIDs);
2008-11-17 18:29:00 -05:00
try {
for (int i = 0; i < procIDs.Length; ++i) {
2008-03-05 09:52:00 -05:00
impProcConn.SendGetProcessName(procIDs[i]);
2008-11-17 18:29:00 -05:00
switch receive {
2008-03-05 09:52:00 -05:00
case impProcConn.NotFound() :
// Do nothing; go to the next ID
break;
case impProcConn.ProcessName(char[]! in ExHeap procName) :
// Drop the name into the table
int procID = procIDs[i];
string valCopy = Bitter.ToString(procName);
delete procName;
procNames[procID] = valCopy;
break;
case impProcConn.ChannelClosed():
throw new Exception("impProcConn channel closed");
}
}
}
2008-11-17 18:29:00 -05:00
finally {
2008-03-05 09:52:00 -05:00
delete procIDs;
}
// Now fill in the table of channels
ChannelInfo[]! in ExHeap channels;
impChanConn.SendGetChannels();
impChanConn.RecvChannels(out channels);
2008-11-17 18:29:00 -05:00
try {
for (int i = 0; i < channels.Length; i++) {
2008-03-05 09:52:00 -05:00
int leftProcID, rightProcID;
string leftProcName, rightProcName;
// Ignore loop channels for now
2008-11-17 18:29:00 -05:00
if (channels[i].ImpProcessId != channels[i].ExpProcessId) {
if (channels[i].ImpProcessId < channels[i].ExpProcessId) {
2008-03-05 09:52:00 -05:00
leftProcID = channels[i].ImpProcessId;
rightProcID = channels[i].ExpProcessId;
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
leftProcID = channels[i].ExpProcessId;
rightProcID = channels[i].ImpProcessId;
}
leftProcName = procNames[leftProcID] as string;
rightProcName = procNames[rightProcID] as string;
2008-11-17 18:29:00 -05:00
if ((leftProcName != null) && (rightProcName != null)) {
2008-03-05 09:52:00 -05:00
string compoundName = leftProcName + ":" + rightProcName;
ProcPairInfo pairInfo = procPairTable[compoundName] as ProcPairInfo;
2008-11-17 18:29:00 -05:00
if (pairInfo == null) {
2008-03-05 09:52:00 -05:00
pairInfo = new ProcPairInfo();
}
// Add to the list of channels between these processes
pairInfo.numChannels++;
pairInfo.numMessages += channels[i].MessagesDeliveredToExp + channels[i].MessagesDeliveredToImp;
procPairTable[compoundName] = pairInfo;
}
}
}
}
2008-11-17 18:29:00 -05:00
finally {
2008-03-05 09:52:00 -05:00
// This is done below, where we dump the channels; uncomment this if we get rid of that HTML.
//delete channels;
}
// -----------------------------------------------
// Now generate the page.
request.SendStatus(200, "OK");
request.SendHeader("Content-type", "text/html");
request.SendHeader("charset", "utf-8");
// Serve up the canned page preamble. This leaves us in a <script> context.
2008-11-17 18:29:00 -05:00
request.SendBodyData((!)((!)MasterPage.HTMLData)[0]);
2008-03-05 09:52:00 -05:00
// Drop in Javascript statements to drive the dynamic portions of the page
2008-11-17 18:29:00 -05:00
foreach (string! pairName in procPairTable.Keys) {
2008-03-05 09:52:00 -05:00
ProcPairInfo info = (ProcPairInfo!)procPairTable[pairName];
ProcPairInfo prevInfo = null;
if (m_ProcPairInfoTable != null) // might be first run
{
prevInfo = m_ProcPairInfoTable[pairName] as ProcPairInfo; // might be null
}
int msgDelta;
2008-11-17 18:29:00 -05:00
if (prevInfo != null) {
2008-03-05 09:52:00 -05:00
msgDelta = info.numMessages - prevInfo.numMessages;
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
msgDelta = info.numMessages;
}
// The scaling value of 3 means that 1,000 tops out the thermometer; change as
// appropriate!
double scaledValue = (msgDelta <= 0
? 0
: 3 * (Math.Sqrt(msgDelta)));
int roundedValue = (int)scaledValue;
2008-11-17 18:29:00 -05:00
if (roundedValue < 80) {
2008-03-05 09:52:00 -05:00
request.SendBodyData(Encoding.ASCII.GetBytes("setThermometerValue(\"" + pairName + "\", \"" + roundedValue + "%\");\n"));
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
request.SendBodyData(Encoding.ASCII.GetBytes("setThermometerToOverflow(\"" + pairName + "\", \"" + roundedValue + "%\");\n"));
}
request.SendBodyData(Encoding.ASCII.GetBytes("setThermometerLabel(\"" + pairName + "\", \"(" + info.numMessages + " / " + info.numChannels + ")\");\n"));
}
// Stash our new snapshot for next time
m_ProcPairInfoTable = procPairTable;
// Push data into the memory thermometer
request.SendBodyData(Encoding.ASCII.GetBytes("setThermometerValue(\"usedMemory\", \"" + ((usedMemory * 100) / freeMemory) + "%\");\n"));
request.SendBodyData(Encoding.ASCII.GetBytes("setThermometerLabel(\"usedMemory\", \"(" + usedMemory + " of " + maxMemory + " used, " + freeMemory + " bytes free)\");\n"));
// Don't forget to close out the <script> context
request.SendBodyData(Encoding.ASCII.GetBytes("</script>"));
//
// Preserve some of the old-style HTML tables for now...
//
// Send total amount of communication heap blocks and memory
request.SendBodyData(Encoding.ASCII.GetBytes("<hr><h1>Communication heap used</h1><table border=2>"));
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>Total blocks</td><td>" + totalCommBlocks + "</td></tr>"));
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>Total bytes</td><td>" + totalCommBytes + "</td></tr>"));
request.SendBodyData(Encoding.ASCII.GetBytes("</table>"));
// Dump the table of processes with their names
request.SendBodyData(Encoding.ASCII.GetBytes("<hr><h1>Processes</h1><table border=2>"));
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>PID</td><td>Image</td></tr>"));
2008-11-17 18:29:00 -05:00
foreach (int procId in procNames.Keys) {
2008-03-05 09:52:00 -05:00
string procName = (string)procNames[procId];
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>" + procId + "</td><td>" + procName + "</td></tr>"));
}
request.SendBodyData(Encoding.ASCII.GetBytes("</table>"));
// Dump the table of channels that exist at the moment
request.SendBodyData(Encoding.ASCII.GetBytes("<hr><h1>Channels</h1><table border=2>"));
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>CID</td><td>Exp PID</td><td>Imp PID</td><td>Exp Bytes</td><td>Imp Bytes</td></tr>"));
2008-11-17 18:29:00 -05:00
for (int i = 0; i < channels.Length; i++) {
2008-03-05 09:52:00 -05:00
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>"+
channels[i].ChannelId+
"</td><td>"+
channels[i].ExpProcessId+
"</td><td>"+
channels[i].ImpProcessId+
"</td><td>"+
channels[i].MessagesDeliveredToExp+
"</td><td>"+
channels[i].MessagesDeliveredToImp+
"</td></tr>"));
}
// Don't forget this...
delete channels;
request.SendBodyData(Encoding.ASCII.GetBytes("</table></body></html>"));
}
private void ServeHeapDump(MemoryContract.Imp:ReadyState! impMemConn,
IHttpRequest! request)
{
request.SendStatus(200, "OK");
request.SendHeader("Content-type", "text/html");
request.SendHeader("charset", "utf-8");
request.SendBodyData(Encoding.ASCII.GetBytes("<html><head><title>ExHeap dump</title></head><body><h1>ExHeap Dump</h1><table border=2><tr><td>Ptr</td><td>PID</td><td>Type</td><td>Size</td></tr>"));
Hashtable procCounts = new Hashtable();
MemoryContract.BlockInfo[]! in ExHeap dump;
impMemConn.SendDumpExHeap();
impMemConn.RecvExHeapDump(out dump);
2008-11-17 18:29:00 -05:00
for (int i = 0; i < dump.Length; i++) {
2008-03-05 09:52:00 -05:00
string text = String.Format("<tr><td>{0:x}</td><td>{1}</td><td>{2:x}</td><td>{3}</td></tr>", dump[i].ptrVal, dump[i].ownerProcID, dump[i].type, dump[i].size);
request.SendBodyData(Encoding.ASCII.GetBytes(text));
object count = procCounts[dump[i].ownerProcID];
2008-11-17 18:29:00 -05:00
if (count == null) {
2008-03-05 09:52:00 -05:00
procCounts[dump[i].ownerProcID] = 1;
}
2008-11-17 18:29:00 -05:00
else {
2008-03-05 09:52:00 -05:00
procCounts[dump[i].ownerProcID] = ((int)count) + 1;
}
}
delete dump;
request.SendBodyData(Encoding.ASCII.GetBytes("</table><hr><h1>Totals by ProcID</h1><table border=2><tr><td>ProcID</td><td>Total Blocks</td></tr>"));
2008-11-17 18:29:00 -05:00
foreach (DictionaryEntry entry in procCounts) {
2008-03-05 09:52:00 -05:00
request.SendBodyData(Encoding.ASCII.GetBytes("<tr><td>" + entry.Key + "</td><td>" + entry.Value + "</td></tr>"));
}
request.SendBodyData(Encoding.ASCII.GetBytes("</table></body></html>"));
}
// ======================================================
// The code below gets used when this webapp is compiled
// to a stand-alone executable
internal static int AppMain(Parameters! config)
{
//Endpoint * in ExHeap ep = Process.GetStartupEndpoint(0);
2008-11-17 18:29:00 -05:00
WebAppContract.Exp conn = ((!)config.webAppRef).Acquire();
2008-03-05 09:52:00 -05:00
if (conn == null) {
// Wrong contract type!
return -1;
}
conn.SendWebAppReady();
DiagnosticsWebApp webApp = new DiagnosticsWebApp();
Driver.ServiceChannel(webApp, conn);
delete conn;
return 0;
}
private void ReportInternalError(IHttpRequest! request, string! description)
{
request.SendStatus(500, "Internal Error");
request.SendHeader("Content-type", "text/plain");
request.SendHeader("charset", "utf-8");
request.SendBodyData(Encoding.ASCII.GetBytes(description));
}
}
}