The lib with which to make LPC1768 a simple HTTP server. This have not yet implemented. fopen() DOESN'T WORK after EthernetInterface::connect() is called as using mbed-os 5.4~. See also https://os.mbed.com/questions/80658/HardFault-occurs-when-fopen-is-called-af/ or https://github.com/ARMmbed/mbed-os/issues/6578 and https://github.com/ARMmbed/mbed-os/issues/6624

Fork of HTTP_SERVER by Akifumi Takahashi

handlers/Filehandler.cpp

Committer:
aktk
Date:
2016-11-28
Revision:
7:184c6f1ace94
Parent:
0:cc483bea4fe3
Child:
10:4a48594c2f44

File content as of revision 7:184c6f1ace94:

#include "FileHandler.h"
#ifndef DEBUG
#define DEBUG
#endif
LocalFileSystem local("local");

FileHandler::FileHandler()
{
    fullpath = NULL;
    filename = NULL;
    suffix = NULL;
    fp = NULL;
    file_size = 0;
}
FileHandler::~FileHandler()
{
    if (fullpath != NULL) free(fullpath);
    if (fp != NULL) fclose(fp);
}

FILE* FileHandler::open
(   const char* arg_filepath,
    const char* arg_mode
)
{
    FILE *tmp;

    printf("\r\n"
           "fp: %d@FileHandler::open\r\n", fp);
    if (fullpath != NULL) free(fullpath);
    fullpath = (char*)malloc(sizeof(char) * (strlen("/local/") + strlen(arg_filepath) + strlen("index.htm") + 1));
    printf("fp: %d@FileHandler::open\r\n", fp);

    //  Path formatting
    if (arg_filepath[0] == '/') {
        sprintf(fullpath, "/local/%s", arg_filepath + 1);
    } else {
        sprintf(fullpath, "/local/%s", arg_filepath);
    }
    //  if the argument has no file name but directory, defalt settiing.
    if (fullpath[strlen(fullpath) - 1] == '/')
        strcat(fullpath, "index.htm");
    //  store the file name part to a pointer
    filename = strrchr(fullpath, '/');
    if(filename != NULL)    filename++; //  remove '/' and just get only the file name.
    //  store the suffix part to a pointer
    suffix = strchr(filename, '.');
    if(suffix   != NULL)    suffix++;   //  remove '.' and just get only the suffix.
#ifdef DEBUG
    printf("full path: %s\r\nfilename: %s\r\nsuffix: %s\r\n", getFullpath(), getFilename(), getSuffix());
#endif
    fp = fopen(fullpath, arg_mode);
#ifdef DEBUG
    printf("file opened@FileHandler::open\r\n");
#endif
    //  mesure file size
    file_size = 0;
    tmp = fp;
    if(tmp != NULL ) {
        printf("\r\nfile content\r\n");
        int ctmp;
        while(1) {
            ctmp = fgetc(tmp);
            if(ctmp != EOF) {
                printf("%c", ctmp);
                file_size++;
            } else {
                printf("[EOF]\r\n");
                break;
            }
        }
        printf("file size: %d\r\n", file_size);
        if(fseek(tmp, 0L, SEEK_SET) != 0) {
            printf("fseek failed\r\n");
        }
    } else {
        file_size = 0;
    }

    return fp;
}
int FileHandler::close()
{
    int tmp;

    if(fp != NULL) {
        tmp = fclose(fp);
        fp = NULL;
        return tmp;
    } else {
        return 1;
    }
}

int FileHandler::getc()
{
    int tmp = fgetc(fp);

    if(0x20 < tmp && tmp < 0x7e)
        printf("%c", tmp);
    else if (tmp == '\r')
        printf("\r");
    else if (tmp == '\n')
        printf("\n");
    else
        printf("@");

    return tmp;//fgetc(fp);
}
bool FileHandler::arrival()
{
    return (bool)fp;
}
bool FileHandler::atEOF()
{
    return (bool)feof(fp);
}
bool FileHandler::hasError()
{
    return (bool)ferror(fp);
}
char *FileHandler::getFullpath()
{
    return fullpath;
}
char *FileHandler::getFilename()
{
    return filename;
}
char *FileHandler::getSuffix()
{
    return suffix;
}
int FileHandler::getFileSize()
{
    return file_size;
}