Blame view

app/app-prime-modbus/lib/common/tstrlist.c 22.7 KB
8c2952457   김태훈   응용 프로그램 추가
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
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
685
686
687
688
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
  /**    
      @file     tstrlist.c
      @date     2009/1/14
      @author   오재경 freefrug@falinux.com  FALinux.Co.,Ltd.
      @brief    Ver 0.9.1
                Delphi 형식의 스트링리스트 객체이다.
                tlist.c 에서 구현한 tlist 를 상속(?) 받아 사용한다.
      
      @modify   
      @todo     
      @bug     
      
      @remark   함수 테스트 필요 (테스트 완료표시 ">>")
      
                >>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 
  */
  //  
  //  저작권    에프에이리눅스(주)
  //            외부공개 금지
  //
  //----------------------------------------------------------------------------
  
  #define EMBEDDED_LINUX                                          // 이렇게 처리하지 않으면 EClipse에서 C 영역이 회색 바탕이 됨
  
  #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";
  
  /// @{
  /// @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 );                       /// 문자열 정렬을 위해 크기를 비교한다.
  /// @}
  
  
  
  static void trim( char *str)
  // 설명: 인수로 받은 문자열에서 앞과 뒤의 공백 문자를 제거한다.
  {
      int     sz_str;
      int     ndx;
  
      sz_str = strlen( str);
      for( ndx = sz_str; 0 <= ndx; ndx--)                                         // 문자열 뒤의 화이트 문자를 제거
      {
          if ( ' ' != str[ndx])    break;                                         // 한글이 있을 경우를 생각해서 ' ' 문자를 직접 비교한다.
          str[ndx]   = '\0';
      }
  
      sz_str  = strlen( str);                                                     // 문자열 앞의 화이트 문자를 제거
      for( ndx = 0; ndx < sz_str; ndx++)
      {
          if ( ' ' != str[ndx])                                                   // 한글이 있을 경우를 생각해서 ' ' 문자를 직접 비교한다.
              break;
      }         
      
      memcpy( str, str+ndx, strlen( str));                                        // 회이트 문자가 아닌 부분을 포인터의 시작 위치로 이동
  }
  
  //------------------------------------------------------------------------------
  /** @brief   문자열에서 앞뒤의 특수문자와 공백문자를 제거한다.
      @param   line 문자열 포인터
  *///----------------------------------------------------------------------------
  static void  __trimstr( char *line )
  {
  	int   idx, len;
  	
  	// 뒷쪽 공백문자와 특수문자 제거
  	len = strlen(line);
  	for( idx=len-1; idx>=0; idx-- )
  	{
  		if ( line[idx] > ' ' ) break;
  	}
  	line[idx+1] = '\0';
  	
  	// 앞쪽 공백문자와 특수문자 제거
  	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 );
  	}
  }
  //------------------------------------------------------------------------------
  /** @brief   할당할 문자열의 공간을 계산한다.
      @param   str 추가되는 문자열 포인터
      @return  할당할 문자열의 개수
      @remark  최소 MIN_STR_LEN 바이트이상이며 2의 배수로 증가한다.
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   새로운 문자열 아이템을 생성한다.
      @param   str 추가되는 문자열 포인터
      @return  생성된 문자열 아이템 구조체 포인터
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   문자열 아이템의 문자열을 변경한다.
      @param   sitem 문자열 아이템 구조체의 포인터
      @param   str 변경되는 문자열 포인터
      @return  변경된 아이템구조체 포인터
  *///----------------------------------------------------------------------------
  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;
  	}
  }
  
  
  //------------------------------------------------------------------------------
  /** @brief   tstrlist 객체를 생성한다.
      @return  객체의 포인터
  *///----------------------------------------------------------------------------
  tstrlist* tstrlist_create     ( void )
  {
     tstrlist *that;
     that = ( tstrlist *) malloc( sizeof( tstrlist ) );
     
     that->ftlst = tlist_create();
     
     return that;
  }
  //------------------------------------------------------------------------------
  /** @brief   tstrlist 객체를 소멸시킨다.
      @param   *that 관리 객체의 포인터
  *///----------------------------------------------------------------------------
  void   tstrlist_free       ( tstrlist *that )
  {
      tstrlist_clear( that );
      tlist_free( that->ftlst );
      free( that );
  }
  //------------------------------------------------------------------------------
  /** @brief   모든 아이템을 제거한다.
      @param   that 관리 객체의 포인터
  *///----------------------------------------------------------------------------
  void   tstrlist_clear      ( tstrlist *that )
  {
  	int    loop;
  	void  *ptr;
  	tlist *tlst = that->ftlst;
  	
  	// 문자열 객체를 해제한다.
  	for (loop=0; loop<tlst->fcount; loop++)
  	{
  		ptr = tlist_get( tlst, loop );
  		if (ptr) free( ptr );
  	}
  	
  	tlist_clear( tlst );
  }
  //------------------------------------------------------------------------------
  /** @brief   문자열 아이템을 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 새로이 추가되는 문자열 포인터
      @return  추가된 아이템의 인덱스
  *///----------------------------------------------------------------------------
  int    tstrlist_add        ( tstrlist *that, const char *str )
  {
  	tlist    *tlst = that->ftlst;
  	tstritem *sitem;
  	int       result;
  
  	sitem  = tstrlist_newitem( str );	// 문자열 객체 생성
  	result = tlist_add( tlst, sitem );
  
  	return result;
  }
  //------------------------------------------------------------------------------
  /** @brief   문자열과 사용자 포인터를 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 새로이 추가되는 문자열 포인터
      @param   pdata 사용자 포인터
      @return  추가된 아이템의 인덱스
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   하나의 아이템을 제거한다.
      @param   that 관리 객체의 포인터
      @param   index 제거될 아이템의 인덱스
  *///----------------------------------------------------------------------------
  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 );	
  }
  //------------------------------------------------------------------------------
  /** @brief   인덱스에 해당하는 문자열 포인터를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 문자열 포인터
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   인덱스에 해당하는 사용자 포인터를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 사용자 포인터
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   인덱스에 해당하는 정수형 태그변수를 반환한다.
      @param   that 관리 객체의 포인터
      @param   index 아이템 인덱스
      @return  인덱스에 해당하는 정수형 태그변수
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   2개의 아이템 위치를 교환한다.
      @param   that 관리 객체의 포인터
      @param   index1 교환할 인덱스1
      @param   index2 교환할 인덱스2
  *///----------------------------------------------------------------------------
  void   tstrlist_exchange   ( tstrlist *that, int index1, int index2 )
  {
      tlist    *tlst = that->ftlst;
      
      tlist_exchange( tlst, index1, index2 );
  }
  //------------------------------------------------------------------------------
  /** @brief   문자열이 동일한 인덱스를 구한다.
      @param   that 관리 객체의 포인터
      @param   str  비교 문자열 포인터
      @return  문자열이 해당되는 인덱스, 존재하지 않으면 -1
  *///----------------------------------------------------------------------------
  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;
  }
  //------------------------------------------------------------------------------
  /** @brief   아이템을 특정 위치에 추가한다.
      @param   that 관리 객체의 포인터
      @param   index 추가할 아이템가 들어갈 인덱스
      @param   str  추가할 문자열 포인터
  *///----------------------------------------------------------------------------
  void   tstrlist_insert     ( tstrlist *that, int index, char *str )
  {
      tlist    *tlst = that->ftlst;
      tstritem *sitem;
  	
  	sitem = tstrlist_newitem( str );	// 문자열 객체 생성
  	tlist_insert( tlst, index, sitem );
  }
  //------------------------------------------------------------------------------
  /** @brief   첫번째 문자열 포인터를 돌려준다.
      @param   that 관리 객체의 포인터
      @return  첫번째 문자열 포인터
  *///----------------------------------------------------------------------------
  char  *tstrlist_first      ( tstrlist *that )
  {
      return tstrlist_get_string( that, 0 );
  }
  //------------------------------------------------------------------------------
  /** @brief   마지막 문자열 포인터를 구한다.
      @param   that 관리 객체의 포인터
      @return  마지막 문자열 포인터
  *///----------------------------------------------------------------------------
  char  *tstrlist_last       ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
  
      return tstrlist_get_string( that, tlst->fcount-1 );
  }
  //------------------------------------------------------------------------------
  /** @brief   특정 아이템의 위치(인덱스)를 변경한다.
      @param   that 관리 객체의 포인터
      @param   curindex 변경할 아이템의 인덱스
      @param   newindex 변경될 아이템의 인덱스
  *///----------------------------------------------------------------------------
  void   tstrlist_move       ( tstrlist *that, int curindex, int newindex )
  {
  	tlist    *tlst = that->ftlst;
  	
  	tlist_move( tlst, curindex, newindex );
  }
  //------------------------------------------------------------------------------
  /** @brief   특정아이템의 문자열을 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 문자열이 변경될 인덱스
      @param   str  새로 변경될 문자열
  *///----------------------------------------------------------------------------
  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 );
  	}
  }
  //------------------------------------------------------------------------------
  /** @brief   특정아이템의 사용자 메모리 변수를 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 변경될 아이템 인덱스
      @param   obj   새로 변경될 사용자 포인터
  *///----------------------------------------------------------------------------
  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;
  	}
  }
  //------------------------------------------------------------------------------
  /** @brief   특정아이템의 태그변수를 변경한다.
      @param   that  관리 객체의 포인터
      @param   index 태그가 변경될 인덱스
      @param   tag  새로 변경될 정수형 태그변수
  *///----------------------------------------------------------------------------
  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;
  	}
  }
  //------------------------------------------------------------------------------
  /** @brief   인자로 전해준 동일한 문자열을 찾아 삭제한다.
      @param   that 관리 객체의 포인터
      @param   item 삭제할 아이템의 포인터
      @return  삭제된 아이템의 과거 인덱스
  *///----------------------------------------------------------------------------
  int    tstrlist_remove     ( tstrlist *that, char *str )
  {
      int result;
      
      result = tstrlist_indexof( that, str );
      if( result >= 0 ) tstrlist_delete( that, result );
      return result;
  }
  //------------------------------------------------------------------------------
  /** @brief   메모리 관리를 위해 사용하지 않는 메모리를 반환한다.
      @param   that 관리 객체의 포인터
      @remark  실제 메모리를 반환하지 않는다.
      @todo    메모리를 반환하도록 재작성되어야 한다.
  *///----------------------------------------------------------------------------
  void   tstrlist_pack       ( tstrlist *that )
  {
  	tlist    *tlst = that->ftlst;
  
  	tlist_pack( tlst );
  }
  //------------------------------------------------------------------------------
  /** @brief   아이템의 개수를 얻는다.
      @param   that 관리 객체의 포인터
      @return  아이템의 개수
  *///----------------------------------------------------------------------------
  int    tstrlist_getcount   ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
      
      return tlst->fcount;
  }
  
  //------------------------------------------------------------------------------
  /** @brief   문자열 정렬을 위해 크기를 비교한다.
      @param   astr 비교 포인터
      @param   bstr 비교 포인터
      @return  문자열 비교값
  *///----------------------------------------------------------------------------
  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 );
  }
  //------------------------------------------------------------------------------
  /** @brief   아이템을 사용자 비교함수를 통해 정렬한다.
      @param   that 관리 객체의 포인터
      @param   tstrlistsortcomparefunc 사용자비교 콜백함수이며, int (*func)(const void *, const void *) 형태이다.
  *///----------------------------------------------------------------------------
  void   tstrlist_sort       ( tstrlist *that )
  {
      tlist    *tlst = that->ftlst;
      
      if ( 0 >= tlst->fcount ) return;
      
  	tlist_sort( tlst, tstrlist_sortfunc );
  }
  //------------------------------------------------------------------------------
  /** @brief   인자로 전해준 문자열을 분리하여 아이템으로 추가한다.
      @param   that 관리 객체의 포인터
      @param   str 분리할 문자열
      @return  객체가 관리하는 아이템 개수
      @todo    더블쿼테이션(") 으로 싸여진 문자열 분리가 필요하다.
  *///----------------------------------------------------------------------------
  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);
      }
  
      ndx_buff = 0;                                                               // 버퍼에 문자를 넣을 위치를 0으로 초기화
      for ( ndx_sour = 0; ndx_sour < strlen( str); ndx_sour++)
      {
          if ( '\0' == ch_division)
          {
              switch( str[ndx_sour])
              {
              case '\''   :
              case '\"'   :
                      if ( 0 < ndx_buff)                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
                      {
                          buff[ndx_buff]  = '\0';
                          add_buff_to_list();
                      }
                      ch_division = str[ndx_sour];
                      ndx_buff    = 0;                                            // 버퍼에 새로운 문자열을 담을 수 있도록 버퍼의 위치를 0 으로 초기화
                      break;
              case ' '    :
              case ','    :
              case '
  '   :
              case '\r'   :
                      if ( 0 < ndx_buff)                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
                      {
                          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
          {
              if ( ch_division == str[ndx_sour])                                  // 이전 인용부호의 끝이라면
              {
                  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.");
                  }
              }
          }
      }                
  
      if ( 0 < ndx_buff)                                                          // 이전에 버퍼로 등록된 문자열이 있다면 리스트에 추가
      {
          buff[ndx_buff]  = '\0';
          add_buff_to_list();
      }
  	return tlst->fcount; 
  }
  //------------------------------------------------------------------------------
  /** @brief   텍스트파일에서 라인별로 아이템에 등록한다.
      @param   that 관리 객체의 포인터
      @param   fname 파일이름
      @return  객체가 관리하는 아이템 개수
  *///----------------------------------------------------------------------------
  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; 
  }
  //------------------------------------------------------------------------------
  /** @brief   아이템들을 라인별로 파일로 저장한다.
      @param   that 관리 객체의 포인터
      @param   fname 파일이름
      @return  파일에 저장한 라인수
  *///----------------------------------------------------------------------------
  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;
  }