1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
// 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_attention_response.h>
#include <sml/sml_tree.h>
sml_attention_response *sml_attention_response_init() {
sml_attention_response *msg = (sml_attention_response *) malloc(sizeof(sml_attention_response));
*msg = ( sml_attention_response ) {
.server_id = NULL,
.attention_number = NULL,
.attention_message = NULL,
.attention_details = NULL
};
return msg;
}
sml_attention_response *sml_attention_response_parse(sml_buffer *buf){
sml_attention_response *msg = sml_attention_response_init();
if (sml_buf_get_next_type(buf) != SML_TYPE_LIST) {
buf->error = 1;
goto error;
}
if (sml_buf_get_next_length(buf) != 4) {
buf->error = 1;
goto error;
}
msg->server_id = sml_octet_string_parse(buf);
if (sml_buf_has_errors(buf)) goto error;
msg->attention_number = sml_octet_string_parse(buf);
if (sml_buf_has_errors(buf)) goto error;
msg->attention_message = sml_octet_string_parse(buf);
if (sml_buf_has_errors(buf)) goto error;
msg->attention_details = sml_tree_parse(buf);
if (sml_buf_has_errors(buf)) goto error;
return msg;
error:
sml_attention_response_free(msg);
return 0;
}
void sml_attention_response_write(sml_attention_response *msg, sml_buffer *buf) {
sml_buf_set_type_and_length(buf, SML_TYPE_LIST, 4);
sml_octet_string_write(msg->server_id, buf);
sml_octet_string_write(msg->attention_number, buf);
sml_octet_string_write(msg->attention_message, buf);
sml_tree_write(msg->attention_details, buf);
}
void sml_attention_response_free(sml_attention_response *msg){
if (msg) {
sml_octet_string_free(msg->server_id);
sml_octet_string_free(msg->attention_number);
sml_octet_string_free(msg->attention_message);
sml_tree_free(msg->attention_details);
free(msg);
}
}
|