summaryrefslogtreecommitdiff
path: root/testautomation/global/tools/includes/optional/t_listfuncs.inc
blob: 2e9b6e20e1a34ace9b5c2517e40b991d7b78e1a1 (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
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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
'encoding UTF-8  Do not remove or change this line!
'**************************************************************************
' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
'
' Copyright 2000, 2010 Oracle and/or its affiliates.
'
' OpenOffice.org - a multi-platform office productivity suite
'
' This file is part of OpenOffice.org.
'
' OpenOffice.org is free software: you can redistribute it and/or modify
' it under the terms of the GNU Lesser General Public License version 3
' only, as published by the Free Software Foundation.
'
' OpenOffice.org 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 Lesser General Public License version 3 for more details
' (a copy is included in the LICENSE file that accompanied this code).
'
' You should have received a copy of the GNU Lesser General Public License
' version 3 along with OpenOffice.org.  If not, see
' <http://www.openoffice.org/license.html>
' for a copy of the LGPLv3 License.
'
'/******************************************************************************
'*
'* owner : joerg.skottke@sun.com
'*
'* short description : Replacements for routines in t_lists.inc adds some
'*
'*******************************************************************************
'*
' #1 hListTestUpperBoundary ' Tests upper boundary of arrays
' #1 hListTestLowerBoundary ' Tests lower boundary of arrays
' #1 hListDelete            ' Deletes one item from a list by index
' #1 hListAppend            ' Append an item to a list
' #1 hManageComparisionList ' quick way to compare/create reference lists
' #1 hListFileGetSize       ' find out how big an array has to be to hold the file
' #1 hListCompare           ' compare two lists
' #1 hListPrependString     ' Insert a string infront of each item in a list
' #1 hListAppendList        ' Append one list to another
' #1 hCountMatchesInList    ' Return count of occurrences of a string within a list
'*
'\******************************************************************************

' Note: These functions fix some minor bugs and introduce strict boundary
'       checking for the arrays we work with. The arrays must be compatible
'       to those from the "standard" list-functions. 
' Why:  Two reasons:
'
'       1) When working with listboxes it might happen that they are empty (bug)
'          or contain more items than expected. In this case the tests would 
'          usually break. This is not desired as many testcases do not rely 
'          on the content of the listboxes. 
'          
'       2) This way eases the trouble of debugging huge amounts of arrays
'          like those in the installation test or anywhere else where we work 
'          with reference lists. This is a coding help.

'*******************************************************************************

function hListTestUpperBoundary( aList() as string ) as boolean

    '///<h3>Verify that ListCount does not exceed upper boundary</h3>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>
    '///<u>Input</u>:
    '///<ol>
    '///+<li>List (string)</li>
    '///</ol>
    '///<u>Returns</u>:
    '///<ol>
    '///+<li>Errorstatus (boolean)</li>
    '///<ul>
    '///+<li>TRUE: Array is ok</li>
    '///+<li>FALSE: Array logic has errors</li>
    '///</ul>
    '///</ol>
    '///<u>Description</u>:
    '///<ul>

    
    const CFN = "hListTestUpperBoundary::"
    
    dim iUpperBoundary as integer ' size according to UBOUND
    dim iListSize as integer  ' size according to ListCount
    
    dim brc as boolean
        brc = true
    
    '///+<li>Determine the size of the array</li>
    iUpperBoundary = UBOUND( aList() )
    
    '///+<li>Determine the <i>claimed</i> size of the array</li>
    iListSize      = ListCount( aList() )
    
    '///+<li>Verify that val(array(0)) <= array-size</li>
    if ( iListSize > iUpperBoundary ) then
        warnlog ( CFN & "List points beyound upper array boundary:" )
        printlog( CFN & "ListCount: " & iListSize  )
        printlog( CFN & "UBOUND...: " & iUpperBoundary )
        brc = false
    endif
    
    hListTestUpperBoundary() = brc
    '///</ul>

end function

'*******************************************************************************

function hListTestLowerBoundary( aList() as string ) as boolean

    '///<h3>Verify that the lower boundaries of an array are ok</h3>
    '///<i>Prerequisite: Array compatible with those from t_lists.inc</i>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>   
    '///<u>Input</u>:
    '///<ol>
    '///+<li>List (string)</li>
    '///</ol>
    '///<u>Returns</u>:
    '///<ol>
    '///+<li>Errorstatus (boolean)</li>
    '///<ul>
    '///+<li>TRUE: Array is ok</li>
    '///+<li>FALSE: Array logic has errors</li>
    '///</ul>
    '///</ol>
    '///<u>Description</u>:
    '///<ul>    
    
    const CFN = "hListTestLowerBoundary::"
    
    dim iLowerBoundary as integer ' size according to LBOUND
    dim iListSize as integer  ' size according to ListCount
    
    dim brc as boolean
        brc = true
        
    iLowerBoundary = LBOUND( aList() )
    iListSize      = ListCount( aList() )   
    
    '///+<li>Verify that ubound for the array returns 0 (lower boundary)</li>
    if ( iLowerBoundary <> 0 ) then
        warnlog ( CFN & "Boundary of the array must be 0." )
        printlog( CFN & "Lower boundary is: " & iLowerBoundary )
        brc = false
    endif
    
    '///+<li>Verify that val(array(0)) &gt; 0</li>
    if ( iListSize < 0 ) then
        warnlog ( CFN & "Defined Listsize (ListCount) may never be negative" )
        printlog( CFN & "ListCount is: " & iListSize )
        brc = false
    endif
   
    hListTestLowerBoundary() = brc
    '///</ul>
    
end function

'*******************************************************************************

function hListDelete( aList() as string, iItemToDelete as integer ) as boolean

    '///<h3>Delete one item from a list specified by index</h3>
    '///<i>Prerequisite: Array compatible with those from t_lists.inc</i><br>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>    
    '///<u>Review the code, it has many unused variables</u>
    '///<ul>

    const CFN = "hListDelete::"

    dim iArraySize as integer   ' The size of the array, must be large enough
    dim iListSizeOld as integer ' The size of the list before deletion
    dim iListSizeNew as integer ' The size of the list after deletion
    dim iCurrentItem as integer ' Increment-Variable
    dim iOffset as integer      ' First item to be "moved down" by index
    dim sItemToDelete as string ' The string that will be deleted
    dim brc as boolean          ' preliminary return value
    
    '///+<li>test array integrity: upper boundary</li>
    brc = hListTestUpperBoundary( alist() )
    if ( not brc ) then
        hListDelete() = brc
        exit function
    endif
    
    '///+<li>test array integrity: lower boundary</li>
    brc = hListTestLowerBoundary( alist() )
    if ( not brc ) then
        hListDelete() = brc
        exit function
    endif    
    
    '///+<li>Get some data from the arrays to work with.</li>
    iArraySize    = ubound( aList() )
    iListSizeOld  = ListCount( aList() )
    iListSizeNew  = iListSizeOld - 1
    sItemToDelete = aList( iItemToDelete )
    iOffset       = iItemToDelete + 1
    
    ' some output (may be removed as soon the function is thoroughly tested)
    'printlog( CFN & "Removing: " & sItemToDelete & " at pos " & iItemToDelete )
    
    ' Move all items down by one in the list beginning with the item after
    ' iItemToDelete
    '///+<li>Move all items one up</li>
    for iCurrentItem = iOffset to iListSizeOld
        aList( iCurrentItem - 1 ) = aList( iCurrentItem )
    next iCurrentItem
    
    ' Delete the last entry, it is no longer used and it is duplicate to the item
    ' at iListSizeOld-1 (iListSizeNew)
    '///+<li>Delete the last item from the list</li>
    aList( iListSizeOld ) = ""
    
    '///+<li>Set the new listsize (one smaller than the original list)</li>
    aList( 0 ) = iListSizeNew
    '///</ul>
    
end function

'*******************************************************************************

function hListAppend( sNewString as string, aTargetList() as string ) as integer

    '///<h3>Append an item to an existing list</h3>
    '///<i>Prerequisite: Array compatible with those from t_lists.inc</i>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>    

    const CFN = "hListAppend::"

    dim iCurrentListSize as integer
    dim iNewListSize as integer
    dim iArraySize as integer
    dim irc as integer

    iCurrentListSize = val( aTargetList( 0 ) )
    iNewListSize = iCurrentListSize + 1
    iArraySize = ubound( aTargetList() )
    
    if ( iNewListSize > iArraySize ) then
        warnlog ( CFN & "Cannot append, array too small" )
        printlog( CFN & "Array-Size.....: " & iArraySize )
        printlog( CFN & "Requested index: " & iNewListSize )
        irc = -1
    else
        aTargetList( iNewListSize ) = sNewString
        aTargetList( 0 ) = iNewListSize
        irc = iNewListSize
    endif
    
    hListAppend() = irc
    
end function

'*******************************************************************************

function hManageComparisionList( sFileIn as string, sFileOut as string, sListOut() as string ) as integer

    '///<h3>Function to create or compare a list to a reference</h3>
    '///<i>Prerequisite: List of items to compare, input- and outputfilename</i><br>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>    
    '///<u>BEWARE: This is a core function and used by many tests!<br>
    '///Please read the inline documentation for further reference</u><br>
    '///Function parameters:
    '///<ol>
    '///+<li>sFileIn    = The file that contains the reference data</li>
    '///+<li>sFileOut   = The file new lists are written to in case of an error</li>
    '///+<li>sListOut() = The list containing the newly retrieved data.</li>
    '///</ol>
    '///Description:
    '///<ul>

    const CFN = "hManageComparisionList::"
    
    '///+<li>The name of the input file may not be empty</li>
    if ( sFileIn = "" ) then
        warnlog( CFN & "Invalid parameter: Input filename is empty string" )
        hManageComparisionList() = 2
        exit function
    endif
    
    '///+<li>The name of the output-file may not be empty</li>
    if ( sFileOut = "" ) then
        warnlog( CFN & "Invalid parameter: Output filename is empty string" )
        hManageComparisionList() = 3
        exit function
    endif    
    
    '///+<li>the list should not claim to be empty / be empty</li>
    if ( listcount( sListOut() ) = 0 ) then
        qaerrorlog( CFN & "Invalid parameter: Array claims to be empty" )
        hManageComparisionList() = 4
        exit function
    endif   
    
    ' hListFileGetSize will return -1 if the list does not exist or the number
    ' of lines in the reference file plus additional 10 lines.
    '///+<li>Verify that the reference file exists and is non-empty</li>
    dim iFileSize as integer
        iFileSize = hListFileGetSize( sFileIn ) 
    dim brc as boolean
        brc = false
    
    '///+<li>Read the reference list and compare</li>
    if ( iFileSize > -1 ) then
    
        dim aReferenceList( iFileSize ) as string
        printlog( CFN & "Reading: " & sFileIn )
        ' disabled hGetDataFileSection because some lists contain a #
        ' (hash) as value which is identified as comment by the function.
        ' Fixing this for hGetDataFileSection() would break compatibility
        ' to other functions both in framework and global module
        'hgetDataFileSection( sFileIn , aReferenceList() , "" , "" , "" )
        listread( aReferenceList(), sFileIn, "utf8" )
        brc = hListCompare( sListOut() , aReferenceList() )
        
    endif
    
    ' A this point there are three possible states:
    ' a) the reference list does not exist
    ' b) the comparision failed
    ' c) the comparision succeeded
    ' only if hListCompare() returns TRUE the testrun is successful.
    ' This means that on any error, the ref-list will be written so it can be
    ' directly reviewed/compared to the "faulty" list without having to run this
    ' test again (after deleting the ref-file)
    '///+<li>In case the lists are not identical, write the new one to the local work directory</li>
    if ( brc ) then
        printlog( CFN & "Comparision succeeded" )
        hManageComparisionList() = 0    
    else
        printlog( CFN & "Writing: " & sFileOut )
        listwrite( sListOut(), sFileOut, "UTF8" )
        qaerrorlog ( CFN & "Reference file review required:" )
        printlog( "" )
        printlog( CFN & "Two possible reasons:" )
        printlog( CFN & "1) The reference file does not exist at all" )
        printlog( CFN & "2) Reference and actual UI-Content do not match." )
        printlog( CFN & "Location: " & sFileOut )
        printlog( CFN & "Target..: " & sFileIn  )
        printlog( CFn & "Verify the content and copy the file to <Target>" )
        printlog( "" )
        printlog( CFN & "Comparision failed" )
        hManageComparisionList() = 1
    endif
    
    '///+<li>Return 0 if the lists are identical, 1 if not and 2-4 on any other error</li>
    '///</ul>

end function

'*******************************************************************************

function hListFileGetSize( sFileIn as string ) as integer

    '///<h3>Get the number of lines from a file</h3>
    '///<i>Prerequisites: Path to an existing plain text file</i>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>    
    '///<ul>

    const CFN = "hListFileGetSize::"
    const I_EXTRA_SIZE = 10
    
    '///+<li>Verify that the filename is non-empty</li>
    if ( sFileIn = "" ) then
        warnlog( CFN & "Invalid parameter: Filename is empty string" )
        hListFileGetSize() = -1
        exit function
    endif
    
    '///+<li>Verify that the file exists</li>
    if ( dir( sFileIn ) = "" ) then
        warnlog( CFN & "File not found: " & sFileIn ) 
        hListFileGetSize() = -1
        exit function
    endif
    
    dim iFile as integer
    dim sLine as string
    dim iLineCount as integer
        iLineCount = 0
    
    '///+<li>Open the file (standard BASIC calls)</li>
    iFile = freefile
    open sFileIn for input as iFile
    
    '///+<li>Read the number of lines from the file</li>
    while( not eof( iFile ) ) 
    
        line input #iFile, sLine
        iLineCount = iLineCount + 1
        
    wend
    
    '///+<li>Close the file</li>
    close #iFile 
    
    '///+<li>Return the number of lines read or -1 on error</li>
    hListFileGetSize() = iLineCount + I_EXTRA_SIZE
    '///</ul>
    
end function

'*******************************************************************************

function hListCompare( aListOne() as String, aListTwo() as String ) as boolean

    const CFN = "hListcompare::"

    '///<h3>Compare two lists with each other, where <b>list TWO</b> is the reference</h3>
    '///<i>Prerequisites: Two lists compatible with listfunctions</i><br>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br>    
    '///<u>Duplicates gCompare2Lists but does not print warnlogs, evaluate returncode instead</u>
    '///<ul>

    dim aOneOnlyList( ubound( aListOne() ) ) as string
    dim aTwoOnlyList( ubound( aListTwo() ) ) as string
    
    dim iListOneIndex as integer
    dim iListTwoIndex as integer
    
    dim iTwoOnlyListSize as integer
    dim iListOneSize as integer
    
    dim bFound as boolean
    dim brc as boolean     ' returncode: true only if lists are identical
        brc = true
    
    '///+<li>Create a copy of list two so we do not change the original list</li>
    ListCopy( aListTwo() , aTwoOnlyList() )

    iTwoOnlyListSize = ListCount( aTwoOnlyList() )
    iListOneSize = ListCount( aListOne() )

    
    '///+<li>Step through each item in list one</li>
    for iListOneIndex = 1 to iListOneSize
    
        bFound = false
    
        '///+<li>Compare it to each item in list two</li>
        for iListTwoIndex = 1 to iTwoOnlyListSize
        
            '///+<li>If the entries match, delete it from the TwoOnly list</li>
            if ( aListOne( iListOneIndex ) = aTwoOnlyList( iListTwoIndex ) ) then
            
                bFound = true
                aTwoOnlyList( iListTwoIndex ) = aTwoOnlyList( iTwoOnlyListSize )
                ' this breaks compatibility to listfunctions because the actual
                ' number of items is out of sync with listcount
                iTwoOnlyListSize  = iTwoOnlyListSize -1                 
                exit for
                
            end if
            
        next iListTwoIndex
        
        '///+<li>If there is no match, the item exists in list one only -> copy</li>
        if ( not bFound ) then
            hListAppend( aListOne( iListOneIndex ), aOneOnlyList() )
        end if
        
    next iListOneIndex
    
    ' restore compatibility to listfunctions so hListPrint() will not fail
    aTwoOnlyList( 0 ) = iTwoOnlyListSize
    
    '///+<li>List all items that exist in List One only</li>
    if ( ListCount( aOneOnlyList() ) > 0 ) then
        printlog( CFN & "Objects have been added to the list" )
        hListPrint( aOneOnlyList() , "Items found in list ONE only (NEW)" )
        brc = false
    end if
        
    '///+<li>List all items that exist in List Two only</li>
    if ( ListCount( aTwoOnlyList() ) > 0 ) then
        printlog( CFN & "Objects have been removed from the list" )
        hListPrint( aTwoOnlyList() , "Items found in list TWO only (MISSING)" )
        brc = false
    end if

    hListCompare() = brc
    '///</ul>
    
end function

'*******************************************************************************

function hListPrependString( aList() as string, cString as string ) as boolean

    '///<h3>Insert a string infront of each item in a list</h3>
    '///<i>Prerequisites: A list compatible with listfunctions</i><br>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br><br>
    '///<i>Note that the function alters the input list. If the list contains 
    '///+ strings of the type &quot;MyString&quot; the items will be changed to
    '///+ read &quot;Some Text : MyString&quot;</i><br>
    '///<u>Input</u>:
    '///<ol>
    '///+<li>List (string)</li>
    '///+<li>A text to be inserted infront of every item in the list</li>
    '///</ol>
    '///<u>Returns</u>:
    '///<ol>
    '///+<li>Errorcondition (boolean)</li>
    '///<ul>
    '///+<li>The returnvalue is currently undefined</li>
    '///</ul>
    '///</ol>
    '///<u>Description</u>:
    '///<ul>
    
    const CFN = "hListPrependString::"
    dim iCurrentItem as integer
    
    '///+<li>Cycle through the list and insert a text infront of each item</li>
    for iCurrentItem = 1 to listcount( aList() )
    
        aList( iCurrentItem ) = cString & " : " & aList( iCurrentItem )
        
    next iCurrentItem
    
    hListPrependString() = true
    '///</ul>
    
end function

'*******************************************************************************

function hListAppendList( aBaseList() as string, aListToAppend() as string ) as integer

    '///<h3>Append one list to another</h3>
    '///<i>Prerequisites: A list compatible with listfunctions</i><br>
    '///<i>About listfunctions: All listfunctions rely on a special type of
    '///+ array. This can be string arrays and - in some cases - numeric
    '///+ arrays. What makes the arrays unique is that the first item which
    '///+ has the index 0 contains the number of items in the list to be used,
    '///+ anything that is stored beyond this number is ignored. This has three 
    '///+ consequences: 1) all listfunctions that alter an array must update
    '///+ the index stored in array(0) and 2) it is possible that the index
    '///+ point beyond ubound of the array which will most likely cause a
    '///+ runtime error. 3) Means that arrays may only have an upper boundary
    '///+ declared, all loops must start with index array(1) and must end with
    '///+ index array(val( array(0))</i><br><br>
    '///<u>Input</u>:
    '///<ol>
    '///+<li>Target list (string)</li>
    '///+<li>Source list (string)</li>
    '///</ol>
    '///<u>Returns</u>:
    '///<ol>
    '///+<li>Listsize (integer)</li>
    '///<ul>
    '///+<li>The size of the sum of both lists</li>
    '///+<li>0 in case of error</li>
    '///</ul>
    '///</ol>
    '///<u>Description</u>:
    '///<ul>
    
    const CFN = "hListAppendList::"
    
    dim iCurrentItem as integer
    dim iNewSize as integer
    
    '///+<li>Do some basic boundary checking</li>
    if ( ubound( aBaseList() ) < _
        ( listcount( aBaseList ) + listcount( aListToAppend() ) ) ) then
        warnlog( CFN & "Base Array too small" )
        iNewSize = 0
    else
    
        '///+<li>Append the list</li>
        for iCurrentItem = 1 to listcount( aListToAppend() ) 
  
            hListAppend( aBaseList() , aListToAppend( iCurrentItem ) )
            
        next iCurrentItem
        
        iNewSize = listcount( aBaseList() ) 
        
    endif
    '///</ul>

end function


'*******************************************************************************

function hCountMatchesInList( acItemList() as string, cSearchTerm as string ) as integer


    '///<h3>Find out how many times a string is found in a list</h3>

    '///<u>Parameter(s):</u><br>
    '///<ol>

    '///+<li>List to be searched (String)</li>
    '///<ul>
    '///+<li>The list may not be empty</li>
    '///+<li>Search begins at index 1</li>
    '///</ul>

    '///+<li>Expression to search for (String)</li>
    '///<ul>
    '///+<li>Only exact matches are counted</li>
    '///</ul>

    '///</ol>


    '///<u>Returns:</u><br>
    '///<ol>
    '///+<li>Number of hits (Integer)</li>
    '///<ul>
    '///+<li>0: if no matches were found</li>
    '///+<li>-1: Any error</li>
    '///</ul>
    '///</ol>

    const CFN = "hCountMatchesInList::"
    printlog( CFN & "Enter" )
    
    dim iHitCount as integer
    dim iItemCount as integer
    dim iCurrentItem as integer

    '///<u>Description:</u>
    '///<ul>
    '///+<li>Retrieve the number of items in the list</li>
    iItemCount = ListCount( acItemList() )
    
    '///+<li>Walk through the list and count the hits</li>
    printlog( CFN & "Begin with term: " & cSearchTerm )
    for iCurrentItem = 1 to iItemCount
    
        printlog( acItemList( iCurrentItem ) )
    
        if ( instr( acItemList( iCurrentItem ), cSearchTerm ) > 0 ) then
            iHitCount = iHitCount + 1
        endif
        
    next iCurrentItem
    printlog( CFN & "End" )
   '///</ul>

    printlog( CFN & "Exit with result: " & iHitCount )

    hCountMatchesInList() = iHitCount

end function