1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <MNSINIParser.hxx>
21 #include <rtl/byteseq.hxx>
23 IniParser::IniParser(OUString
const & rIniName
) throw(com::sun::star::io::IOException
)
26 oslFileError fileError
= osl_getFileURLFromSystemPath(
27 rIniName
.pData
, &iniUrl
.pData
);
28 if (fileError
!= osl_File_E_None
)
32 "InitParser, getFileURLFromSystemPath(" << rIniName
<< "): "
37 SAL_INFO("connectivity.mork", "IniParser: " << iniUrl
);
38 oslFileHandle handle
=NULL
;
39 fileError
= osl_openFile(iniUrl
.pData
, &handle
, osl_File_OpenFlag_Read
);
41 if (osl_File_E_None
== fileError
)
43 rtl::ByteSequence seq
;
46 osl_getFileSize(handle
, &nSize
);
47 OUString
sectionName( "no name section" );
51 if (osl_File_E_None
!= osl_getFilePos(handle
, &nPos
) || nPos
>= nSize
)
53 if (osl_File_E_None
!= osl_readLine(handle
, (sal_Sequence
**) &seq
))
55 OString
line( (const sal_Char
*) seq
.getConstArray(), seq
.getLength() );
56 sal_Int32 nIndex
= line
.indexOf('=');
59 ini_Section
*aSection
= &mAllSection
[sectionName
];
60 struct ini_NameValue nameValue
;
61 nameValue
.sName
= OStringToOUString(
62 line
.copy(0,nIndex
).trim(), RTL_TEXTENCODING_ASCII_US
);
63 nameValue
.sValue
= OStringToOUString(
64 line
.copy(nIndex
+1).trim(), RTL_TEXTENCODING_UTF8
);
66 aSection
->lList
.push_back(nameValue
);
71 sal_Int32 nIndexStart
= line
.indexOf('[');
72 sal_Int32 nIndexEnd
= line
.indexOf(']');
73 if ( nIndexEnd
> nIndexStart
&& nIndexStart
>=0)
75 sectionName
= OStringToOUString(
76 line
.copy(nIndexStart
+ 1,nIndexEnd
- nIndexStart
-1).trim(), RTL_TEXTENCODING_ASCII_US
);
77 if (sectionName
.isEmpty())
78 sectionName
= "no name section";
80 ini_Section
*aSection
= &mAllSection
[sectionName
];
81 aSection
->sName
= sectionName
;
85 osl_closeFile(handle
);
91 "IniParser couldn't open file " << iniUrl
<< ": " << +fileError
);
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */