- contrib/examples
+ examples
* doc/dirstruc.txt
* doc/whatsnew.txt
* examples/hbdoc/Makefile
* examples/pp/Makefile
* examples/hboleold/Makefile
* examples/hbsqlit2/Makefile
* examples/misc/Makefile
* examples/hbapollo/Makefile
* examples/rdddbt/Makefile
* examples/guestbk/Makefile
* examples/pe/Makefile
* examples/hbgf/hbgfwin/Makefile
* examples/hbgf/hbgfos2/Makefile
* examples/hbgf/hbgfgtk/Makefile
* examples/hbgf/Makefile
* examples/uhttpd/readme.txt
* examples/dbu/Makefile
* examples/hscript/Makefile
* examples/hbwhat/Makefile
* examples/rl/Makefile
* examples/Makefile
* Moved to flatten our dir layout and sync the locations
in unified distro and source tree.
; TODO: As a next step I'll replace Makefiles with .hbm
files. This will allow users to build these parts
outside the source distribution.
315 lines
8.6 KiB
Plaintext
315 lines
8.6 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "common.ch"
|
|
|
|
#define CRLF hb_osNewLine()
|
|
|
|
function TIniFile()
|
|
static oClass
|
|
|
|
if oClass == nil
|
|
oClass := HBClass():New( "TINIFILE" ) // starts a new class definition
|
|
|
|
oClass:AddData( "FileName" ) // define this class objects datas
|
|
oClass:AddData( "Contents" )
|
|
|
|
oClass:AddMethod( "New", @New() ) // define this class objects methods
|
|
oClass:AddMethod( "ReadString", @ReadString() )
|
|
oClass:AddMethod( "WriteString", @WriteString() )
|
|
oClass:AddMethod( "ReadNumber", @ReadNumber() )
|
|
oClass:AddMethod( "WriteNumber", @WriteNumber() )
|
|
oClass:AddMethod( "ReadDate", @ReadDate() )
|
|
oClass:AddMethod( "WriteDate", @WriteDate() )
|
|
oClass:AddMethod( "ReadBool", @ReadBool() )
|
|
oClass:AddMethod( "WriteBool", @WriteBool() )
|
|
oClass:AddMethod( "ReadSection", @ReadSection() )
|
|
oClass:AddMethod( "ReadSections", @ReadSections() )
|
|
oClass:AddMethod( "DeleteKey", @DeleteKey() )
|
|
oClass:AddMethod( "EraseSection", @EraseSection() )
|
|
oClass:AddMethod( "UpdateFile", @UpdateFile() )
|
|
|
|
oClass:Create() // builds this class
|
|
endif
|
|
return oClass:Instance() // builds an object of this class
|
|
|
|
static function New(cFileName)
|
|
local Self := QSelf()
|
|
local Done, hFile, cFile, cLine, cIdent, nPos
|
|
local CurrArray
|
|
|
|
if empty(cFileName)
|
|
// raise an error?
|
|
outerr("No filename passed to TIniFile():New()")
|
|
return nil
|
|
|
|
else
|
|
::FileName := cFilename
|
|
::Contents := {}
|
|
CurrArray := ::Contents
|
|
|
|
if File(cFileName)
|
|
hFile := fopen(cFilename, 0)
|
|
|
|
else
|
|
hFile := fcreate(cFilename)
|
|
endif
|
|
|
|
cLine := ""
|
|
Done := .f.
|
|
while !Done
|
|
cFile := space(256)
|
|
Done := (fread(hFile, @cFile, 256) <= 0)
|
|
|
|
cFile := strtran(cFile, chr(10), "") // so we can just search for CHR(13)
|
|
|
|
// prepend last read
|
|
cFile := cLine + cFile
|
|
while !empty(cFile)
|
|
if (nPos := at(chr(13), cFile)) > 0
|
|
cLine := left(cFile, nPos - 1)
|
|
cFile := substr(cFile, nPos + 1)
|
|
|
|
if !empty(cLine)
|
|
if Left(cLine, 1) == "[" // new section
|
|
if (nPos := At("]", cLine)) > 1
|
|
cLine := substr(cLine, 2, nPos - 2);
|
|
|
|
else
|
|
cLine := substr(cLine, 2)
|
|
endif
|
|
|
|
AAdd(::Contents, { cLine, { /* this will be CurrArray */ } } )
|
|
CurrArray := ::Contents[Len(::Contents)][2]
|
|
|
|
elseif Left(cLine, 1) == ";" // preserve comments
|
|
AAdd( CurrArray, { NIL, cLine } )
|
|
|
|
else
|
|
if (nPos := At("=", cLine)) > 0
|
|
cIdent := Left(cLine, nPos - 1)
|
|
cLine := SubStr(cLine, nPos + 1)
|
|
|
|
AAdd( CurrArray, { cIdent, cLine } )
|
|
|
|
else
|
|
AAdd( CurrArray, { cLine, "" } )
|
|
endif
|
|
endif
|
|
cLine := "" // to stop prepend later on
|
|
endif
|
|
|
|
else
|
|
cLine := cFile
|
|
cFile := ""
|
|
endif
|
|
end
|
|
end
|
|
|
|
fclose(hFile)
|
|
endif
|
|
return Self
|
|
|
|
static function ReadString(cSection, cIdent, cDefault)
|
|
local Self := QSelf()
|
|
local cResult := cDefault
|
|
local i, j, cFind
|
|
|
|
if Empty(cSection)
|
|
cFind := lower(cIdent)
|
|
j := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind .and. ISCHARACTER(x[2]) } )
|
|
|
|
if j > 0
|
|
cResult := ::Contents[j][2]
|
|
endif
|
|
|
|
else
|
|
cFind := lower(cSection)
|
|
i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind} )
|
|
|
|
if i > 0
|
|
cFind := lower(cIdent)
|
|
j := AScan( ::Contents[i][2], {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind} )
|
|
|
|
if j > 0
|
|
cResult := ::Contents[i][2][j][2]
|
|
endif
|
|
endif
|
|
endif
|
|
return cResult
|
|
|
|
static procedure WriteString(cSection, cIdent, cString)
|
|
local Self := QSelf()
|
|
local i, j, cFind
|
|
|
|
if Empty(cIdent)
|
|
outerr("Must specify an identifier")
|
|
|
|
elseif Empty(cSection)
|
|
cFind := lower(cIdent)
|
|
j := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind .and. ISCHARACTER(x[2]) } )
|
|
|
|
if j > 0
|
|
::Contents[j][2] := cString
|
|
|
|
else
|
|
AAdd(::Contents, nil)
|
|
AIns(::Contents, 1)
|
|
::Contents[1] := {cIdent, cString}
|
|
endif
|
|
|
|
else
|
|
cFind := lower(cSection)
|
|
if (i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind .and. ISARRAY(x[2]) })) > 0
|
|
cFind := lower(cIdent)
|
|
j := AScan( ::Contents[i][2], {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cFind} )
|
|
|
|
if j > 0
|
|
::Contents[i][2][j][2] := cString
|
|
|
|
else
|
|
AAdd( ::Contents[i][2], {cIdent, cString} )
|
|
endif
|
|
|
|
else
|
|
AAdd( ::Contents, {cSection, {{cIdent, cString}}} )
|
|
endif
|
|
endif
|
|
return
|
|
|
|
static function ReadNumber(cSection, cIdent, nDefault)
|
|
local Self := QSelf()
|
|
return Val( ::ReadString(cSection, cIdent, str(nDefault)) )
|
|
|
|
static procedure WriteNumber(cSection, cIdent, nNumber)
|
|
local Self := QSelf()
|
|
|
|
::WriteString( cSection, cIdent, alltrim(str(nNumber)) )
|
|
return
|
|
|
|
static function ReadDate(cSection, cIdent, dDefault)
|
|
local Self := QSelf()
|
|
return SToD( ::ReadString(cSection, cIdent, DToS(dDefault)) )
|
|
|
|
static procedure WriteDate(cSection, cIdent, dDate)
|
|
local Self := QSelf()
|
|
|
|
::WriteString( cSection, cIdent, DToS(dDate) )
|
|
return
|
|
|
|
static function ReadBool(cSection, cIdent, lDefault)
|
|
local Self := QSelf()
|
|
local cDefault := Iif( lDefault, ".t.", ".f." )
|
|
|
|
return ::ReadString(cSection, cIdent, cDefault) == ".t."
|
|
|
|
static procedure WriteBool(cSection, cIdent, lBool)
|
|
local Self := QSelf()
|
|
|
|
::WriteString( cSection, cIdent, Iif(lBool, ".t.", ".f.") )
|
|
return
|
|
|
|
static procedure DeleteKey(cSection, cIdent)
|
|
local Self := QSelf()
|
|
local i, j
|
|
|
|
cSection := lower(cSection)
|
|
i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cSection} )
|
|
|
|
if i > 0
|
|
cIdent := lower(cIdent)
|
|
j := AScan( ::Contents[i][2], {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cIdent} )
|
|
|
|
ADel( ::Contents[i][2], j )
|
|
ASize( ::Contents[i][2], Len(::Contents[i][2]) - 1 )
|
|
endif
|
|
return
|
|
|
|
static procedure EraseSection(cSection)
|
|
local Self := QSelf()
|
|
local i
|
|
|
|
if Empty(cSection)
|
|
while (i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. ISCHARACTER(x[2]) })) > 0
|
|
ADel( ::Contents, i )
|
|
ASize( ::Contents, len(::Contents) - 1 )
|
|
end
|
|
|
|
else
|
|
cSection := lower(cSection)
|
|
if (i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. lower(x[1]) == cSection .and. ISARRAY(x[2]) })) > 0
|
|
ADel( ::Contents, i )
|
|
ASize( ::Contents, Len(::Contents) - 1 )
|
|
endif
|
|
endif
|
|
return
|
|
|
|
static function ReadSection(cSection)
|
|
local Self := QSelf()
|
|
local i, j, aSection := {}
|
|
|
|
if Empty(cSection)
|
|
for i := 1 to len(::Contents)
|
|
if ISCHARACTER(::Contents[i][1]) .and. ISCHARACTER(::Contents[i][2])
|
|
aadd(aSection, ::Contents[i][1])
|
|
endif
|
|
next
|
|
|
|
else
|
|
cSection := lower(cSection)
|
|
if (i := AScan( ::Contents, {|x| ISCHARACTER(x[1]) .and. x[1] == cSection .and. ISARRAY(x[2]) })) > 0
|
|
|
|
for j := 1 to Len(::Contents[i][2])
|
|
|
|
if ::Contents[i][2][j][1] != NIL
|
|
AAdd(aSection, ::Contents[i][2][j][1])
|
|
endif
|
|
next
|
|
endif
|
|
endif
|
|
return aSection
|
|
|
|
static function ReadSections()
|
|
local Self := QSelf()
|
|
local i, aSections := {}
|
|
|
|
for i := 1 to Len(::Contents)
|
|
|
|
if ISARRAY(::Contents[i][2])
|
|
AAdd(aSections, ::Contents[i][1])
|
|
endif
|
|
next
|
|
return aSections
|
|
|
|
static procedure UpdateFile()
|
|
local Self := QSelf()
|
|
local i, j, hFile
|
|
|
|
hFile := fcreate(::Filename)
|
|
|
|
for i := 1 to Len(::Contents)
|
|
if ::Contents[i][1] == NIL
|
|
fwrite(hFile, ::Contents[i][2] + Chr(13) + Chr(10))
|
|
|
|
elseif ISARRAY(::Contents[i][2])
|
|
fwrite(hFile, "[" + ::Contents[i][1] + "]" + Chr(13) + Chr(10))
|
|
for j := 1 to Len(::Contents[i][2])
|
|
|
|
if ::Contents[i][2][j][1] == NIL
|
|
fwrite(hFile, ::Contents[i][2][j][2] + Chr(13) + Chr(10))
|
|
|
|
else
|
|
fwrite(hFile, ::Contents[i][2][j][1] + "=" + ::Contents[i][2][j][2] + Chr(13) + Chr(10))
|
|
endif
|
|
next
|
|
fwrite(hFile, Chr(13) + Chr(10))
|
|
|
|
elseif ISCHARACTER(::Contents[i][2])
|
|
fwrite(hFile, ::Contents[i][1] + "=" + ::Contents[i][2] + Chr(13) + Chr(10))
|
|
|
|
endif
|
|
next
|
|
fclose(hFile)
|
|
return
|