Define_start is the section that is run once when a processor first comes online. If you prefer, you could write a function that does the set_length_array and then does the find_string command. This might also be better if you are assigning values to the array using strings and there is a chance that the processor will set the length shorter than the max length.
Define_start is the section that is run once when a processor first comes online. If you prefer, you could write a function that does the set_length_array and then does the find_string command. This might also be better if you are assigning values to the array using strings and there is a chance that the processor will set the length shorter than the max length.
Jeff
I haven't found the need to use set_length_array at all. The array length never changes so I guess I don't understand the need.
Paul
I think the problem may stem from my use of a stack_var in this situation. I have not tried it with a volatile variable that is initialized at definition, but that should probably fix the problem.
I haven't found the need to use set_length_array at all. The array length never changes so I guess I don't understand the need.
Paul
I'm not sure I do either. For some reason I was convinced that there was a problem with initializing character arrays that were populated with zeroes, but today I can't find a problem.
There are two different values for char arrays. There is a length_array and a max_length_array. If you have a variable declared as char sMyString[100], but do not assign anything to it, the length_array = 0 and the max_length_array = 100. If you the do something like sMyString = "'123456789'", the length_array = 9 and max_length_array =100. find_string in the test I ran was using length_array, not max_length_array for it's parsing. As I recall, if you do something like sMyString[50] = '1', the length_array does not change. If I have a minute, I will see if I can write a few tests to clarify all of this. I believe it might also be different for stack_vars vs global variables.
As you can see, you have to do a set_length_array() for find_string to function properly. The only reason it is functioning properly on the persistent variable is because I have run this a couple times and restarted the processor.
P.S.
for display purposes, on the entire array contents, I replaced all of the 0 values with @s. This allows you to see that stack_var arrays are not initialized and could throw false positives if you are not careful.
On global char arrays:
Line1(16:47:39.609)::******Global PERSISTENT char array:Line2(16:47:39.609):: $$$ Before changes
Line3(16:47:39.609)::# length_array:25 length_string:25Line4(16:47:39.609)::# max_length_array:100 max_length_string:100Line5(16:47:39.609)::# Contents of incoming array:Line6(16:47:39.609)::# String AssignedLine7(16:47:39.609):: FIND_STRING is reporting:20Line8(16:47:39.609)::# Line9(16:47:39.609)::-------------------------Line10(16:47:39.609)::# Line11(16:47:39.609)::# Contents of entire array:Line12(16:47:39.625)::# String Assigned@@@@1@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line13(16:47:39.625):: FIND_STRING is reporting:20Line14(16:47:39.625)::# Line15(16:47:39.625)::-------------------------------------------Line16(16:47:39.625):: $$$ After insert into indexed position
Line17(16:47:39.625)::# length_array:25 length_string:25Line18(16:47:39.625)::# max_length_array:100 max_length_string:100Line19(16:47:39.625)::# Contents of incoming array:Line20(16:47:39.625)::# String AssignedLine21(16:47:39.625):: FIND_STRING is reporting:20Line22(16:47:39.625)::# Line23(16:47:39.625)::-------------------------Line24(16:47:39.625)::# Line25(16:47:39.625)::# Contents of entire array:Line26(16:47:39.625)::# String Assigned@@@@1@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line27(16:47:39.625):: FIND_STRING is reporting:20Line28(16:47:39.625)::# Line29(16:47:39.625)::-------------------------------------------Line30(16:47:39.625):: $$$ After assigning a stringLine31(16:47:39.625)::# length_array:15 length_string:15Line32(16:47:39.640)::# max_length_array:100 max_length_string:100Line33(16:47:39.640)::# Contents of incoming array:Line34(16:47:39.640)::# String AssignedLine35(16:47:39.640):: FIND_STRING is reporting:0Line36(16:47:39.640)::# Line37(16:47:39.640)::-------------------------Line38(16:47:39.640)::# Line39(16:47:39.640)::# Contents of entire array:Line40(16:47:39.640)::# String Assigned@@@@1@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line41(16:47:39.640):: FIND_STRING is reporting:20Line42(16:47:39.640)::# Line43(16:47:39.640)::-------------------------------------------Line44(16:47:39.640):: $$$ After setting array length
Line45(16:47:39.640)::# length_array:25 length_string:25Line46(16:47:39.656)::# max_length_array:100 max_length_string:100Line47(16:47:39.656)::# Contents of incoming array:Line48(16:47:39.656)::# String AssignedLine49(16:47:39.656):: FIND_STRING is reporting:20Line50(16:47:39.656)::# Line51(16:47:39.656)::-------------------------Line52(16:47:39.656)::# Line53(16:47:39.656)::# Contents of entire array:Line54(16:47:39.656)::# String Assigned@@@@1@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line55(16:47:39.656):: FIND_STRING is reporting:20Line56(16:47:39.656)::# Line57(16:47:39.656)::##########################################
on Non-Volatile char arrays:
Line58(16:47:39.656)::******Global NON_VOLATILE char array:Line59(16:47:39.656):: $$$ Before changes
Line60(16:47:39.656)::# length_array:0 length_string:0Line61(16:47:39.656)::# max_length_array:100 max_length_string:100Line62(16:47:39.656)::# Contents of incoming array:Line63(16:47:39.671)::# Line64(16:47:39.671):: FIND_STRING is reporting:0Line65(16:47:39.671)::# Line66(16:47:39.671)::-------------------------Line67(16:47:39.671)::# Line68(16:47:39.671)::# Contents of entire array:Line69(16:47:39.671)::# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line70(16:47:39.671):: FIND_STRING is reporting:0Line71(16:47:39.671)::# Line72(16:47:39.671)::-------------------------------------------Line73(16:47:39.671):: $$$ After insert into indexed position
Line74(16:47:39.671)::# length_array:0 length_string:0Line75(16:47:39.671)::# max_length_array:100 max_length_string:100Line76(16:47:39.671)::# Contents of incoming array:Line77(16:47:39.687)::# Line78(16:47:39.687):: FIND_STRING is reporting:0Line79(16:47:39.687)::# Line80(16:47:39.687)::-------------------------Line81(16:47:39.687)::# Line82(16:47:39.687)::# Contents of entire array:Line83(16:47:39.687)::# @@@@@@@@@@@@@@@@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line84(16:47:39.687):: FIND_STRING is reporting:20Line85(16:47:39.687)::# Line86(16:47:39.687)::-------------------------------------------Line87(16:47:39.687):: $$$ After assigning a stringLine88(16:47:39.687)::# length_array:15 length_string:15Line89(16:47:39.687)::# max_length_array:100 max_length_string:100Line90(16:47:39.687)::# Contents of incoming array:Line91(16:47:39.687)::# String AssignedLine92(16:47:39.703):: FIND_STRING is reporting:0Line93(16:47:39.703)::# Line94(16:47:39.703)::-------------------------Line95(16:47:39.703)::# Line96(16:47:39.703)::# Contents of entire array:Line97(16:47:39.703)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line98(16:47:39.703):: FIND_STRING is reporting:20Line99(16:47:39.703)::# Line100(16:47:39.703)::-------------------------------------------Line101(16:47:39.703):: $$$ After setting array length
Line102(16:47:39.703)::# length_array:25 length_string:25Line103(16:47:39.703)::# max_length_array:100 max_length_string:100Line104(16:47:39.703)::# Contents of incoming array:Line105(16:47:39.703)::# String AssignedLine106(16:47:39.718):: FIND_STRING is reporting:20Line107(16:47:39.718)::# Line108(16:47:39.718)::-------------------------Line109(16:47:39.718)::# Line110(16:47:39.718)::# Contents of entire array:Line111(16:47:39.718)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line112(16:47:39.718):: FIND_STRING is reporting:20Line113(16:47:39.718)::# Line114(16:47:39.718)::##########################################
on Global Volatile char arrays:
Line115(16:47:39.718)::******Global VOLATILE char array:Line116(16:47:39.718):: $$$ Before changes
Line117(16:47:39.718)::# length_array:0 length_string:0Line118(16:47:39.718)::# max_length_array:100 max_length_string:100Line119(16:47:39.718)::# Contents of incoming array:Line120(16:47:39.718)::# Line121(16:47:39.718):: FIND_STRING is reporting:0Line122(16:47:39.734)::# Line123(16:47:39.734)::-------------------------Line124(16:47:39.734)::# Line125(16:47:39.734)::# Contents of entire array:Line126(16:47:39.734)::# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line127(16:47:39.734):: FIND_STRING is reporting:0Line128(16:47:39.734)::# Line129(16:47:39.734)::-------------------------------------------Line130(16:47:39.734):: $$$ After insert into indexed position
Line131(16:47:39.734)::# length_array:0 length_string:0Line132(16:47:39.734)::# max_length_array:100 max_length_string:100Line133(16:47:39.734)::# Contents of incoming array:Line134(16:47:39.734)::# Line135(16:47:39.734):: FIND_STRING is reporting:0Line136(16:47:39.734)::# Line137(16:47:39.750)::-------------------------Line138(16:47:39.750)::# Line139(16:47:39.750)::# Contents of entire array:Line140(16:47:39.750)::# @@@@@@@@@@@@@@@@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line141(16:47:39.750):: FIND_STRING is reporting:20Line142(16:47:39.750)::# Line143(16:47:39.750)::-------------------------------------------Line144(16:47:39.750):: $$$ After assigning a stringLine145(16:47:39.750)::# length_array:15 length_string:15Line146(16:47:39.750)::# max_length_array:100 max_length_string:100Line147(16:47:39.750)::# Contents of incoming array:Line148(16:47:39.750)::# String AssignedLine149(16:47:39.750):: FIND_STRING is reporting:0Line150(16:47:39.765)::# Line151(16:47:39.765)::-------------------------Line152(16:47:39.765)::# Line153(16:47:39.765)::# Contents of entire array:Line154(16:47:39.765)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line155(16:47:39.765):: FIND_STRING is reporting:20Line156(16:47:39.765)::# Line157(16:47:39.765)::-------------------------------------------Line158(16:47:39.765):: $$$ After setting array length
Line159(16:47:39.765)::# length_array:25 length_string:25Line160(16:47:39.765)::# max_length_array:100 max_length_string:100Line161(16:47:39.765)::# Contents of incoming array:Line162(16:47:39.765)::# String AssignedLine163(16:47:39.765):: FIND_STRING is reporting:20Line164(16:47:39.765)::# Line165(16:47:39.765)::-------------------------Line166(16:47:39.765)::# Line167(16:47:39.781)::# Contents of entire array:Line168(16:47:39.781)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line169(16:47:39.781):: FIND_STRING is reporting:20Line170(16:47:39.781)::# Line171(16:47:39.781)::##########################################
on Local_vars:
Line172(16:47:39.781)::******LOCAL_VAR char array:Line173(16:47:39.781):: $$$ Before changes
Line174(16:47:39.781)::# length_array:0 length_string:0Line175(16:47:39.781)::# max_length_array:100 max_length_string:100Line176(16:47:39.781)::# Contents of incoming array:Line177(16:47:39.781)::# Line178(16:47:39.781):: FIND_STRING is reporting:0Line179(16:47:39.781)::# Line180(16:47:39.781)::-------------------------Line181(16:47:39.781)::# Line182(16:47:39.796)::# Contents of entire array:Line183(16:47:39.796)::# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line184(16:47:39.796):: FIND_STRING is reporting:0Line185(16:47:39.796)::# Line186(16:47:39.796)::-------------------------------------------Line187(16:47:39.796):: $$$ After insert into indexed position
Line188(16:47:39.796)::# length_array:0 length_string:0Line189(16:47:39.796)::# max_length_array:100 max_length_string:100Line190(16:47:39.796)::# Contents of incoming array:Line191(16:47:39.796)::# Line192(16:47:39.796):: FIND_STRING is reporting:0Line193(16:47:39.796)::# Line194(16:47:39.796)::-------------------------Line195(16:47:39.796)::# Line196(16:47:39.796)::# Contents of entire array:Line197(16:47:39.812)::# @@@@@@@@@@@@@@@@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line198(16:47:39.812):: FIND_STRING is reporting:20Line199(16:47:39.812)::# Line200(16:47:39.812)::-------------------------------------------Line201(16:47:39.812):: $$$ After assigning a stringLine202(16:47:39.812)::# length_array:15 length_string:15Line203(16:47:39.812)::# max_length_array:100 max_length_string:100Line204(16:47:39.812)::# Contents of incoming array:Line205(16:47:39.812)::# String AssignedLine206(16:47:39.812):: FIND_STRING is reporting:0Line207(16:47:39.812)::# Line208(16:47:39.812)::-------------------------Line209(16:47:39.812)::# Line210(16:47:39.812)::# Contents of entire array:Line211(16:47:39.812)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line212(16:47:39.828):: FIND_STRING is reporting:20Line213(16:47:39.828)::# Line214(16:47:39.828)::-------------------------------------------Line215(16:47:39.828):: $$$ After setting array length
Line216(16:47:39.828)::# length_array:25 length_string:25Line217(16:47:39.828)::# max_length_array:100 max_length_string:100Line218(16:47:39.828)::# Contents of incoming array:Line219(16:47:39.828)::# String AssignedLine220(16:47:39.828):: FIND_STRING is reporting:20Line221(16:47:39.828)::# Line222(16:47:39.828)::-------------------------Line223(16:47:39.828)::# Line224(16:47:39.828)::# Contents of entire array:Line225(16:47:39.828)::# String Assigned@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Line226(16:47:39.843):: FIND_STRING is reporting:20Line227(16:47:39.843)::# Line228(16:47:39.843)::##########################################
on Stack_var char arrays:
Line229(16:47:39.843)::******STACK_VAR char array:Line230(16:47:39.843):: $$$ Before changes
Line231(16:47:39.843)::# length_array:0 length_string:0Line232(16:47:39.843)::# max_length_array:100 max_length_string:100Line233(16:47:39.843)::# Contents of incoming array:Line234(16:47:39.843)::# Line235(16:47:39.843):: FIND_STRING is reporting:0Line236(16:47:39.843)::# Line237(16:47:39.843)::-------------------------Line238(16:47:39.843)::# Line239(16:47:39.843)::# Contents of entire array:Line240(16:47:39.843)::# @$05$022$01$01$0A$07$EF$10@$0A$05$80@Friday, Jan 10, 2031@0.0.315@NSX Application@AMX Corp.@$02$04$0A$D37$04@@@g@@@g@@@g@@@g@@@g@@@gLine241(16:47:39.843):: FIND_STRING is reporting:28Line242(16:47:39.859)::# Line243(16:47:39.859)::-------------------------------------------Line244(16:47:39.859):: $$$ After insert into indexed position
Line245(16:47:39.859)::# length_array:0 length_string:0Line246(16:47:39.859)::# max_length_array:100 max_length_string:100Line247(16:47:39.859)::# Contents of incoming array:Line248(16:47:39.859)::# Line249(16:47:39.859):: FIND_STRING is reporting:0Line250(16:47:39.859)::# Line251(16:47:39.859)::-------------------------Line252(16:47:39.859)::# Line253(16:47:39.859)::# Contents of entire array:Line254(16:47:39.859)::# @$05$022$01$01$0A$07$EF$10@$0A$05$80@Frid1y, Jan 10, 2031@0.0.315@NSX Application@AMX Corp.@$02$04$0A$D37$04@@@g@@@g@@@g@@@g@@@g@@@gLine255(16:47:39.859):: FIND_STRING is reporting:20Line256(16:47:39.859)::# Line257(16:47:39.875)::-------------------------------------------Line258(16:47:39.875):: $$$ After assigning a stringLine259(16:47:39.875)::# length_array:15 length_string:15Line260(16:47:39.875)::# max_length_array:100 max_length_string:100Line261(16:47:39.875)::# Contents of incoming array:Line262(16:47:39.875)::# String AssignedLine263(16:47:39.875):: FIND_STRING is reporting:0Line264(16:47:39.875)::# Line265(16:47:39.875)::-------------------------Line266(16:47:39.875)::# Line267(16:47:39.875)::# Contents of entire array:Line268(16:47:39.875)::# String AssignedFrid1y, Jan 10, 2031@0.0.315@NSX Application@AMX Corp.@$02$04$0A$D37$04@@@g@@@g@@@g@@@g@@@g@@@gLine269(16:47:39.875):: FIND_STRING is reporting:20Line270(16:47:39.875)::# Line271(16:47:39.875)::-------------------------------------------Line272(16:47:39.890):: $$$ After setting array length
Line273(16:47:39.890)::# length_array:25 length_string:25Line274(16:47:39.890)::# max_length_array:100 max_length_string:100Line275(16:47:39.890)::# Contents of incoming array:Line276(16:47:39.890)::# String AssignedFrid1y, JaLine277(16:47:39.890):: FIND_STRING is reporting:20Line278(16:47:39.890)::# Line279(16:47:39.890)::-------------------------Line280(16:47:39.890)::# Line281(16:47:39.890)::# Contents of entire array:Line282(16:47:39.890)::# String AssignedFrid1y, Jan 10, 2031@0.0.315@NSX Application@AMX Corp.@$02$04$0A$D37$04@@@g@@@g@@@g@@@g@@@g@@@gLine283(16:47:39.890):: FIND_STRING is reporting:20Line284(16:47:39.890)::# Line285(16:47:39.890)::##########################################
Comments
Jeff
What's "define_start"?
Jeff
I haven't found the need to use set_length_array at all. The array length never changes so I guess I don't understand the need.
Paul
Jeff
I'm not sure I do either. For some reason I was convinced that there was a problem with initializing character arrays that were populated with zeroes, but today I can't find a problem.
Jeff
As you can see, you have to do a set_length_array() for find_string to function properly. The only reason it is functioning properly on the persistent variable is because I have run this a couple times and restarted the processor.
P.S.
for display purposes, on the entire array contents, I replaced all of the 0 values with @s. This allows you to see that stack_var arrays are not initialized and could throw false positives if you are not careful.
On global char arrays:
on Non-Volatile char arrays:
on Global Volatile char arrays:
on Local_vars:
on Stack_var char arrays:
Jeff