2006-08-21 14:11:16 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006, Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-05-18 15:50:08 +02:00
|
|
|
#include <stdio.h>
|
2008-10-03 11:41:16 +02:00
|
|
|
#include <stdarg.h>
|
2007-05-18 15:50:08 +02:00
|
|
|
#include <string.h>
|
2006-08-21 14:11:16 +02:00
|
|
|
#include "sys/log.h"
|
|
|
|
#include "lib/simEnvChange.h"
|
|
|
|
|
2008-10-05 17:40:27 +02:00
|
|
|
#define IMPLEMENT_PRINTF 1
|
2009-10-19 20:00:49 +02:00
|
|
|
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV4
|
2009-10-19 20:00:49 +02:00
|
|
|
/* uIP packets via SLIP */
|
|
|
|
#include "uip.h"
|
|
|
|
#define MAX_LOG_LENGTH (2*UIP_BUFSIZE)
|
2014-12-01 21:02:57 +01:00
|
|
|
#else /* NETSTACK_CONF_WITH_IPV4 */
|
2007-05-15 20:13:32 +02:00
|
|
|
#define MAX_LOG_LENGTH 1024
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV4 */
|
2008-10-03 11:41:16 +02:00
|
|
|
|
2010-01-25 13:34:05 +01:00
|
|
|
#if MAX_LOG_LENGTH < 1024
|
|
|
|
#undef MAX_LOG_LENGTH
|
|
|
|
#define MAX_LOG_LENGTH 1024
|
|
|
|
#endif /* MAX_LOG_LENGTH < 1024 */
|
|
|
|
|
|
|
|
|
2006-08-21 14:11:16 +02:00
|
|
|
const struct simInterface simlog_interface;
|
|
|
|
|
2010-01-25 13:34:05 +01:00
|
|
|
/* Variables shared between COOJA and Contiki */
|
2007-05-15 20:13:32 +02:00
|
|
|
char simLoggedData[MAX_LOG_LENGTH];
|
2006-08-21 14:11:16 +02:00
|
|
|
int simLoggedLength;
|
|
|
|
char simLoggedFlag;
|
|
|
|
|
2008-10-03 11:41:16 +02:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
simlog_char(char c)
|
|
|
|
{
|
|
|
|
if (simLoggedLength + 1 > MAX_LOG_LENGTH) {
|
|
|
|
/* Dropping message due to buffer overflow */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
simLoggedData[simLoggedLength] = c;
|
|
|
|
simLoggedLength += 1;
|
|
|
|
simLoggedFlag = 1;
|
|
|
|
}
|
2006-08-21 14:11:16 +02:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
simlog(const char *message)
|
|
|
|
{
|
2007-05-15 20:13:32 +02:00
|
|
|
if (simLoggedLength + strlen(message) > MAX_LOG_LENGTH) {
|
2007-11-25 23:45:04 +01:00
|
|
|
/* Dropping message due to buffer overflow */
|
|
|
|
return;
|
2007-05-15 20:13:32 +02:00
|
|
|
}
|
2008-10-03 11:41:16 +02:00
|
|
|
|
2010-01-25 13:34:05 +01:00
|
|
|
memcpy(simLoggedData + simLoggedLength, message, strlen(message));
|
2006-08-21 14:11:16 +02:00
|
|
|
simLoggedLength += strlen(message);
|
|
|
|
simLoggedFlag = 1;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2007-11-25 23:45:04 +01:00
|
|
|
void
|
|
|
|
log_message(const char *part1, const char *part2)
|
|
|
|
{
|
|
|
|
simlog(part1);
|
|
|
|
simlog(part2);
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2006-08-21 14:11:16 +02:00
|
|
|
static void
|
|
|
|
doInterfaceActionsBeforeTick(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
doInterfaceActionsAfterTick(void)
|
|
|
|
{
|
2008-10-03 11:41:16 +02:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2012-12-09 21:24:03 +01:00
|
|
|
static int log_putchar_with_slip;
|
|
|
|
void
|
|
|
|
log_set_putchar_with_slip(int with)
|
|
|
|
{
|
|
|
|
log_putchar_with_slip = with;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2008-10-05 17:40:27 +02:00
|
|
|
#if IMPLEMENT_PRINTF
|
2008-10-03 11:41:16 +02:00
|
|
|
int
|
|
|
|
putchar(int c)
|
|
|
|
{
|
2012-12-09 21:24:03 +01:00
|
|
|
#define SLIP_END 0300
|
|
|
|
static char debug_frame = 0;
|
|
|
|
|
|
|
|
if(log_putchar_with_slip) {
|
|
|
|
simlog_char(SLIP_END);
|
|
|
|
|
|
|
|
if(!debug_frame) { /* Start of debug output */
|
|
|
|
simlog_char(SLIP_END);
|
|
|
|
simlog_char('\r'); /* Type debug line == '\r' */
|
|
|
|
debug_frame = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
simlog_char((char)c);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Line buffered output, a newline marks the end of debug output and
|
|
|
|
* implicitly flushes debug output.
|
|
|
|
*/
|
|
|
|
if(c == '\n') {
|
|
|
|
simlog_char(SLIP_END);
|
|
|
|
debug_frame = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
} else {
|
|
|
|
simlog_char(c);
|
|
|
|
return c;
|
|
|
|
}
|
2008-10-03 11:41:16 +02:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
puts(const char* s)
|
|
|
|
{
|
|
|
|
simlog(s);
|
2010-01-25 13:34:05 +01:00
|
|
|
simlog_char('\n');
|
2008-10-03 11:41:16 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
printf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
static char buf[MAX_LOG_LENGTH];
|
|
|
|
va_list ap;
|
2012-12-09 21:24:03 +01:00
|
|
|
int i;
|
|
|
|
|
2010-01-25 13:34:05 +01:00
|
|
|
va_start(ap, fmt);
|
|
|
|
res = vsnprintf(buf, MAX_LOG_LENGTH, fmt, ap);
|
2008-10-03 11:41:16 +02:00
|
|
|
va_end(ap);
|
|
|
|
|
2012-12-09 21:24:03 +01:00
|
|
|
// simlog(buf);
|
|
|
|
for(i = 0; i < res; i++) {
|
|
|
|
putchar(buf[i]);
|
|
|
|
}
|
2008-10-03 11:41:16 +02:00
|
|
|
return res;
|
2006-08-21 14:11:16 +02:00
|
|
|
}
|
2008-10-05 17:40:27 +02:00
|
|
|
#endif /* IMPLEMENT_PRINTF */
|
2006-08-21 14:11:16 +02:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
SIM_INTERFACE(simlog_interface,
|
2007-11-25 23:45:04 +01:00
|
|
|
doInterfaceActionsBeforeTick,
|
|
|
|
doInterfaceActionsAfterTick);
|