#include #include #include #include #include #include #include #include #include #include int initLogger(char *directoryPath) { //VARIABLES struct stat st; struct dirent *entry; time_t timeL = time(NULL); struct tm tm = *localtime(&timeL); int buffer = 1; int returning; char *filePath = malloc(strlen(directoryPath) + strlen(LOG_FORMAT) + 1); char *dateBuffer = malloc(strlen("yyyy-mm-dd") + 17); //TODO: MAKE THIS VARIABLE; FIND OUT WHY TF YOU NEED 17 MORE BYTES DIR *dir; sprintf(dateBuffer, "%04d-%02d-%02d", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday); //CREATE directoryPath DIRECTORY IF IT DOESN'T EXISTS ALREADY if (stat(directoryPath, &st) == -1) { mkdir(directoryPath, 0700); } //COUNT HOW MANY LOGS WERE GENERATED THIS DAY dir = opendir(directoryPath); while ((entry = readdir(dir)) != NULL) { if (entry -> d_type == DT_REG) { if (strncmp(dateBuffer, entry -> d_name, strlen(dateBuffer)) == 0) buffer++; } } if (buffer > MAX_USAGE) return INVALID_FILE; //MAX_USAGE WAS REACHED sprintf(filePath, LOG_FORMATTING, directoryPath, tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, buffer); //GENERATE LOG-NAME returning = open(filePath, O_WRONLY | O_APPEND | O_CREAT, 0644); //DEALLOCATION free(filePath); free(dateBuffer); closedir(dir); return returning; } void writeLog(int loggerFile, char *logMessage) { //VARIABLES char *buffer = malloc(strlen(WRITE_FORMAT) + strlen(logMessage) + 2); time_t timeL = time(NULL); struct tm tm = *localtime(&timeL); sprintf(buffer, WRITE_FORMATTING, tm.tm_hour, tm.tm_min, tm.tm_sec, logMessage); //LOAD MESSAGE write(loggerFile, buffer, strlen(buffer)); //WRITE (YAY) //DEALLOCATION free(buffer); }