You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
configreader/configmodel.c

562 lines
13 KiB

#include "configmodel.h"
#include "containers/linearray.h"
#include "containers/sectionarray.h"
#include <proto/exec.h>
#include <proto/dos.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
STATIC VOID downcaseString(STRPTR string);
struct Section
{
CONST_STRPTR primary;
CONST_STRPTR secondary;
LineArray lines;
BOOL lastLineWasEmpty;
};
enum VariableType
{
TypeBool=0,
TypeInteger=1,
TypeString=2,
};
struct Variable
{
enum VariableType type;
CONST_STRPTR key;
CONST_STRPTR normalizedKey;
struct
{
CONST_STRPTR stringValue;
BOOL boolValue;
LONG longValue;
} value;
};
struct Line
{
STRPTR rawText;
struct Variable* variable;
struct Section* section;
};
// ---------------------------------------------------------------------------------------
// - LINE --------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
LINEPTR LineNew(CONST_STRPTR buffer)
{
struct Line* result = NULL;
if( buffer != 0 )
{
result = AllocVec(sizeof(struct Line), MEMF_CLEAR);
result->rawText = AllocVec(strlen(buffer)+1, MEMF_CLEAR);
CopyMem(buffer, result->rawText, strlen(buffer));
}
return result;
}
STATIC VOID lineDumpRecreate(LINEPTR abstractLine);
VOID LineDump(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
if( line->rawText != NULL )
{
Printf("%s", line->rawText);
}
else
{
lineDumpRecreate(line);
}
}
}
STATIC VOID lineDumpRecreate(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
if( line->variable == NULL && line->section == NULL )
{
// blank
Printf("# blank line\n");
}
else if( line->variable == NULL && line->section != NULL )
{
// section
struct Section* section = (struct Section*)LineGetSection(abstractLine);
CONST_STRPTR sectionText = SectionSerialize(section);
Printf(sectionText);
FreeVec((STRPTR)sectionText);
}
else
{
struct Variable* var = (struct Variable*)LineGetVariable(abstractLine);
CONST_STRPTR varText = VariableSerialize(var);
Printf(varText);
FreeVec((STRPTR)varText);
}
}
}
VOID LineSetSection(LINEPTR abstractLine, SECTIONPTR abstractSection)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
// we dont own the section
line->section = abstractSection;
}
}
SECTIONPTR LineGetSection(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
return line->section;
}
return NULL;
}
// first time through we need to preserve rawText
VOID LineSetInitialVariable(LINEPTR abstractLine, VARIABLEPTR abstractVariable)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
// we take ownership of the variable
if( line->variable != NULL )
{
VariableFree(line->variable);
}
line->variable = abstractVariable;
}
}
// any further change to the variable means we wipe the raw text
VOID LineSetVariable(LINEPTR abstractLine, VARIABLEPTR abstractVariable)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
// we take ownership of the variable
if( line->variable != NULL )
{
VariableFree(line->variable);
}
line->variable = abstractVariable;
if( line->rawText != NULL )
{
// if we change the variable we remove any original text
FreeVec(line->rawText);
}
line->rawText = (STRPTR)VariableSerialize(line->variable);
}
}
VARIABLEPTR LineGetVariable(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
return line->variable;
}
return NULL;
}
BOOL LineHasVariable(LINEPTR line, CONST_STRPTR varKey)
{
VARIABLEPTR var = LineGetVariable(line);
return (BOOL)(var != NULL && VariableHasKey(var, varKey));
}
VOID LineFree(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
if( line->rawText != NULL )
{
FreeVec(line->rawText);
}
if( line->variable != NULL )
{
VariableFree(line->variable);
}
FreeVec(line);
}
}
CONST_STRPTR LineGetRawText(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
return (CONST_STRPTR)line->rawText;
}
else
{
return NULL;
}
}
BOOL LineIsEmpty(LINEPTR abstractLine)
{
struct Line* line = (struct Line*)abstractLine;
if( line != NULL )
{
STRPTR start = line->rawText;
STRPTR end = start + strlen(line->rawText);
while( start != end )
{
if(!isspace(*start))
{
return FALSE;
}
start++;
}
}
return TRUE;
}
// ---------------------------------------------------------------------------------------
// - SECTION -----------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
SECTIONPTR SectionCreateWithName(CONST_STRPTR primary)
{
return SectionCreateWithNameAndSubname(primary, NULL);
}
SECTIONPTR SectionCreateWithNameAndSubname(CONST_STRPTR primary, CONST_STRPTR secondary)
{
struct Section* result = NULL;
if( primary != NULL )
{
ULONG length = strlen(primary);
result = AllocVec(sizeof(struct Section), MEMF_CLEAR);
result->lastLineWasEmpty = FALSE;
result->primary = AllocVec(length+1, MEMF_CLEAR);
CopyMem(primary, (STRPTR)result->primary, length);
if( secondary != NULL && strlen(secondary) > 0 )
{
ULONG length = strlen(secondary);
result->secondary = AllocVec(length+1, MEMF_CLEAR);
CopyMem(secondary, (STRPTR)result->secondary, length);
}
result->lines = LineArrayNew();
}
return result;
}
VOID SectionAddSectionLine(SECTIONPTR abstractSection, LINEPTR abstractLine)
{
// sets self onto line and then adds line to the collection
LineSetSection(abstractLine, abstractSection);
SectionAddLine(abstractSection, abstractLine);
}
// we need to know if there are blank lines at the end and if this is a variable,
//insert this before them
//
// otherwise we go from
// [foo]
// bar = 1
//
// [baz]
// etc
// to
//
// [foo]
// bar = 1
//
// fubar = 1
// [baz]
// etc
VOID SectionAddLine(SECTIONPTR abstractSection, LINEPTR abstractLine)
{
struct Section* section = (struct Section*)abstractSection;
if( section != NULL )
{
//Printf("\n\SAD1 (%ld bytes avail)\n\n", AvailMem(0));
// if the last line is empty and new line is NOT, insert new line before the blank.
if( section->lastLineWasEmpty && !LineIsEmpty(abstractLine) )
{
LINEPTR lastLine = ArrayBackValue(LINEPTR, section->lines);
ULONG lastIndex = SizeOfArray(section->lines)-1;
//Printf("\n\SAD2 (%ld bytes avail)\n\n", AvailMem(0));
LineArrayValues(section->lines)[lastIndex] = abstractLine;
LineArrayAppend(section->lines, lastLine);
//Printf("\n\SAD3 (%ld bytes avail)\n\n", AvailMem(0));
}
else
{
//Printf("\n\SAD4 (%ld bytes avail)\n\n", AvailMem(0));
LineArrayAppend(section->lines, abstractLine);
//Printf("\n\SAD5 (%ld bytes avail)\n\n", AvailMem(0));
}
//Printf("\n\SAD6 (%ld bytes avail)\n\n", AvailMem(0));
section->lastLineWasEmpty = LineIsEmpty(abstractLine);
//Printf("\n\SAD7 (%ld bytes avail)\n\n", AvailMem(0));
}
}
VOID SectionCollectLinesForVariable(SECTIONPTR abstractSection, CONST_STRPTR varKey, LineArray collecting)
{
struct Section* section = (struct Section*)abstractSection;
if( section != NULL )
{
ULONG lineCount = SizeOfArray(section->lines);
ULONG index = 0;
STRPTR normalizedKey = AllocVec(strlen(varKey)+1, MEMF_CLEAR);
CopyMem(varKey, normalizedKey, strlen(varKey));
downcaseString(normalizedKey);
for( index = 0; index < lineCount; index++ )
{
LINEPTR line = LineArrayValues(section->lines)[index];
if( LineHasVariable(line, normalizedKey) )
{
LineArrayAppend(collecting, line);
}
}
FreeVec(normalizedKey);
}
else
{
Printf("null section\n");
}
}
VOID SectionRemoveLinesForVariable(SECTIONPTR abstractSection, CONST_STRPTR varKey)
{
struct Section* section = (struct Section*)abstractSection;
if( section != NULL )
{
ULONG lineCount = SizeOfArray(section->lines);
ULONG index = 0;
LineArray newLineArray = LineArrayNew();
STRPTR normalizedKey = AllocVec(strlen(varKey)+1, MEMF_CLEAR);
CopyMem(varKey, normalizedKey, strlen(varKey));
downcaseString(normalizedKey);
for( index = 0; index < lineCount; index++ )
{
// instead of compacting, we save lines that dont match, and free lines that do
LINEPTR line = LineArrayValues(section->lines)[index];
if( LineHasVariable(line, normalizedKey) )
{
LineFree(line);
LineArrayValues(section->lines)[index] = NULL; // dont crash when we cann LineArrayFree
}
else
{
LineArrayAppend(newLineArray, line);
}
}
LineArrayFree(section->lines, FALSE);//dont free the lines, the newArray will do that later
section->lines = newLineArray;
FreeVec(normalizedKey);
}
}
VOID SectionDump(SECTIONPTR abstractSection)
{
struct Section* section = (struct Section*)abstractSection;
if( section != NULL && section->lines != NULL )
{
ArrayForEach(LINEPTR, aLine, section->lines, LineDump(aLine););
}
}
CONST_STRPTR SectionSerialize(SECTIONPTR abstractSection)
{
struct Section* section = (struct Section*)abstractSection;
STRPTR result = NULL;
ULONG size = 0;
if( section != NULL && section->primary != NULL )
{
if( strlen(section->primary) > 0 )
{
size += 1; // [
size += strlen(section->primary);
if( section->secondary != NULL )
{
size += 2; // ' \"'
size += strlen(section->secondary);
size += 1; // \"
}
size += 2; // ]\n
result = AllocVec(size+1, MEMF_CLEAR);
if( section->secondary == NULL )
{
sprintf(result, "[%s]\n", section->primary);
}
else
{
sprintf(result, "[%s \"%s\"]\n", section->primary, section->secondary);
}
}
}
return result;
}
VOID SectionFree(SECTIONPTR abstractSection)
{
struct Section* section = (struct Section*)abstractSection;
if( section != NULL )
{
if( section->primary != NULL )
{
FreeVec((STRPTR)section->primary);
}
if( section->secondary != NULL )
{
FreeVec((STRPTR)section->secondary);
}
if( section->lines != NULL )
{
LineArrayFree(section->lines, TRUE); // free the lines when we free the section
}
FreeVec(section);
}
}
CONST_STRPTR SectionCanonicalName(SECTIONPTR abstractSection)
{
struct Section* section = (struct Section*)abstractSection;
STRPTR result = NULL;
if(section != NULL)
{
ULONG primaryLength = 0;
ULONG secondaryLength = 0;
if(section->primary != NULL)
{
primaryLength = strlen(section->primary);
}
if(section->secondary != NULL)
{
secondaryLength = strlen(section->secondary);
}
result = AllocVec(primaryLength+1+secondaryLength+1, MEMF_CLEAR);
CopyMem(section->primary, result, primaryLength);
result[primaryLength] = '.';
CopyMem(section->secondary, result+primaryLength+1, secondaryLength);
}
return result;
}
// ---------------------------------------------------------------------------------------
// - VARIABLE ----------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
VARIABLEPTR VariableCreate(CONST_STRPTR key, CONST_STRPTR rawValue)
{
struct Variable* result = NULL;
if( key != NULL )
{
ULONG length = strlen(key);
result = AllocVec(sizeof(struct Variable), MEMF_CLEAR);
result->key = AllocVec(length+1, MEMF_CLEAR);
CopyMem(key, (STRPTR)result->key, length);
result->normalizedKey = AllocVec(length+1, MEMF_CLEAR);
CopyMem(key, (STRPTR)result->normalizedKey, length);
downcaseString((STRPTR)result->normalizedKey);
}
result->type = TypeString;
if( rawValue != NULL )
{
ULONG length = strlen(rawValue);
result->value.stringValue = AllocVec(length+1, MEMF_CLEAR);
CopyMem(rawValue, (STRPTR)result->value.stringValue, length);
}
return result;
}
CONST_STRPTR VariableGetRawValue(VARIABLEPTR abstractVariable)
{
struct Variable* variable = (struct Variable*)abstractVariable;
if( variable != NULL )
{
return variable->value.stringValue;
}
return NULL;
}
BOOL VariableHasKey(VARIABLEPTR abstractVariable, CONST_STRPTR varKey)
{
struct Variable* variable = (struct Variable*)abstractVariable;
if( variable != NULL )
{
if( strcmp(varKey, variable->normalizedKey) == 0 )
{
return TRUE;
}
}
return FALSE;
}
VOID VariableFree(VARIABLEPTR abstractVariable)
{
struct Variable* variable = (struct Variable*)abstractVariable;
if( variable != NULL )
{
if( variable->key != NULL )
{
FreeVec((STRPTR)variable->key);
}
if( variable->normalizedKey != NULL )
{
FreeVec((STRPTR)variable->normalizedKey);
}
if( variable->type == TypeString && variable->value.stringValue != NULL )
{
FreeVec((STRPTR)variable->value.stringValue);
}
FreeVec(variable);
}
}
CONST_STRPTR VariableSerialize(VARIABLEPTR abstractVariable)
{
STRPTR result = NULL;
struct Variable* variable = (struct Variable*)abstractVariable;
if( variable != NULL && variable->normalizedKey != NULL && variable->value.stringValue != NULL )
{
ULONG size = strlen(variable->normalizedKey) + 3 + strlen(variable->value.stringValue) + 1;
result = AllocVec(size, MEMF_CLEAR);
sprintf(result, "\t%s = %s\n", variable->normalizedKey, variable->value.stringValue);
}
return (CONST_STRPTR)result;
}
STATIC VOID downcaseString(STRPTR string)
{
BYTE* p = NULL;
for(p=string; *p; p++)
{
*p=tolower(*p);
}
}