stats.c 3.98 KB
Newer Older
dscho's avatar
dscho committed
1 2 3 4 5
/*
 * stats.c
 */

/*
6
 *  Copyright (C) 2002 RealVNC Ltd.
dscho's avatar
dscho committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *  OSXvnc Copyright (C) 2001 Dan McGuirk <mcguirk@incompleteness.net>.
 *  Original Xvnc code Copyright (C) 1999 AT&T Laboratories Cambridge.  
 *  All Rights Reserved.
 *
 *  This is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This software is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this software; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 *  USA.
 */

27
#include <rfb/rfb.h>
dscho's avatar
dscho committed
28

dscho's avatar
dscho committed
29
static const char* encNames[] = {
dscho's avatar
dscho committed
30
    "raw", "copyRect", "RRE", "[encoding 3]", "CoRRE", "hextile",
31 32
    "zlib", "tight", "[encoding 8]", "[encoding 9]", "[encoding 10]",
    "[encoding 11]", "[encoding 12]", "[encoding 13]", "[encoding 14]",
33
#ifdef LIBVNCSERVER_BACKCHANNEL
34 35 36 37 38
    "BackChannel",
#else
    "[encoding 15]",
#endif
    "ZRLE", "[encoding 17]", "[encoding 18]", "[encoding 19]", "[encoding 20]"
dscho's avatar
dscho committed
39 40 41 42 43 44 45 46 47 48 49 50 51
};


void
rfbResetStats(rfbClientPtr cl)
{
    int i;
    for (i = 0; i < MAX_ENCODINGS; i++) {
        cl->rfbBytesSent[i] = 0;
        cl->rfbRectanglesSent[i] = 0;
    }
    cl->rfbLastRectMarkersSent = 0;
    cl->rfbLastRectBytesSent = 0;
52 53 54 55
    cl->rfbCursorShapeBytesSent = 0;
    cl->rfbCursorShapeUpdatesSent = 0;
    cl->rfbCursorPosBytesSent = 0;
    cl->rfbCursorPosUpdatesSent = 0;
dscho's avatar
dscho committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    cl->rfbFramebufferUpdateMessagesSent = 0;
    cl->rfbRawBytesEquivalent = 0;
    cl->rfbKeyEventsRcvd = 0;
    cl->rfbPointerEventsRcvd = 0;
}

void
rfbPrintStats(rfbClientPtr cl)
{
    int i;
    int totalRectanglesSent = 0;
    int totalBytesSent = 0;

    rfbLog("Statistics:\n");

    if ((cl->rfbKeyEventsRcvd != 0) || (cl->rfbPointerEventsRcvd != 0))
        rfbLog("  key events received %d, pointer events %d\n",
                cl->rfbKeyEventsRcvd, cl->rfbPointerEventsRcvd);

    for (i = 0; i < MAX_ENCODINGS; i++) {
        totalRectanglesSent += cl->rfbRectanglesSent[i];
        totalBytesSent += cl->rfbBytesSent[i];
    }

80 81
    totalRectanglesSent += (cl->rfbCursorShapeUpdatesSent +
                            cl->rfbCursorPosUpdatesSent +
dscho's avatar
dscho committed
82
			    cl->rfbLastRectMarkersSent);
83 84 85
    totalBytesSent += (cl->rfbCursorShapeBytesSent +
                       cl->rfbCursorPosBytesSent +
                       cl->rfbLastRectBytesSent);
dscho's avatar
dscho committed
86

dscho's avatar
dscho committed
87 88 89 90 91
    rfbLog("  framebuffer updates %d, rectangles %d, bytes %d\n",
            cl->rfbFramebufferUpdateMessagesSent, totalRectanglesSent,
            totalBytesSent);

    if (cl->rfbLastRectMarkersSent != 0)
dscho's avatar
dscho committed
92
	rfbLog("    LastRect and NewFBSize markers %d, bytes %d\n",
dscho's avatar
dscho committed
93 94
		cl->rfbLastRectMarkersSent, cl->rfbLastRectBytesSent);

95
    if (cl->rfbCursorShapeUpdatesSent != 0)
dscho's avatar
dscho committed
96
	rfbLog("    cursor shape updates %d, bytes %d\n",
97 98 99 100 101
		cl->rfbCursorShapeUpdatesSent, cl->rfbCursorShapeBytesSent);

    if (cl->rfbCursorPosUpdatesSent != 0)
	rfbLog("    cursor position updates %d, bytes %d\n",
		cl->rfbCursorPosUpdatesSent, cl->rfbCursorPosBytesSent);
dscho's avatar
dscho committed
102 103 104 105 106 107 108 109 110 111 112 113 114

    for (i = 0; i < MAX_ENCODINGS; i++) {
        if (cl->rfbRectanglesSent[i] != 0)
            rfbLog("    %s rectangles %d, bytes %d\n",
                   encNames[i], cl->rfbRectanglesSent[i], cl->rfbBytesSent[i]);
    }

    if ((totalBytesSent - cl->rfbBytesSent[rfbEncodingCopyRect]) != 0) {
        rfbLog("  raw bytes equivalent %d, compression ratio %f\n",
                cl->rfbRawBytesEquivalent,
                (double)cl->rfbRawBytesEquivalent
                / (double)(totalBytesSent
                           - cl->rfbBytesSent[rfbEncodingCopyRect]-
115 116
			   cl->rfbCursorShapeBytesSent -
                           cl->rfbCursorPosBytesSent -
dscho's avatar
dscho committed
117 118 119
			   cl->rfbLastRectBytesSent));
    }
}