• ptridx in msg_area.grp_list.sub_list

    From deon@VERT/ALTERANT to Digital Man on Tuesday, December 03, 2024 13:26:28
    Hey DM,

    Is ptridx static throughout the life of a sub?

    I assuming this is a unique ID for each sub that doesnt change (unless the sub is deleted/recreated). IE: Its not affected by peer subs in the same message area that get added/removed?


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From Digital Man@VERT to deon on Monday, December 02, 2024 20:07:51
    Re: ptridx in msg_area.grp_list.sub_list
    By: deon to Digital Man on Tue Dec 03 2024 01:26 pm

    Hey DM,

    Is ptridx static throughout the life of a sub?

    I assuming this is a unique ID for each sub that doesnt change (unless the sub is deleted/recreated). IE: Its not affected by peer subs in the same message area that get added/removed?

    Correct.

    But note: the pointer index is hardly used now in Synchronet. We moved the users' new-msg-scan configs/ptrs from the old .ixb files to .subs (.ini) files 6 years ago.

    The only place their used any more is data/qnet/*.ptr files.
    --
    digital man (rob)

    Synchronet "Real Fact" #81:
    Vertrauen has had the FidoNet node number 1:103/705 since 1992
    Norco, CA WX: 60.0øF, 50.0% humidity, 1 mph NNW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From deon@VERT/ALTERANT to Digital Man on Tuesday, December 03, 2024 16:11:29
    Re: ptridx in msg_area.grp_list.sub_list
    By: Digital Man to deon on Mon Dec 02 2024 08:07 pm

    Is ptridx static throughout the life of a sub?
    Correct.

    But note: the pointer index is hardly used now in Synchronet. We moved the users' new-msg-scan configs/ptrs from the old .ixb files to .subs (.ini) files 6 years ago.

    Thanks.

    I'm not using it to determine when mail was last read (and what mail is new) - I'm using it to query details of a particular sub via msg_area.grp_list.sub_list. I want to be sure that sub "x" is the same sub (x) as the last time I queried it (which might be a minute ago, a day ago, a year ago) - even if other subs (in the same grp) have been added/deleted/edited since I last queried it.


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From Digital Man@VERT to deon on Monday, December 02, 2024 23:29:12
    Re: ptridx in msg_area.grp_list.sub_list
    By: deon to Digital Man on Tue Dec 03 2024 04:11 pm

    I'm not using it to determine when mail was last read (and what mail is new) - I'm using it to query details of a particular sub via msg_area.grp_list.sub_list. I want to be sure that sub "x" is the same sub (x) as the last time I queried it (which might be a minute ago, a day ago, a year ago) - even if other subs (in the same grp) have been added/deleted/edited since I last queried it.

    The best way to uniquely identify a sub-board is via its internal code. Then can also reference a sub quickly/easily via msg_area.sub[internal_code].
    --
    digital man (rob)

    Rush quote #82:
    The clouds prepare for battle in the dark and brooding silence
    Norco, CA WX: 58.6øF, 50.0% humidity, 0 mph WNW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From deon@VERT/ALTERANT to Digital Man on Tuesday, December 03, 2024 21:32:43
    Re: ptridx in msg_area.grp_list.sub_list
    By: Digital Man to deon on Mon Dec 02 2024 11:29 pm

    Howdy,

    The best way to uniquely identify a sub-board is via its internal code. Then can also reference a sub quickly/easily via msg_area.sub[internal_code].

    Yeah, that's not helping me with what I'm wanting. internal_code's can be changed, which would throw off what I'm trying to do.

    Sorry, you've given me other answers to my question, so I want to confirm - and I'll create an example.

    Lets say I have Sub Board "foo" (internal code GRP-FOO), which in scfg you edit that sub board, under "Advanced Options", its states "Point File Index" and a number, eg: 23.

    This number 23 corresponds to a JS object call to msg_area.grp_list[x].sub_list[y].ptridx with a value of 23. ("y" is not necessary 23), that is this Sub Board - correct?

    So "foo" will always have ptridx = 23 until it is deleted - correct? Nothing else will result in that value being changed?

    If I was to go through all the results of msg_area.grp_list[x].sub_list - only 1 will have a value of ptridx=23, which is this sub board?

    I see you are planning other things with (other?) instances of ptridx - are you planing on getting rid of this value in the sub board config too?

    Thanks...


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From Digital Man@VERT to deon on Tuesday, December 03, 2024 09:30:30
    Re: ptridx in msg_area.grp_list.sub_list
    By: deon to Digital Man on Tue Dec 03 2024 09:32 pm

    Re: ptridx in msg_area.grp_list.sub_list
    By: Digital Man to deon on Mon Dec 02 2024 11:29 pm

    Howdy,

    The best way to uniquely identify a sub-board is via its internal code. Then can also reference a sub quickly/easily via msg_area.sub[internal_code].

    Yeah, that's not helping me with what I'm wanting. internal_code's can be changed, which would throw off what I'm trying to do.

    Technically, pointer file indexes can be changed (in SCFG) too. Changing a sub's internal code (once the sub has messages, is in use) is not normally recommended, but I don't have the "Danger!" warnings in SCFG like I do for the pointer file index.

    Sorry, you've given me other answers to my question, so I want to confirm - and I'll create an example.

    Lets say I have Sub Board "foo" (internal code GRP-FOO), which in scfg you edit that sub board, under "Advanced Options", its states "Point File Index" and a number, eg: 23.

    This number 23 corresponds to a JS object call to msg_area.grp_list[x].sub_list[y].ptridx with a value of 23. ("y" is not necessary 23), that is this Sub Board - correct?

    Correct.

    So "foo" will always have ptridx = 23 until it is deleted - correct?

    Correct.

    Nothing else will result in that value being changed?

    Not automatically, no, but there is that SCFG options... :-)

    If I was to go through all the results of msg_area.grp_list[x].sub_list - only 1 will have a value of ptridx=23, which is this sub board?

    Correct.

    I see you are planning other things with (other?) instances of ptridx - are you planing on getting rid of this value in the sub board config too?

    SBBS only uses the sub ptridx for one use case currently, and that use case is on the chopping block (issue #832). I can leave the property/config option if there are other uses for sub's ptridx however. But I still think the sub's internal code is the best "unique identifier" for a sub-board.
    --
    digital man (rob)

    This Is Spinal Tap quote #17:
    David St. Hubbins: It's such a fine line between stupid, and uh... and clever. Norco, CA WX: 58.3øF, 51.0% humidity, 0 mph WSW wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Nightfox@VERT/DIGDIST to Digital Man on Tuesday, December 03, 2024 09:58:53
    Re: ptridx in msg_area.grp_list.sub_list
    By: Digital Man to deon on Tue Dec 03 2024 09:30 am

    SBBS only uses the sub ptridx for one use case currently, and that use case is on the chopping block (issue #832). I can leave the property/config option if there are other uses for sub's ptridx however. But I still think the sub's internal code is the best "unique identifier" for a sub-board.

    Yeah, I don't think I've ever used the ptridx myself. I often use the internal code (which can be used with msg_area.sub), or sometimes an index into msg_area.grp_list.sub_list (and generally, the index into that array is a local variable in my script).

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From deon@VERT/ALTERANT to Digital Man on Wednesday, December 04, 2024 07:25:45
    Re: ptridx in msg_area.grp_list.sub_list
    By: Digital Man to deon on Tue Dec 03 2024 09:30 am

    Hey DM,

    Technically, pointer file indexes can be changed (in SCFG) too. Changing a sub's internal code (once the sub has messages, is in use) is not normally recommended, but I don't have the "Danger!" warnings in SCFG like I do for the pointer file index.

    Yeah, that's why I was liking using that value - its the one place that value can be changed, and it has a Danger! message, so its a big "think about what you are doing moment" before you change it.

    Nothing else will result in that value being changed?

    Not automatically, no, but there is that SCFG options... :-)

    Got it, thank you.

    SBBS only uses the sub ptridx for one use case currently, and that use case is on the chopping block (issue #832). I can leave the property/config option if there are other uses for sub's ptridx however. But I still think the sub's internal code is the best "unique identifier" for a sub-board.

    OK, thanks.

    What I dont like about the "internal code", is it can be changed in two places - in the group and the sub, and there is no "think about what you are doing" warning.

    I know these values shouldnt change often, but somebody might want to change them for cosmetic reasons (among other reasons) and mess "other" things up as a result.

    Appreciate your reply :)


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From Digital Man@VERT to deon on Tuesday, December 03, 2024 13:46:34
    Re: ptridx in msg_area.grp_list.sub_list
    By: deon to Digital Man on Wed Dec 04 2024 07:25 am

    What I dont like about the "internal code", is it can be changed in two places - in the group and the sub, and there is no "think about what you are doing" warning.

    I know these values shouldnt change often, but somebody might want to change them for cosmetic reasons (among other reasons) and mess "other" things up as a result.

    If a sysop does change the internal code (either by changing the group prefix for the sub suffix), then everything that relates to that sub will also be "reset". I should add some warning dialogs about this in SCFG.

    Appreciate your reply :)

    Of course! :-)
    --
    digital man (rob)

    Breaking Bad quote #26:
    Your commercials suck ass. I've seen better acting in an epileptic whorehouse. Norco, CA WX: 70.9øF, 28.0% humidity, 0 mph W wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net