Blame IbPrint/types.c

Packit 5ea288
/* BEGIN_ICS_COPYRIGHT7 ****************************************
Packit 5ea288
Packit 5ea288
Copyright (c) 2015-2017, Intel Corporation
Packit 5ea288
Packit 5ea288
Redistribution and use in source and binary forms, with or without
Packit 5ea288
modification, are permitted provided that the following conditions are met:
Packit 5ea288
Packit 5ea288
    * Redistributions of source code must retain the above copyright notice,
Packit 5ea288
      this list of conditions and the following disclaimer.
Packit 5ea288
    * Redistributions in binary form must reproduce the above copyright
Packit 5ea288
      notice, this list of conditions and the following disclaimer in the
Packit 5ea288
      documentation and/or other materials provided with the distribution.
Packit 5ea288
    * Neither the name of Intel Corporation nor the names of its contributors
Packit 5ea288
      may be used to endorse or promote products derived from this software
Packit 5ea288
      without specific prior written permission.
Packit 5ea288
Packit 5ea288
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 5ea288
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 5ea288
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 5ea288
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 5ea288
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 5ea288
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 5ea288
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 5ea288
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 5ea288
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 5ea288
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 5ea288
Packit 5ea288
** END_ICS_COPYRIGHT7   ****************************************/
Packit 5ea288
Packit 5ea288
/* [ICS VERSION STRING: unknown] */
Packit 5ea288
Packit 5ea288
#include <stdio.h>
Packit 5ea288
#include <stdlib.h>
Packit 5ea288
#include <unistd.h>
Packit 5ea288
#include <errno.h>
Packit 5ea288
#include <iba/ibt.h>
Packit 5ea288
#include <stdarg.h>
Packit 5ea288
#include "ibprint.h"
Packit 5ea288
Packit 5ea288
// TBD: now universally using 0x---:---- for GIDs
Packit 5ea288
// saquery used to use 0x---:0x--- in a few places but
Packit 5ea288
// mostly used 0x----:-----
Packit 5ea288
Packit 5ea288
void PrintGuid(PrintDest_t *dest, int indent, EUI64 Guid)
Packit 5ea288
{
Packit 5ea288
	PrintFunc(dest, "%*s0x%016"PRIx64"\n", indent, "", Guid);
Packit 5ea288
}
Packit 5ea288
Packit 5ea288
void PrintLid(PrintDest_t *dest, int indent, IB_LID Lid)
Packit 5ea288
{
Packit 5ea288
	PrintFunc(dest, "%*s0x%04x\n", indent, "", Lid);
Packit 5ea288
}
Packit 5ea288
Packit 5ea288
void PrintGid(PrintDest_t *dest, int indent, const IB_GID *pGid)
Packit 5ea288
{
Packit 5ea288
	PrintFunc(dest, "%*s0x%016"PRIx64":0x%016"PRIx64"\n",
Packit 5ea288
				indent, "",
Packit 5ea288
				pGid->AsReg64s.H,
Packit 5ea288
				pGid->AsReg64s.L);
Packit 5ea288
}
Packit 5ea288
Packit 5ea288
void PrintLongMaskBits(PrintDest_t *dest, int indent, const char* prefix, const uint8 *bits, unsigned size) 
Packit 5ea288
{
Packit 5ea288
	char buf[80];
Packit 5ea288
	int buflen;
Packit 5ea288
	unsigned i;
Packit 5ea288
Packit 5ea288
#if 0
Packit 5ea288
	// hex dump of field to aid debug
Packit 5ea288
	buflen = sprintf(buf, "%s ", prefix);
Packit 5ea288
	for (i=0; i
Packit 5ea288
			if (buflen > 60) {
Packit 5ea288
				PrintFunc(dest, "%*s%s\n", indent, "", buf);
Packit 5ea288
				buflen=sprintf(buf, "    ");	// indent list continuation
Packit 5ea288
			}
Packit 5ea288
			buflen +=sprintf(buf+buflen, "%02x", bits[i]);
Packit 5ea288
	}
Packit 5ea288
	PrintFunc(dest, "%*s%s\n", indent, "", buf);
Packit 5ea288
#endif
Packit 5ea288
	buflen = snprintf(buf, sizeof(buf), "%s", prefix);
Packit 5ea288
	for (i=0; i
Packit 5ea288
		if (bits[LONG_MASK_BIT_INDEX(i, size)]&LONG_MASK_BIT_MASK(i)) {
Packit 5ea288
			if (buflen > 60) {
Packit 5ea288
				PrintFunc(dest, "%*s%s\n", indent, "", buf);
Packit 5ea288
				buflen=sprintf(buf, "    ");	// indent list continuation
Packit 5ea288
			}
Packit 5ea288
			buflen +=sprintf(buf+buflen, " %3u", i);
Packit 5ea288
		}
Packit 5ea288
	}
Packit 5ea288
	PrintFunc(dest, "%*s%s\n", indent, "", buf);
Packit 5ea288
}
Packit 5ea288
Packit 5ea288
void PrintSeparator(PrintDest_t *dest)
Packit 5ea288
{
Packit 5ea288
	PrintFunc(dest, "-------------------------------------------------------------------------------\n");
Packit 5ea288
}
Packit 5ea288
Packit 5ea288
// TBD - add a hex dump of a buffer, see idebugdump.c for example
Packit 5ea288
// FormatChars in sa.c
Packit 5ea288
// can just do the BYTES format