Blame view

app/app-prime-modbus/lib/common/tstrlist.c 24.3 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
  /**    
      @file     tstrlist.c
      @date     2009/1/14
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
4
      @author   오재경 freefrug@falinux.com  FALinux.Co.,Ltd.
8c2952457   김태훈   응용 프로그램 추가
5
      @brief    Ver 0.9.1
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
6
7
                Delphi 형식의 스트링리스트 객체이다.
                tlist.c 에서 구현한 tlist 를 상속(?) 받아 사용한다.
8c2952457   김태훈   응용 프로그램 추가
8
9
10
11
12
      
      @modify   
      @todo     
      @bug     
      
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
13
      @remark   함수 테스트 필요 (테스트 완료표시 ">>")
8c2952457   김태훈   응용 프로그램 추가
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
      
                >>tstrlist_create     
                >>tstrlist_free       
                >>tstrlist_clear      
                >>tstrlist_add
                >>tstrlist_add_object        
                >>tstrlist_delete     
                >>tstrlist_get_string 
                >>tstrlist_get_object 
                >>tstrlist_get_tag    
                  tstrlist_exchange   
                >>tstrlist_indexof    
                  tstrlist_insert     
                >>tstrlist_first      
                >>tstrlist_last       
                  tstrlist_move       
                >>tstrlist_put_string 
                >>tstrlist_put_tag
                >>tstrlist_remove     
                  tstrlist_pack       
                >>tstrlist_getcount   
                >>tstrlist_sort    
                >>tstrlist_commatext   
                >>tstrlist_load_from_file
                >>tstrlist_save_to_file
      
      @warning 
  */
  //  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
43
44
  //  저작권    에프에이리눅스(주)
  //            외부공개 금지
8c2952457   김태훈   응용 프로그램 추가
45
46
47
  //
  //----------------------------------------------------------------------------
  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
48
  #define EMBEDDED_LINUX                                          // 이렇게 처리하지 않으면 EClipse에서 C 영역이 회색 바탕이 됨
8c2952457   김태훈   응용 프로그램 추가
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  
  #ifdef MS_WIN32
      #undef EMBEDDED_LINUX
  #endif
  
  #include <stdio.h>
  #include <stdlib.h>
  #include <sys/time.h>
  
  #include <unistd.h>
  #include <string.h>
  
  #include <tlist.h>
  #include <tstrlist.h>
                                                      
  #ifdef EMBEDDED_LINUX
  
  	#include <sys/resource.h>
  
  #endif
  
  char desc_tstrlist[] = "falinux tstrlist ver 0.9.0";
  
  /// @{
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
73
74
75
76
77
  /// @brief  local 함수리스트
  static int  tstrlist_calcu_strcap( const char *str );                                   /// 할당할 문자열의 공간을 계산한다.
  static tstritem *tstrlist_newitem( const char *str );                                   /// 새로운 문자열 아이템을 생성한다.
  static tstritem *tstrlist_replace_itemstr( tstritem *sitem, const char *str );          /// 문자열 아이템의 문자열을 변경한다.
  static int tstrlist_sortfunc( const void *ppa, const void *ppb );                       /// 문자열 정렬을 위해 크기를 비교한다.
8c2952457   김태훈   응용 프로그램 추가
78
79
80
81
82
  /// @}
  
  
  
  static void trim( char *str)
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
83
  // 설명: 인수로 받은 문자열에서 앞과 뒤의 공백 문자를 제거한다.
8c2952457   김태훈   응용 프로그램 추가
84
85
86
87
88
  {
      int     sz_str;
      int     ndx;
  
      sz_str = strlen( str);
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
89
      for( ndx = sz_str; 0 <= ndx; ndx--)                                         // 문자열 뒤의 화이트 문자를 제거
8c2952457   김태훈   응용 프로그램 추가
90
      {
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
91
          if ( ' ' != str[ndx])    break;                                         // 한글이 있을 경우를 생각해서 ' ' 문자를 직접 비교한다.
8c2952457   김태훈   응용 프로그램 추가
92
93
94
          str[ndx]   = '\0';
      }
  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
95
      sz_str  = strlen( str);                                                     // 문자열 앞의 화이트 문자를 제거
8c2952457   김태훈   응용 프로그램 추가
96
97
      for( ndx = 0; ndx < sz_str; ndx++)
      {
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
98
          if ( ' ' != str[ndx])                                                   // 한글이 있을 경우를 생각해서 ' ' 문자를 직접 비교한다.
8c2952457   김태훈   응용 프로그램 추가
99
100
101
              break;
      }         
      
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
102
      memcpy( str, str+ndx, strlen( str));                                        // 회이트 문자가 아닌 부분을 포인터의 시작 위치로 이동
8c2952457   김태훈   응용 프로그램 추가
103
104
105
  }
  
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
106
107
  /** @brief   문자열에서 앞뒤의 특수문자와 공백문자를 제거한다.
      @param   line 문자열 포인터
8c2952457   김태훈   응용 프로그램 추가
108
109
110
111
112
  *///----------------------------------------------------------------------------
  static void  __trimstr( char *line )
  {
  	int   idx, len;
  	
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
113
  	// 뒷쪽 공백문자와 특수문자 제거
8c2952457   김태훈   응용 프로그램 추가
114
115
116
117
118
119
120
  	len = strlen(line);
  	for( idx=len-1; idx>=0; idx-- )
  	{
  		if ( line[idx] > ' ' ) break;
  	}
  	line[idx+1] = '\0';
  	
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
121
  	// 앞쪽 공백문자와 특수문자 제거
8c2952457   김태훈   응용 프로그램 추가
122
123
124
125
126
127
128
129
130
131
132
  	len = strlen(line);
  	for( idx=0; idx<len; idx++ )
  	{
  		if ( line[idx] > ' ' ) break;
  	}
  	if ( (0 < idx) && (idx < len) )
  	{
  		memmove( line, line + idx, len-idx+1 );
  	}
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
133
134
135
136
  /** @brief   할당할 문자열의 공간을 계산한다.
      @param   str 추가되는 문자열 포인터
      @return  할당할 문자열의 개수
      @remark  최소 MIN_STR_LEN 바이트이상이며 2의 배수로 증가한다.
8c2952457   김태훈   응용 프로그램 추가
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
  *///----------------------------------------------------------------------------
  static int  tstrlist_calcu_strcap( const char *str )
  {
  	int  slen, square; 
  
  	slen   = strlen( str );
  	square = 0;
  
  	while( slen )
  	{
  		slen = slen >> 1;
  		square ++;
  	}
  	
  	slen = 1 << square;
  	if ( slen < MIN_STR_LEN ) slen = MIN_STR_LEN;
  	
  	return slen;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
157
158
159
  /** @brief   새로운 문자열 아이템을 생성한다.
      @param   str 추가되는 문자열 포인터
      @return  생성된 문자열 아이템 구조체 포인터
8c2952457   김태훈   응용 프로그램 추가
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  *///----------------------------------------------------------------------------
  static tstritem *tstrlist_newitem( const char *str )
  {
  	tstritem *sitem;
  	int       cap;
  	
  	cap = tstrlist_calcu_strcap( str );
  	
  	sitem = (tstritem *)malloc( sizeof(tstritem) + cap );
  	
  	sitem->fstrcap = cap;
  	sitem->fstr    = (char *)sitem + sizeof(tstritem);
  	sitem->ftag    = 0;
  	
  	strncpy( sitem->fstr, str, cap );
  	
  	return sitem;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
179
180
181
182
  /** @brief   문자열 아이템의 문자열을 변경한다.
      @param   sitem 문자열 아이템 구조체의 포인터
      @param   str 변경되는 문자열 포인터
      @return  변경된 아이템구조체 포인터
8c2952457   김태훈   응용 프로그램 추가
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
  *///----------------------------------------------------------------------------
  static tstritem *tstrlist_replace_itemstr( tstritem *sitem, const char *str )
  {
  	int  cap;
  	
  	cap = sitem->fstrcap;
  	
  	if ( (int)strlen(str) > sitem->fstrcap )
  	{
  		tstritem  *newitem;
  		
  		newitem = tstrlist_newitem( str );
  		newitem->ftag  = sitem->ftag;
  		newitem->fdata = sitem->fdata;
  		
  		free( sitem );
  		return newitem;
  	}
  	else
  	{
  		strncpy( sitem->fstr, str, cap );
  		return sitem;
  	}
  }
  
  
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
210
211
  /** @brief   tstrlist 객체를 생성한다.
      @return  객체의 포인터
8c2952457   김태훈   응용 프로그램 추가
212
213
214
215
216
217
218
219
220
221
222
  *///----------------------------------------------------------------------------
  tstrlist* tstrlist_create     ( void )
  {
     tstrlist *that;
     that = ( tstrlist *) malloc( sizeof( tstrlist ) );
     
     that->ftlst = tlist_create();
     
     return that;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
223
224
  /** @brief   tstrlist 객체를 소멸시킨다.
      @param   *that 관리 객체의 포인터
8c2952457   김태훈   응용 프로그램 추가
225
226
227
228
229
230
231
232
  *///----------------------------------------------------------------------------
  void   tstrlist_free       ( tstrlist *that )
  {
      tstrlist_clear( that );
      tlist_free( that->ftlst );
      free( that );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
233
234
  /** @brief   모든 아이템을 제거한다.
      @param   that 관리 객체의 포인터
8c2952457   김태훈   응용 프로그램 추가
235
236
237
238
239
240
241
  *///----------------------------------------------------------------------------
  void   tstrlist_clear      ( tstrlist *that )
  {
  	int    loop;
  	void  *ptr;
  	tlist *tlst = that->ftlst;
  	
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
242
  	// 문자열 객체를 해제한다.
8c2952457   김태훈   응용 프로그램 추가
243
244
245
246
247
248
249
250
251
  	for (loop=0; loop<tlst->fcount; loop++)
  	{
  		ptr = tlist_get( tlst, loop );
  		if (ptr) free( ptr );
  	}
  	
  	tlist_clear( tlst );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
252
253
254
255
  /** @brief   문자열 아이템을 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 새로이 추가되는 문자열 포인터
      @return  추가된 아이템의 인덱스
8c2952457   김태훈   응용 프로그램 추가
256
257
258
259
260
261
262
  *///----------------------------------------------------------------------------
  int    tstrlist_add        ( tstrlist *that, const char *str )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  	int       result;
  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
263
  	sitem  = tstrlist_newitem( str );	// 문자열 객체 생성
8c2952457   김태훈   응용 프로그램 추가
264
265
266
267
268
  	result = tlist_add( tlst, sitem );
  
  	return result;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
269
270
271
272
273
  /** @brief   문자열과 사용자 포인터를 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 새로이 추가되는 문자열 포인터
      @param   pdata 사용자 포인터
      @return  추가된 아이템의 인덱스
8c2952457   김태훈   응용 프로그램 추가
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  *///----------------------------------------------------------------------------
  int    tstrlist_add_object ( tstrlist *that, const char *str, void *obj )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  	int       result;
  
  	result = tstrlist_add( that, str );
  	
  	sitem  = (tstritem *)tlist_get( tlst, result );
  	sitem->fdata = obj;
  
  	return result;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
289
290
291
  /** @brief   하나의 아이템을 제거한다.
      @param   that 관리 객체의 포인터
      @param   index 제거될 아이템의 인덱스
8c2952457   김태훈   응용 프로그램 추가
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
  *///----------------------------------------------------------------------------
  void   tstrlist_delete     ( tstrlist *that, int index )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  	
  	sitem  = (tstritem *)tlist_get( tlst, index );
  	if (sitem)
  	{
  		free( sitem );	
  	}
  	
  	tlist_delete( tlst, index );	
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
307
308
309
310
  /** @brief   인덱스에 해당하는 문자열 포인터를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 문자열 포인터
8c2952457   김태훈   응용 프로그램 추가
311
312
313
314
315
316
317
318
319
320
321
322
323
324
  *///----------------------------------------------------------------------------
  char *tstrlist_get_string  ( tstrlist *that, int index )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
      
      sitem = (tstritem *)tlist_get( tlst, index );
      if (sitem)
      {
      	return sitem->fstr;
      }
      return NULL;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
325
326
327
328
  /** @brief   인덱스에 해당하는 사용자 포인터를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 사용자 포인터
8c2952457   김태훈   응용 프로그램 추가
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  *///----------------------------------------------------------------------------
  void *tstrlist_get_object  ( tstrlist *that, int index )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
      
      sitem = (tstritem *)tlist_get( tlst, index );
      if (sitem)
      {
      	return sitem->fdata;
      }
      return NULL;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
343
344
345
346
  /** @brief   인덱스에 해당하는 정수형 태그변수를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 정수형 태그변수
8c2952457   김태훈   응용 프로그램 추가
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
  *///----------------------------------------------------------------------------
  int  tstrlist_get_tag  ( tstrlist *that, int index )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
      
      sitem = (tstritem *)tlist_get( tlst, index );
      if (sitem)
      {
      	return sitem->ftag;
      }
  
      return -1;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
362
363
364
365
  /** @brief   2개의 아이템 위치를 교환한다.
      @param   that 관리 객체의 포인터
      @param   index1 교환할 인덱스1
      @param   index2 교환할 인덱스2
8c2952457   김태훈   응용 프로그램 추가
366
367
368
369
370
371
372
373
  *///----------------------------------------------------------------------------
  void   tstrlist_exchange   ( tstrlist *that, int index1, int index2 )
  {
      tlist    *tlst = that->ftlst;
      
      tlist_exchange( tlst, index1, index2 );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
374
375
376
377
  /** @brief   문자열이 동일한 인덱스를 구한다.
      @param   that 관리 객체의 포인터
      @param   str  비교 문자열 포인터
      @return  문자열이 해당되는 인덱스, 존재하지 않으면 -1
8c2952457   김태훈   응용 프로그램 추가
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  *///----------------------------------------------------------------------------
  int    tstrlist_indexof    ( tstrlist *that, const char *str )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
  	int       loop;
  	
  	for (loop=0; loop<tlst->fcount; loop++)
  	{
  		sitem = (tstritem *)tlist_get( tlst, loop );
  		
  		if ( 0 == strcmp( sitem->fstr, str ) )
  		{
  			return loop;	
  		}
  	}
  
  	return -1;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
398
399
400
401
  /** @brief   아이템을 특정 위치에 추가한다.
      @param   that 관리 객체의 포인터
      @param   index 추가할 아이템가 들어갈 인덱스
      @param   str  추가할 문자열 포인터
8c2952457   김태훈   응용 프로그램 추가
402
403
404
405
406
407
  *///----------------------------------------------------------------------------
  void   tstrlist_insert     ( tstrlist *that, int index, char *str )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
  	
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
408
  	sitem = tstrlist_newitem( str );	// 문자열 객체 생성
8c2952457   김태훈   응용 프로그램 추가
409
410
411
  	tlist_insert( tlst, index, sitem );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
412
413
414
  /** @brief   첫번째 문자열 포인터를 돌려준다.
      @param   that 관리 객체의 포인터
      @return  첫번째 문자열 포인터
8c2952457   김태훈   응용 프로그램 추가
415
416
417
418
419
420
  *///----------------------------------------------------------------------------
  char  *tstrlist_first      ( tstrlist *that )
  {
      return tstrlist_get_string( that, 0 );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
421
422
423
  /** @brief   마지막 문자열 포인터를 구한다.
      @param   that 관리 객체의 포인터
      @return  마지막 문자열 포인터
8c2952457   김태훈   응용 프로그램 추가
424
425
426
427
428
429
430
431
  *///----------------------------------------------------------------------------
  char  *tstrlist_last       ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
  
      return tstrlist_get_string( that, tlst->fcount-1 );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
432
433
434
435
  /** @brief   특정 아이템의 위치(인덱스)를 변경한다.
      @param   that 관리 객체의 포인터
      @param   curindex 변경할 아이템의 인덱스
      @param   newindex 변경될 아이템의 인덱스
8c2952457   김태훈   응용 프로그램 추가
436
437
438
439
440
441
442
443
  *///----------------------------------------------------------------------------
  void   tstrlist_move       ( tstrlist *that, int curindex, int newindex )
  {
  	tlist    *tlst = that->ftlst;
  	
  	tlist_move( tlst, curindex, newindex );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
444
445
446
447
  /** @brief   특정아이템의 문자열을 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 문자열이 변경될 인덱스
      @param   str  새로 변경될 문자열
8c2952457   김태훈   응용 프로그램 추가
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
  *///----------------------------------------------------------------------------
  void   tstrlist_put_string  ( tstrlist *that, int index, char *str )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  
  	sitem = tlist_get( tlst, index );
  	if ( sitem )
  	{
  		sitem = tstrlist_replace_itemstr( sitem, str );
  		
  		tlist_put( tlst, index, sitem );
  	}
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
463
464
465
466
  /** @brief   특정아이템의 사용자 메모리 변수를 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 변경될 아이템 인덱스
      @param   obj   새로 변경될 사용자 포인터
8c2952457   김태훈   응용 프로그램 추가
467
468
469
470
471
472
473
474
475
476
477
478
479
  *///----------------------------------------------------------------------------
  void   tstrlist_put_object ( tstrlist *that, int index, void *obj )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  
  	sitem = tlist_get( tlst, index );
  	if ( sitem )
  	{
  		sitem->fdata = obj;
  	}
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
480
481
482
483
  /** @brief   특정아이템의 태그변수를 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 태그가 변경될 인덱스
      @param   tag  새로 변경될 정수형 태그변수
8c2952457   김태훈   응용 프로그램 추가
484
485
486
487
488
489
490
491
492
493
494
495
496
  *///----------------------------------------------------------------------------
  void   tstrlist_put_tag  ( tstrlist *that, int index, int tag )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  
  	sitem = tlist_get( tlst, index );
  	if ( sitem )
  	{
  		sitem->ftag = tag;
  	}
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
497
498
499
500
  /** @brief   인자로 전해준 동일한 문자열을 찾아 삭제한다.
      @param   that 관리 객체의 포인터
      @param   item 삭제할 아이템의 포인터
      @return  삭제된 아이템의 과거 인덱스
8c2952457   김태훈   응용 프로그램 추가
501
502
503
504
505
506
507
508
509
510
  *///----------------------------------------------------------------------------
  int    tstrlist_remove     ( tstrlist *that, char *str )
  {
      int result;
      
      result = tstrlist_indexof( that, str );
      if( result >= 0 ) tstrlist_delete( that, result );
      return result;
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
511
512
513
514
  /** @brief   메모리 관리를 위해 사용하지 않는 메모리를 반환한다.
      @param   that 관리 객체의 포인터
      @remark  실제 메모리를 반환하지 않는다.
      @todo    메모리를 반환하도록 재작성되어야 한다.
8c2952457   김태훈   응용 프로그램 추가
515
516
517
518
519
520
521
522
  *///----------------------------------------------------------------------------
  void   tstrlist_pack       ( tstrlist *that )
  {
  	tlist    *tlst = that->ftlst;
  
  	tlist_pack( tlst );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
523
524
525
  /** @brief   아이템의 개수를 얻는다.
      @param   that 관리 객체의 포인터
      @return  아이템의 개수
8c2952457   김태훈   응용 프로그램 추가
526
527
528
529
530
531
532
533
534
  *///----------------------------------------------------------------------------
  int    tstrlist_getcount   ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
      
      return tlst->fcount;
  }
  
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
535
536
537
538
  /** @brief   문자열 정렬을 위해 크기를 비교한다.
      @param   astr 비교 포인터
      @param   bstr 비교 포인터
      @return  문자열 비교값
8c2952457   김태훈   응용 프로그램 추가
539
540
541
542
543
544
545
546
547
548
549
  *///----------------------------------------------------------------------------
  static int tstrlist_sortfunc( const void *ppa, const void *ppb )
  {
  	tstritem **aitem, **bitem;
  	
  	aitem = (tstritem **)ppa;
  	bitem = (tstritem **)ppb;
  
  	return strcmp( (*aitem)->fstr, (*bitem)->fstr );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
550
551
552
  /** @brief   아이템을 사용자 비교함수를 통해 정렬한다.
      @param   that 관리 객체의 포인터
      @param   tstrlistsortcomparefunc 사용자비교 콜백함수이며, int (*func)(const void *, const void *) 형태이다.
8c2952457   김태훈   응용 프로그램 추가
553
554
555
556
557
558
559
560
561
562
  *///----------------------------------------------------------------------------
  void   tstrlist_sort       ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
      
      if ( 0 >= tlst->fcount ) return;
      
  	tlist_sort( tlst, tstrlist_sortfunc );
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
563
564
565
566
567
  /** @brief   인자로 전해준 문자열을 분리하여 아이템으로 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 분리할 문자열
      @return  객체가 관리하는 아이템 개수
      @todo    더블쿼테이션(") 으로 싸여진 문자열 분리가 필요하다.
8c2952457   김태훈   응용 프로그램 추가
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
  *///----------------------------------------------------------------------------
  int    tstrlist_commatext     ( tstrlist *that, char *str )
  {    
      #define COMMA_BUFF_MAX      4096   
  	tlist  *tlst = that->ftlst;
  	int     ndx_sour;
  	int     ndx_buff;
  	char    ch_division = '\0';
      char    buff[COMMA_BUFF_MAX+1];
  
      void add_buff_to_list( void)
      {
          trim( buff);	
          tstrlist_add( that, buff);
      }
  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
584
      ndx_buff = 0;                                                               // 버퍼에 문자를 넣을 위치를 0으로 초기화
8c2952457   김태훈   응용 프로그램 추가
585
586
587
588
589
590
591
592
      for ( ndx_sour = 0; ndx_sour < strlen( str); ndx_sour++)
      {
          if ( '\0' == ch_division)
          {
              switch( str[ndx_sour])
              {
              case '\''   :
              case '\"'   :
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
593
                      if ( 0 < ndx_buff)                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
8c2952457   김태훈   응용 프로그램 추가
594
595
596
597
598
                      {
                          buff[ndx_buff]  = '\0';
                          add_buff_to_list();
                      }
                      ch_division = str[ndx_sour];
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
599
                      ndx_buff    = 0;                                            // 버퍼에 새로운 문자열을 담을 수 있도록 버퍼의 위치를 0 으로 초기화
8c2952457   김태훈   응용 프로그램 추가
600
601
602
603
604
605
                      break;
              case ' '    :
              case ','    :
              case '
  '   :
              case '\r'   :
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
606
                      if ( 0 < ndx_buff)                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
8c2952457   김태훈   응용 프로그램 추가
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
                      {
                          buff[ndx_buff]  = '\0';
                          add_buff_to_list();
                          ndx_buff        = 0;
                      }
                      break;
              default     :
                      if ( ndx_buff < COMMA_BUFF_MAX)
                      {
                          buff[ndx_buff++] = str[ndx_sour];
                      }
                      else
                      {
                          printf( "tstrlist error: buffer is small in comma text function.");
                      }
                      break;
              }
          }
          else
          {
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
627
              if ( ch_division == str[ndx_sour])                                  // 이전 인용부호의 끝이라면
8c2952457   김태훈   응용 프로그램 추가
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
              {
                  ch_division     = '\0';
                  buff[ndx_buff]  = '\0';
                  add_buff_to_list();
                  ndx_buff        = 0;
              }
              else
              {
                  if ( ndx_buff < COMMA_BUFF_MAX)
                  {
                      buff[ndx_buff++] = str[ndx_sour];
                  }
                  else
                  {
                      printf( "tstrlist error: buffer is small in comma text function.");
                  }
              }
          }
      }                
  
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
648
      if ( 0 < ndx_buff)                                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
8c2952457   김태훈   응용 프로그램 추가
649
650
651
652
653
654
655
      {
          buff[ndx_buff]  = '\0';
          add_buff_to_list();
      }
  	return tlst->fcount; 
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
656
657
658
659
  /** @brief   텍스트파일에서 라인별로 아이템에 등록한다.
      @param   that 관리 객체의 포인터
      @param   fname 파일이름
      @return  객체가 관리하는 아이템 개수
8c2952457   김태훈   응용 프로그램 추가
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
  *///----------------------------------------------------------------------------
  int    tstrlist_load_from_file ( tstrlist *that, char *fname )
  {
  	tlist    *tlst = that->ftlst;
  	char      line[2048];
  	FILE     *pfile;
  
  	pfile = fopen( fname, "r" );
  	if ( pfile )
  	{
  		while( fgets( line, sizeof(line), pfile ) )
  		{
  			__trimstr( line );
  			if ( 0 < strlen(line) )
  			{
  				tstrlist_add( that, line );
  			}
  		}
  		
  		fclose( pfile );
  	}
  	
  	return tlst->fcount; 
  }
  //------------------------------------------------------------------------------
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
685
686
687
688
  /** @brief   아이템들을 라인별로 파일로 저장한다.
      @param   that 관리 객체의 포인터
      @param   fname 파일이름
      @return  파일에 저장한 라인수
8c2952457   김태훈   응용 프로그램 추가
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
  *///----------------------------------------------------------------------------
  int    tstrlist_save_to_file ( tstrlist *that, char *fname )
  {
  	tlist    *tlst = that->ftlst;
  	FILE     *pfile;
  	int       loop, wrline;
  
  	pfile  = fopen( fname, "w+" );
  	wrline = 0;
  	if ( pfile )
  	{
  		for (loop=0; loop<tlst->fcount; loop++)
  		{
  			if ( 0 < fprintf( pfile, "%s
  ", tstrlist_get_string( that, loop ) ) )
  				wrline	++;
  		}
  		
  		fclose( pfile );
  	}
  	
  	return wrline;
  }