You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2020/02/03 18:46:20 UTC

[GitHub] [nifi-minifi-cpp] msharee9 commented on a change in pull request #674: Minificpp 1007 - ECU C2 integration.

msharee9 commented on a change in pull request #674: Minificpp 1007 - ECU C2 integration.
URL: https://github.com/apache/nifi-minifi-cpp/pull/674#discussion_r374274196
 
 

 ##########
 File path: nanofi/include/coap/c2payload.h
 ##########
 @@ -0,0 +1,95 @@
+/**
+ *
+ * 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.
+ */
+
+#ifndef NANOFI_INCLUDE_COAP_C2PAYLOAD_H_
+#define NANOFI_INCLUDE_COAP_C2PAYLOAD_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+#include "uthash.h"
+#include "utlist.h"
+#include <coap/c2structs.h>
+
+struct c2_payload_map;
+struct c2_payload_list;
+
+typedef enum value_type {
+    NONE_TYPE,
+    UINT8_TYPE,
+    UINT16_TYPE,
+    UINT32_TYPE,
+    UINT64_TYPE,
+    STRING_TYPE,
+    HASH_TYPE,
+    LIST_TYPE,
+    PROP_TYPE
+} value_type_t;
+
+typedef struct value {
+    uint8_t v_uint8;
+    uint16_t v_uint16;
+    uint32_t v_uint32;
+    uint64_t v_uint64;
+    char * v_str;
+    struct c2_payload_map * v_map;
+    struct properties * v_props;
+    struct c2_payload_list * v_maplist;
+    value_type_t val_type;
+} value_t;
+
+//list of values
+typedef struct c2_payload_list {
+    value_t value;
+    struct c2_payload_list * next;
+} c2_payload_list_t;
+
+typedef struct c2_payload_map {
+    uint16_t key;
+    value_t value;
+    UT_hash_handle hh;
+} c2_payload_map_t;
+
+c2_payload_map_t * c2_payload_heartbeat(c2heartbeat_t hb);
 
 Review comment:
   Function headers would be useful

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services