implemented get_profile_list_response
This commit is contained in:
parent
8e8ff7bd4b
commit
be9ceef0a4
4 changed files with 122 additions and 6 deletions
|
@ -35,7 +35,8 @@ OBJS = \
|
|||
src/sml_get_proc_parameter_response.o \
|
||||
src/sml_get_profile_pack_request.o \
|
||||
src/sml_get_profile_pack_response.o \
|
||||
src/sml_get_profile_list_request.o
|
||||
src/sml_get_profile_list_request.o \
|
||||
src/sml_get_profile_list_response.o
|
||||
|
||||
ifeq ($(UNAME), Linux)
|
||||
libsml: $(DYN_LIB) $(ST_LIB) $(OBJ_LIB)
|
||||
|
|
|
@ -19,6 +19,27 @@
|
|||
#ifndef _SML_GET_PROFILE_LIST_RESPONSE_H
|
||||
#define _SML_GET_PROFILE_LIST_RESPONSE_H
|
||||
|
||||
// TODO
|
||||
#include "sml_shared.h"
|
||||
#include "sml_octet_string.h"
|
||||
#include "sml_time.h"
|
||||
#include "sml_list.h"
|
||||
#include "sml_tree.h"
|
||||
|
||||
typedef struct {
|
||||
octet_string *server_id;
|
||||
sml_time *act_time;
|
||||
u32 *reg_period;
|
||||
sml_tree_path *parameter_tree_path;
|
||||
sml_time *val_time;
|
||||
u64 *status;
|
||||
sml_sequence *period_list;
|
||||
octet_string *rawdata;
|
||||
sml_signature *period_signature;
|
||||
} sml_get_profile_list_response;
|
||||
|
||||
sml_get_profile_list_response *sml_get_profile_list_response_init();
|
||||
sml_get_profile_list_response *sml_get_profile_list_response_parse(sml_buffer *buf);
|
||||
void sml_get_profile_list_response_write(sml_get_profile_list_response *msg, sml_buffer *buf);
|
||||
void sml_get_profile_list_response_free(sml_get_profile_list_response *msg);
|
||||
|
||||
#endif
|
|
@ -25,10 +25,6 @@ sml_get_proc_parameter_response *sml_get_proc_parameter_response_init() {
|
|||
return msg;
|
||||
}
|
||||
|
||||
octet_string *server_id;
|
||||
sml_tree_path *parameter_tree_path;
|
||||
sml_tree *parameter_tree;
|
||||
|
||||
sml_get_proc_parameter_response *sml_get_proc_parameter_response_parse(sml_buffer *buf) {
|
||||
sml_get_proc_parameter_response *msg = sml_get_proc_parameter_response_init();
|
||||
|
||||
|
|
98
sml/src/sml_get_profile_list_response.c
Normal file
98
sml/src/sml_get_profile_list_response.c
Normal file
|
@ -0,0 +1,98 @@
|
|||
// Copyright 2011 Juri Glass, Mathias Runge, Nadim El Sayed
|
||||
// DAI-Labor, TU-Berlin
|
||||
//
|
||||
// This file is part of libSML.
|
||||
//
|
||||
// libSML is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// libSML is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with libSML. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
#include <sml/sml_get_profile_list_response.h>
|
||||
|
||||
// sml_get_profile_list_response;
|
||||
|
||||
sml_get_profile_list_response *sml_get_profile_list_response_init() {
|
||||
sml_get_profile_list_response *msg = (sml_get_profile_list_response *) malloc(sizeof(sml_get_profile_list_response));
|
||||
memset(msg, 0, sizeof(sml_get_profile_list_response));
|
||||
return msg;
|
||||
}
|
||||
|
||||
sml_get_profile_list_response *sml_get_profile_list_response_parse(sml_buffer *buf) {
|
||||
sml_get_profile_list_response *msg = sml_get_profile_list_response_init();
|
||||
|
||||
if (sml_buf_get_next_type(buf) != SML_TYPE_LIST) {
|
||||
buf->error = 1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (sml_buf_get_next_length(buf) != 9) {
|
||||
buf->error = 1;
|
||||
goto error;
|
||||
}
|
||||
|
||||
msg->server_id = sml_octet_string_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->act_time = sml_time_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->reg_period = sml_u32_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->parameter_tree_path = sml_tree_path_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->val_time = sml_time_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->status = sml_u64_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->period_list = sml_sequence_parse(buf, (void *) &sml_period_entry_parse, (void (*)(void *)) &sml_period_entry_free);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->rawdata = sml_octet_string_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
msg->period_signature = sml_signature_parse(buf);
|
||||
if (sml_buf_has_errors(buf)) goto error;
|
||||
|
||||
return msg;
|
||||
|
||||
error:
|
||||
buf->error = 1;
|
||||
sml_get_profile_list_response_free(msg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void sml_get_profile_list_response_write(sml_get_profile_list_response *msg, sml_buffer *buf) {
|
||||
sml_buf_set_type_and_length(buf, SML_TYPE_LIST, 9);
|
||||
|
||||
sml_octet_string_write(msg->server_id, buf);
|
||||
sml_time_write(msg->act_time, buf);
|
||||
sml_u32_write(msg->reg_period, buf);
|
||||
sml_tree_path_write(msg->parameter_tree_path, buf);
|
||||
sml_time_write(msg->val_time, buf);
|
||||
sml_u64_write(msg->status, buf);
|
||||
sml_sequence_write(msg->period_list, buf, (void (*)(void *, sml_buffer *)) &sml_period_entry_write);
|
||||
sml_octet_string_write(msg->rawdata, buf);
|
||||
sml_signature_write(msg->period_signature, buf);
|
||||
}
|
||||
|
||||
void sml_get_profile_list_response_free(sml_get_profile_list_response *msg) {
|
||||
if (msg) {
|
||||
sml_octet_string_free(msg->server_id);
|
||||
sml_time_free(msg->act_time);
|
||||
sml_number_free(msg->reg_period);
|
||||
sml_tree_path_free(msg->parameter_tree_path);
|
||||
sml_time_free(msg->val_time);
|
||||
sml_number_free(msg->status);
|
||||
sml_sequence_free(msg->period_list);
|
||||
sml_octet_string_free(msg->rawdata);
|
||||
sml_signature_free(msg->period_signature);
|
||||
|
||||
free(msg);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue