summaryrefslogtreecommitdiffstats
path: root/src/can_event_push.cpp
blob: ccfe6b199bd5be51dae80a749fa489bcf8225d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { c
/*
 * Copyright (C) 2015, 2016 "IoT.bzh"
 * Author "Romain Forlot" <romain.forlot@iot.bzh>
 * Author "Loic Collignon" <loic.collignon@iot.bzh>
 *
 * Licensed 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 <linux/can.h>
#include <linux/can/raw.h>
#include <queue>

#include <afb/afb-binding.h>

#include "can-utils.h"
#include "openxc.pb.h"
#include "json-c/json.h"

void can_event_push(CanBus_c *can_bus)
{
	openxc_VehicleMessage *v_message;
	openxc_SimpleMessage *s_message;
	iterator it_event;

	while(true)
	{
		if(v_message = can_bus->next_vehicle_message())
		{
			s_message = get_simple_message(v_msg);
			it_event = event_map.find(s_msg->name);
			afb_event_push(it_event->second, jsonify_simple(s_msg));
		}
	}
}

void jsonify_DynamicField(openxc_DynamicField *field, json_object *value)
{
	if(field->has_numeric_value)
		json_object_object_add(value, "value", json_object_new_double(field->numeric_value));
	else if(field->has_boolean_value)
		json_object_object_add(value, "value", json_object_new_boolean(field->boolean_value));
	else if(field->has_string_value)
		json_object_object_add(value, "value", json_object_new_string(field->string_value));

	return value;
}

/* Extract the simple message value from an openxc_VehicleMessage
 * and return it, or null if there isn't.
 */
openxc_SimpleMessage* get_simple_message(openxc_VehicleMessage *v_msg)
{
	if(v_msg->has_simple_message)
		return v_msg->simple_message;
	
	return nullptr;
}

json_object* jsonify_simple(openxc_SimpleMessage *s_msg)
{
	json_object *json;
	json = json_object_new_object();

	if(!s_msg->has_name)
		return nullptr;

	json_object_object_add(json, "name", json_object_new_string(s_msg->name));
	jsonify_DynamicField(&s_msg->value, json);

	return json;
}