summaryrefslogtreecommitdiff
path: root/ug-nfc-share-efl/src/ug-nfc-share-common-util.c
blob: fa46050592ab53563d7e0cf6acafe83b29d7e896 (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Flora License, Version 1.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://floralicense.org/license/
  *
  * 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 <string.h>

#include "ug-nfc-share-common-util.h"
#include "ug-nfc-share-common-debug.h"

char* _strncpy(char* dest, const char* src, int len, char* file, int line)
{
	if(dest == NULL || src == NULL || len <= 0)
	{
		UG_NFC_SHARE_DEBUG_ERR("STRNCPY ERROR at %s(%d)", file, line);
		return dest;
	}

	strncpy(dest, src, len);
	dest[len] = '\0';

	return dest;
}

char* _strcat(char* dest, const char* src, int dest_size, char* file, int line)
{
	if(dest == NULL || src == NULL || dest_size <= 0)
	{
		UG_NFC_SHARE_DEBUG_ERR("STRNCAT ERROR at %s(%d)", file, line);
		return dest;
	}

	int ret_len = 0;

	ret_len = g_strlcat(dest, src, dest_size);
	if(ret_len >= dest_size)
	{
		UG_NFC_SHARE_DEBUG_ERR("STRNCAT SIZE ERROR at %s(%d)", file, line);
		//return dest;
	}
	return dest;
}

int _strcmp(const char* src1, const char* src2, char* file, int line)
{
	if(src1 == NULL || src2 == NULL)
	{
		UG_NFC_SHARE_DEBUG_ERR("STRCMP ERROR at %s(%d)", file, line);
		return -1;
	}

	return strcmp(src1, src2);
}


#ifdef _UG_NFC_SHARE_MEM_TRACE_
static gint g_ug_nfc_share_total_memory_size = 0;
static gint g_ug_nfc_share_peak_memory_size = 0;
static ug_nfc_share_mem_unit_t *g_memory_unit_first = NULL;
static ug_nfc_share_mem_unit_t *g_memory_unit_last = NULL;

void ug_nfc_share_memory_unit_add(gchar *func_name, gint line_num, void* pMemory, gint size )
{

	ug_nfc_share_mem_unit_t * unit_mem;

	if( g_memory_unit_first == NULL )
	{
		unit_mem = g_malloc0(sizeof(ug_nfc_share_mem_unit_t));
		if( unit_mem == NULL )
		{
			UG_NFC_SHARE_DEBUG_ERR("\n\n ## [%s - %d] ## out of memory!\n\n", __FUNCTION__, __LINE__);
			return ;
		}
		else
		{
			unit_mem->size = size;
			unit_mem->address = pMemory;
			unit_mem->func_name = func_name;
			unit_mem->line = line_num;
			unit_mem->next = NULL;
			unit_mem->prev = NULL;
		}
		g_memory_unit_first = unit_mem;
		g_memory_unit_last = unit_mem;
	}
	else
	{
		unit_mem = g_malloc0(sizeof(ug_nfc_share_mem_unit_t));
		if( unit_mem == NULL )
		{
			UG_NFC_SHARE_DEBUG_ERR("\n\n ## [%s - %d] ## out of memory!\n\n", __FUNCTION__, __LINE__);
			return ;
		}
		else
		{
			unit_mem->size = size;
			unit_mem->address = pMemory;
			unit_mem->func_name = func_name;
			unit_mem->line = line_num;
			unit_mem->next = NULL;
			unit_mem->prev = g_memory_unit_last;
		}
		g_memory_unit_last->next = unit_mem;
		g_memory_unit_last = unit_mem;

	}
	g_ug_nfc_share_total_memory_size = g_ug_nfc_share_total_memory_size + size;
	if( g_ug_nfc_share_peak_memory_size < g_ug_nfc_share_total_memory_size )
		g_ug_nfc_share_peak_memory_size = g_ug_nfc_share_total_memory_size;

}
void ug_nfc_share_memory_unit_delete(void* pMemory)
{
	ug_nfc_share_mem_unit_t *tmp;
	if( pMemory == g_memory_unit_first->address )
	{
		tmp = g_memory_unit_first;
		g_memory_unit_first = tmp->next;
		if(g_memory_unit_first != NULL)
		g_memory_unit_first->prev = NULL;

		g_ug_nfc_share_total_memory_size = g_ug_nfc_share_total_memory_size - tmp->size;
		g_free(tmp->func_name);
		tmp->func_name = NULL;
		g_free(tmp);
		tmp = NULL;
	}
	else if( pMemory == g_memory_unit_last->address )
	{
		tmp = g_memory_unit_last;

		g_memory_unit_last = tmp->prev;
		g_memory_unit_last->next = NULL;

		g_ug_nfc_share_total_memory_size = g_ug_nfc_share_total_memory_size - tmp->size;
		g_free(tmp->func_name);
		tmp->func_name = NULL;

		g_free(tmp);
		tmp = NULL;

	}
	else
	{
		tmp = g_memory_unit_first;
		for( ; tmp != g_memory_unit_last && tmp != NULL; )
		{
			if( tmp->address == pMemory )
			{
				tmp->prev->next = tmp->next;
				tmp->next->prev = tmp->prev;

				g_ug_nfc_share_total_memory_size = g_ug_nfc_share_total_memory_size - tmp->size;
				g_free(tmp->func_name);
				tmp->func_name = NULL;
				g_free( tmp );
				tmp = NULL;
				break;
			}
			tmp = tmp->next;
		}
	}

}

void
ug_nfc_share_memory_print_list()
{
	ug_nfc_share_mem_unit_t *tmp = g_memory_unit_first;
	while(tmp != NULL)
	{
		UG_NFC_SHARE_DEBUG_ERR("func_name:%s(%d) <address:%p, size:%d>", tmp->func_name, tmp->line, tmp->address, tmp->size);
		tmp = tmp->next;
	}
	UG_NFC_SHARE_DEBUG("total memory size :%d", g_ug_nfc_share_total_memory_size);
	UG_NFC_SHARE_DEBUG("peak memory size :%d", g_ug_nfc_share_peak_memory_size);


}
#endif /*_UG_NFC_SHARE_MEM_TRACE_*/