File: DynvVarColor.cpp

package info (click to toggle)
gpick 0.2.5%2Bgit20161221-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,748 kB
  • ctags: 3,744
  • sloc: cpp: 26,803; python: 871; ansic: 476; yacc: 252; lex: 197; xml: 63; makefile: 50; sh: 8
file content (137 lines) | stat: -rw-r--r-- 4,634 bytes parent folder | download
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * Copyright (c) 2009-2016, Albertas Vyšniauskas
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 *
 *     * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
 *     * Neither the name of the software author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "DynvVarColor.h"
#include "DynvVariable.h"
#include "DynvIO.h"
#include "../Endian.h"
#include <string.h>

#include <sstream>
using namespace std;

static int dynv_var_color_create(struct dynvVariable* variable){
	if ((variable->ptr_value = new float[4])){
		return 0;
	}
	return -1;
}

static int dynv_var_color_destroy(struct dynvVariable* variable){
	if (variable->ptr_value){
		delete [] (float*)variable->ptr_value;
		return 0;
	}
	return -1;
}

static int dynv_var_color_set(struct dynvVariable* variable, void* value, bool deref){
	if (!variable->ptr_value) return -1;
	memcpy(variable->ptr_value, *(void**)value, sizeof(float[4]));

	/*((float*)variable->ptr_value)[0] = ((float*)value)[0];
	((float*)variable->ptr_value)[1] = ((float*)value)[1];
	((float*)variable->ptr_value)[2] = ((float*)value)[2];
	((float*)variable->ptr_value)[3] = ((float*)value)[3];*/
	return 0;
}

static int dynv_var_color_get(struct dynvVariable* variable, void** value, bool *deref){
	if (variable->ptr_value){
		*value = &variable->ptr_value;
		return 0;
	}
	return -1;
}

static int dynv_var_color_serialize(struct dynvVariable* variable, struct dynvIO* io){
	if (!variable->ptr_value) return -1;
	uint32_t written;

	uint32_t length=16;
	length=UINT32_TO_LE(length);

	dynv_io_write(io, &length, 4, &written);

	uint32_t value[4];
	memcpy(value, variable->ptr_value, 16);
	value[0]=UINT32_TO_LE(value[0]);
	value[1]=UINT32_TO_LE(value[1]);
	value[2]=UINT32_TO_LE(value[2]);
	value[3]=UINT32_TO_LE(value[3]);

	if (dynv_io_write(io, value, 16, &written) == 0){
		if (written != 16) return -1;
	}else return -1;
	return 0;
}

static int dynv_var_color_deserialize(struct dynvVariable* variable, struct dynvIO* io){
	if (!variable->ptr_value) return -1;

	uint32_t read;
	uint32_t length;
	uint32_t value[4];
	dynv_io_read(io, &length, 4, &read);

	if (dynv_io_read(io, value, 16, &read) == 0){
		if (read == 16){
			value[0]=UINT32_FROM_LE(value[0]);
			value[1]=UINT32_FROM_LE(value[1]);
			value[2]=UINT32_FROM_LE(value[2]);
			value[3]=UINT32_FROM_LE(value[3]);
			memcpy(variable->ptr_value, value, 16);
			return 0;
		}
	}
	return -1;
}

static int serialize_xml(struct dynvVariable* variable, ostream& out){
	if (variable->ptr_value){
		float* color = (float*)variable->ptr_value;
		out << color[0] <<" "<< color[1] <<" "<< color[2] <<" "<< color[3];
	}
	return 0;
}

static int deserialize_xml(struct dynvVariable* variable, const char *data){
	stringstream ss(stringstream::in);
	ss.str(data);
	float *c = (float*)variable->ptr_value;
	ss >> c[0] >> c[1] >> c[2] >> c[3];
	return 0;
}

struct dynvHandler* dynv_var_color_new(){
	struct dynvHandler* handler=dynv_handler_create("color");

	handler->create=dynv_var_color_create;
	handler->destroy=dynv_var_color_destroy;
	handler->set=dynv_var_color_set;
	handler->get=dynv_var_color_get;
	handler->serialize=dynv_var_color_serialize;
	handler->deserialize=dynv_var_color_deserialize;

	handler->serialize_xml=serialize_xml;
	handler->deserialize_xml=deserialize_xml;

	handler->data_size = sizeof(float*);

	return handler;
}