123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- #define BUILDING_OPENDOORS
- #include <stdio.h>
- #include <ctype.h>
- #include <string.h>
- #include "OpenDoor.h"
- #include "ODCore.h"
- #include "ODGen.h"
- #include "ODCom.h"
- #include "ODPlat.h"
- #include "ODKrnl.h"
- #include "ODUtil.h"
- #define WILDCARDS 0x01
- #define EXTENSION 0x02
- #define FILENAME 0x04
- #define DIRECTORY 0x08
- #define DRIVE 0x10
- static void ODListFilenameMerge(char *pszEntirePath, const char *pszDrive,
- const char *pszDir, const char *pszName, const char *pszExtension);
- static char *ODListGetFirstWord(char *pszInStr, char *pszOutStr);
- static char *ODListGetRemainingWords(char *pszInStr);
- static INT ODListFilenameSplit(const char *pszEntirePath, char *pszDrive,
- char *pszDir, char *pszName, char *pszExtension);
- ODAPIDEF BOOL ODCALL od_list_files(char *pszFileSpec)
- {
- BYTE btLineCount = 2;
- BOOL bPausing;
- static char szLine[513];
- static char szFilename[80];
- static char szDrive[3];
- static char szDir[70];
- static char szTemp1[9];
- static char szTemp2[5];
- static char szBaseName[9];
- static char szExtension[5];
- static char szDirectory[100];
- INT nFilenameInfo;
- FILE *pfFilesBBS;
- static char *pszCurrent;
- BOOL bIsDir;
- BOOL bUseNextLine = TRUE;
- tODDirHandle hDir;
- tODDirEntry DirEntry;
-
- TRACE(TRACE_API, "od_list_files()");
-
- if(!bODInitialized) od_init();
- OD_API_ENTRY();
-
- bPausing = od_control.od_page_pausing;
- if(od_control.od_extended_info) bPausing = od_control.user_attribute & 0x04;
-
- if(pszFileSpec == NULL)
- {
- strcpy(szODWorkString, ".");
- strcpy(szDirectory, "."DIRSEP_STR);
- }
- else if(*pszFileSpec == '\0')
- {
- strcpy(szODWorkString, ".");
- strcpy(szDirectory, "."DIRSEP_STR);
- }
- else
- {
- strcpy(szODWorkString, pszFileSpec);
- strcpy(szDirectory, pszFileSpec);
- if(szODWorkString[strlen(szODWorkString) - 1] == DIRSEP)
- {
- szODWorkString[strlen(szODWorkString) - 1] = '\0';
- }
- }
-
- if(ODDirOpen(szODWorkString, DIR_ATTRIB_ARCH | DIR_ATTRIB_RDONLY
- | DIR_ATTRIB_DIREC, &hDir) != kODRCSuccess)
- {
- od_control.od_error = ERR_FILEOPEN;
- OD_API_EXIT();
- return(FALSE);
- }
- if(ODDirRead(hDir, &DirEntry) != kODRCSuccess)
- {
- ODDirClose(hDir);
- od_control.od_error = ERR_FILEOPEN;
- OD_API_EXIT();
- return(FALSE);
- }
- ODDirClose(hDir);
-
- if(DirEntry.wAttributes & DIR_ATTRIB_DIREC)
- {
-
- bIsDir = TRUE;
- ODMakeFilename(szODWorkString, szODWorkString, "FILES.BBS",
- sizeof(szODWorkString));
- if((pfFilesBBS = fopen(szODWorkString, "r")) == NULL)
- {
- od_control.od_error = ERR_FILEOPEN;
- OD_API_EXIT();
- return(FALSE);
- }
- }
-
- else
- {
- bIsDir = FALSE;
- if((pfFilesBBS = fopen(szODWorkString,"r")) == NULL)
- {
- od_control.od_error = ERR_FILEOPEN;
- OD_API_EXIT();
- return(FALSE);
- }
- }
-
- chLastControlKey = 0;
-
- for(;;)
- {
- if(fgets(szLine, 512, pfFilesBBS) == NULL) break;
- if(!bUseNextLine)
- {
- if(szLine[strlen(szLine) - 1] == '\n')
- {
- bUseNextLine = TRUE;
- }
- continue;
- }
- if(szLine[strlen(szLine) - 1] == '\n')
- {
- szLine[strlen(szLine) - 1] = '\0';
- }
- else
- {
- bUseNextLine = FALSE;
- }
- if(szLine[strlen(szLine) - 1] == '\r')
- {
- szLine[strlen(szLine) - 1] = '\0';
- }
- if(chLastControlKey != 0)
- {
- switch(chLastControlKey)
- {
- case 's':
- if(od_control.od_list_stop)
- {
- if(od_control.baud)
- {
- ODComClearOutbound(hSerialPort);
- }
- od_clear_keybuffer();
- fclose(pfFilesBBS);
- OD_API_EXIT();
- return(TRUE);
- }
- break;
- case 'p':
- if(od_control.od_list_pause)
- {
- od_clear_keybuffer();
- od_get_key(TRUE);
- }
- }
- chLastControlKey = 0;
- }
-
- if(szLine[0] == ' ' || strlen(szLine) == 0)
- {
-
- od_set_attrib(od_control.od_list_title_col);
- od_disp_str(szLine);
- od_disp_str("\n\r");
- ++btLineCount;
- }
-
- else
- {
-
- ODListGetFirstWord(szLine, szFilename);
-
- nFilenameInfo = ODListFilenameSplit(szFilename, szDrive, szDir,
- szBaseName, szExtension);
- if(!((nFilenameInfo & DRIVE) || (nFilenameInfo & DIRECTORY)))
- {
- if(bIsDir)
- {
- ODMakeFilename(szDirectory, szDirectory, szFilename,
- sizeof(szDirectory));
- strcpy(szFilename, szDirectory);
- }
- else
- {
- ODListFilenameSplit(szDirectory, szDrive, szDir, szTemp1,
- szTemp2);
- ODListFilenameMerge(szFilename, szDrive, szDir, szBaseName,
- szExtension);
- }
- }
-
- if(ODDirOpen(szFilename, DIR_ATTRIB_ARCH | DIR_ATTRIB_RDONLY, &hDir)
- == kODRCSuccess)
- {
-
- while(ODDirRead(hDir, &DirEntry) == kODRCSuccess)
- {
- od_set_attrib(od_control.od_list_name_col);
- od_printf("%-12.12s ", DirEntry.szFileName);
- od_set_attrib(od_control.od_list_size_col);
- od_printf("%-6ld ", DirEntry.dwFileSize);
- od_set_attrib(od_control.od_list_comment_col);
- pszCurrent = ODListGetRemainingWords(szLine);
- if(strlen(pszCurrent) <= 56)
- {
- od_disp_str(pszCurrent);
- od_disp_str("\n\r");
- }
- else
- {
- od_printf("%-56.56s\n\r", pszCurrent);
- }
- ++btLineCount;
- }
- ODDirClose(hDir);
- }
-
- else
- {
- ODListFilenameMerge(szFilename, "", "", szBaseName, szExtension);
- od_set_attrib(od_control.od_list_name_col);
- od_printf("%-12.12s ", szFilename);
- od_set_attrib(od_control.od_list_offline_col);
- od_disp_str(od_control.od_offline);
- od_set_attrib(od_control.od_list_comment_col);
- od_printf("%-56.56s\n\r", ODListGetRemainingWords(szLine));
- ++btLineCount;
- }
- }
-
- if(btLineCount >= od_control.user_screen_length && bPausing)
- {
-
- if(ODPagePrompt(&bPausing))
- {
- fclose(pfFilesBBS);
- OD_API_EXIT();
- return(TRUE);
- }
-
- btLineCount = 2;
- }
- }
-
- fclose(pfFilesBBS);
-
- OD_API_EXIT();
- return(TRUE);
- }
- static void ODListFilenameMerge(char *pszEntirePath, const char *pszDrive,
- const char *pszDir, const char *pszName, const char *pszExtension)
- {
- if(pszEntirePath == NULL) return;
- pszEntirePath[0] = '\0';
- if(pszDrive != NULL)
- {
- strcpy(pszEntirePath, pszDrive);
- }
- if(pszDir != NULL)
- {
- strcat(pszEntirePath, pszDir);
- }
- if(pszName != NULL)
- {
- strcat(pszEntirePath,pszName);
- }
- if(pszExtension != NULL)
- {
- strcat(pszEntirePath,pszExtension);
- }
- }
- static INT ODListFilenameSplit(const char *pszEntirePath, char *pszDrive,
- char *pszDir, char *pszName, char *pszExtension)
- {
- char *pchCurrentPos;
- char *pchStart;
- BYTE btSize;
- INT nToReturn;
- ASSERT(pszEntirePath != NULL);
- ASSERT(pszDrive != NULL);
- ASSERT(pszDir != NULL);
- ASSERT(pszName != NULL);
- ASSERT(pszExtension != NULL);
- pchStart = (char *)pszEntirePath;
- nToReturn = 0;
- if((pchCurrentPos = strrchr(pchStart,':')) == NULL)
- {
- pszDrive[0] = '\0';
- }
- else
- {
- btSize = (int)(pchCurrentPos - pchStart) + 1;
- if(btSize > 2) btSize = 2;
- strncpy(pszDrive, pchStart, btSize);
- pszDrive[btSize] = '\0';
- pchStart = pchCurrentPos + 1;
- nToReturn |= DRIVE;
- }
- if((pchCurrentPos = strrchr(pchStart, DIRSEP))==NULL)
- {
- pszDir[0] = '\0';
- }
- else
- {
- btSize = (int)(pchCurrentPos - pchStart) + 1;
- strncpy(pszDir,pchStart,btSize);
- pszDir[btSize] = '\0';
- pchStart = pchCurrentPos + 1;
- nToReturn |= DIRECTORY;
- }
- if(strchr(pchStart,'*') != NULL || strchr(pchStart, '?') != NULL)
- {
- nToReturn |= WILDCARDS;
- }
- if((pchCurrentPos = strrchr(pchStart, '.')) == NULL)
- {
- if(pchStart =='\0')
- {
- pszExtension[0] = '\0';
- pszName[0] = '\0';
- }
- else
- {
- pszExtension[0] = '\0';
- btSize = strlen(pchStart);
- if (btSize > 8) btSize = 0;
- strncpy(pszName, pchStart, btSize);
- pszName[btSize] = '\0';
- nToReturn |= FILENAME;
- }
- }
- else
- {
- nToReturn |= FILENAME;
- nToReturn |= EXTENSION;
- btSize = (int)(pchCurrentPos - pchStart);
- if(btSize > 8) btSize = 8;
- strncpy(pszName, pchStart, btSize);
- pszName[btSize] = '\0';
- btSize = strlen(pchCurrentPos);
- if(btSize > 4) btSize = 4;
- strncpy(pszExtension, pchCurrentPos, btSize);
- pszExtension[btSize]='\0';
- }
- return(nToReturn);
- }
- static char *ODListGetFirstWord(char *pszInStr, char *pszOutStr)
- {
- char *pchOut = (char *)pszOutStr;
- ASSERT(pszInStr != NULL);
- ASSERT(pszOutStr != NULL);
- while(*pszInStr && *pszInStr != ' ')
- {
- *pchOut++ = *pszInStr++;
- }
- *pchOut = '\0';
- return(pszOutStr);
- }
- static char *ODListGetRemainingWords(char *pszInStr)
- {
- char *pchStartOfRemaining = (char *)pszInStr;
-
- while(*pchStartOfRemaining && *pchStartOfRemaining != ' ')
- {
- ++pchStartOfRemaining;
- }
-
- while(*pchStartOfRemaining && *pchStartOfRemaining == ' ')
- {
- ++pchStartOfRemaining;
- }
-
- return((char *)pchStartOfRemaining);
- }
|