• File list/scan loadable module

    From Nightfox@VERT/DIGDIST to Digital Man on Fri Feb 24 19:31:37 2023
    Hi DM,ããI started testing the file list/scan loadable module feature. One thing I noticed is that when I call bbs.list_files() or bbs.list_file_info(), the same types of parameters are passed in argv:ãargv[0]: Directory internal codeãargv[1]: 0ãargv[2]: FilespecããIn both cases (bbs.list_files() or bbs.list_file_info()), the 2nd argument is 0. Both FL_NONE and FL_INFO are defined as 0, so I'm wondering how to differentiate between the two? I'm not sure how to determine whether the user wants to just list the files with the given filespec (FL_NONE) or display extended information (FI_INFO).ããNightfoxãã---ã þ Synchronet þ Digital Distortion: digitaldistortionbbs.comã
  • From Digital Man@VERT to Nightfox on Fri Feb 24 20:29:07 2023
    Re: File list/scan loadable moduleã By: Nightfox to Digital Man on Fri Feb 24 2023 07:31 pmãã > Hi DM,ã >ã > I started testing the file list/scan loadable module feature. One thing Iã > noticed is that when I call bbs.list_files() or bbs.list_file_info(), theã > same types of parameters are passed in argv:ã > argv[0]: Directory internal codeã > argv[1]: 0ã > argv[2]: Filespecã >ã > In both cases (bbs.list_files() or bbs.list_file_info()), the 2nd argumentã > is 0. Both FL_NONE and FL_INFO are defined as 0, so I'm wondering how toã > differentiate between the two?ããYou mean FI_INFO (not FL_INFO). The "FI" stands for file info, so only use those values in a fileinfo loadable module.ããFor a listfiles module, 0 means FL_NONE. "FL" steads for file list. Get it?ãã > I'm not sure how to determine whether theã > user wants to just list the files with the given filespec (FL_NONE) orã > display extended information (FI_INFO).ããAre you trying to use the same script to implement both module types? If so,ãyou'd need to pass an extra parameter (that you define) to determine whether it's a file "list" or an "info" request.ã-- ã digital man (rob)ããSynchronet "Real Fact" #29:ãRob Swindell first called BBSes (at 300bps) with an Apple II computer in 1982ãNorco, CA WX: 49.6øF, 86.0% humidity, 8 mph NE wind, 0.20 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Nightfox@VERT/DIGDIST to Digital Man on Fri Feb 24 20:49:42 2023
    Re: File list/scan loadable moduleã By: Nightfox to Digital Man on Fri Feb 24 2023 07:31 pmããAnother thing I noticed - Synchronet doesn't seem to be passing the additional bool argument to indicate the user is scanning all directories. I think that would be the case for something like the following?ããbbs.scan_dirs(FL_ULTIME, true);ããWith that, my script is only getting 2 command-line arguments, both of which are FL_ULTIME.ããNightfoxãã---ã þ Synchronet þ Digital Distortion: digitaldistortionbbs.comã
  • From Nightfox@VERT/DIGDIST to Digital Man on Fri Feb 24 20:52:05 2023
    Re: File list/scan loadable moduleã By: Digital Man to Nightfox on Fri Feb 24 2023 08:29 pmãã >> I started testing the file list/scan loadable module feature. Oneã >> thing I noticed is that when I call bbs.list_files() orã >> bbs.list_file_info(), the same types of parameters are passed in argv:ã >> argv[0]: Directory internal codeã >> argv[1]: 0ã >> argv[2]: Filespecãã >> In both cases (bbs.list_files() or bbs.list_file_info()), the 2ndã >> argument is 0. Both FL_NONE and FL_INFO are defined as 0, so I'mã >> wondering how to differentiate between the two?ãã DM> You mean FI_INFO (not FL_INFO). The "FI" stands for file info, so only useã DM> those values in a fileinfo loadable module.ãã DM> For a listfiles module, 0 means FL_NONE. "FL" steads for file list. Getã DM> it? ããYes, that was a typo.ãã DM> Are you trying to use the same script to implement both module types? Ifã DM> so, you'd need to pass an extra parameter (that you define) to determineã DM> whether it's a file "list" or an "info" request.ããAh, I see. I was thinking the same script could do both, but for now I might just implement my file lister for the FL_ options.ããNightfoxãã---ã þ Synchronet þ Digital Distortion: digitaldistortionbbs.comã
  • From Nightfox@VERT/DIGDIST to Digital Man on Fri Feb 24 21:03:42 2023
    Re: File list/scan loadable moduleã By: Nightfox to Digital Man on Fri Feb 24 2023 08:49 pmãã Ni> Another thing I noticed - Synchronet doesn't seem to be passing theã Ni> additional bool argument to indicate the user is scanning all directories.ã Ni> I think that would be the case for something like the following?ãã Ni> bbs.scan_dirs(FL_ULTIME, true);ããMaybe I was wrong about what I was seeing. In that case, it seems the first argument is the bool (0/1) and the 2nd argument is one of the FL_ values - Is that correct?ããNightfoxãã---ã þ Synchronet þ Digital Distortion: digitaldistortionbbs.comã
  • From Digital Man@VERT to Nightfox on Fri Feb 24 21:12:59 2023
    Re: File list/scan loadable moduleã By: Nightfox to Digital Man on Fri Feb 24 2023 09:03 pmãã > Re: File list/scan loadable moduleã > By: Nightfox to Digital Man on Fri Feb 24 2023 08:49 pmã >ã > Ni> Another thing I noticed - Synchronet doesn't seem to be passing theã > Ni> additional bool argument to indicate the user is scanning allã > Ni> directories. I think that would be the case for something like theã > Ni> following?ã >ã > Ni> bbs.scan_dirs(FL_ULTIME, true);ã >ã > Maybe I was wrong about what I was seeing. In that case, it seems the firstã > argument is the bool (0/1) and the 2nd argument is one of the FL_ values -ã > Is that correct?ããCorrect. Same pattern as the scan subs loadable module.ã-- ã digital man (rob)ããSynchronet/BBS Terminology Definition #27:ãDTE = Data Terminal EquipmentãNorco, CA WX: 50.0øF, 84.0% humidity, 5 mph N wind, 0.19 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Digital Man@VERT to Nightfox on Fri Feb 24 21:22:30 2023
    Re: File list/scan loadable moduleã By: Nightfox to Digital Man on Fri Feb 24 2023 08:52 pmãã > Re: File list/scan loadable moduleã > By: Digital Man to Nightfox on Fri Feb 24 2023 08:29 pmã >ã > >> I started testing the file list/scan loadable module feature. Oneã > >> thing I noticed is that when I call bbs.list_files() orã > >> bbs.list_file_info(), the same types of parameters are passed in argv:ã > >> argv[0]: Directory internal codeã > >> argv[1]: 0ã > >> argv[2]: Filespecã >ã > >> In both cases (bbs.list_files() or bbs.list_file_info()), the 2ndã > >> argument is 0. Both FL_NONE and FL_INFO are defined as 0, so I'mã > >> wondering how to differentiate between the two?ã >ã > DM> You mean FI_INFO (not FL_INFO). The "FI" stands for file info, so onlyã > DM> use those values in a fileinfo loadable module.ã >ã > DM> For a listfiles module, 0 means FL_NONE. "FL" steads for file list. Getã > DM> it?ã >ã > Yes, that was a typo.ã >ã > DM> Are you trying to use the same script to implement both module types?ã > DM> If so, you'd need to pass an extra parameter (that you define) toã > DM> determine whether it's a file "list" or an "info" request.ã >ã > Ah, I see. I was thinking the same script could do both, but for now Iã > might just implement my file lister for the FL_ options.ããThe same script *could* do both (though that's probably not the tack I'd take), but if you did, you'd need to pass an extra parameter, like I said, to indicate in what context the script was being called.ã-- ã digital man (rob)ããBreaking Bad quote #6:ãMy Name is ASAC Schrader - and you can go fuck yourself. - Hank SchraderãNorco, CA WX: 49.9øF, 84.0% humidity, 0 mph ENE wind, 0.19 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã