blob: d0ff7f8e2052999c528bc7d24cd4af9ee816b7d7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include <string.h>
#include <modlog/modlog.h>
#if (MYNEWT_VAL(OC_TRANSPORT_IP) == 1)
#include <mn_socket/mn_socket.h>
#endif
#include "oic/oc_log.h"
#include "port/oc_connectivity.h"
#include "oic/port/mynewt/transport.h"
void
oc_log_endpoint(uint8_t lvl, struct oc_endpoint *oe)
{
char *str;
char tmp[46 + 6];
const struct oc_transport *ot;
(void)tmp;
(void)str;
if (oe->ep.oe_flags & OC_ENDPOINT_MULTICAST) {
str = "multicast";
} else {
ot = oc_transports[oe->ep.oe_type];
if (ot) {
str = ot->ot_ep_str(tmp, sizeof(tmp), oe);
} else {
str = "<unkwn>";
}
}
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "%s\n", str);
}
void
oc_log_bytes(uint8_t lvl, void *addr, int len, int print_char)
{
int i;
uint8_t *p = (uint8_t *)addr;
(void)p;
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "[");
for (i = 0; i < len; i++) {
if (print_char) {
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "%c", p[i]);
} else {
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "%02x", p[i]);
}
}
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "]\n");
}
void
oc_log_bytes_mbuf(uint8_t lvl, struct os_mbuf *m, int off, int len,
int print_char)
{
int i;
uint8_t tmp[4];
int blen;
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "[");
while (len) {
blen = len;
if (blen > sizeof(tmp)) {
blen = sizeof(tmp);
}
os_mbuf_copydata(m, off, blen, tmp);
for (i = 0; i < blen; i++) {
if (print_char) {
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "%c", tmp[i]);
} else {
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "%02x", tmp[i]);
}
}
off += blen;
len -= blen;
}
modlog_printf(LOG_MODULE_IOTIVITY, lvl, "]\n");
}