/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
if (StringHead(aStr, 3) == "\xEF\xBB\xBF") { // Someone set us up the Utf-8 BOM // This case is easy, since we assume that BOM-less // files are Utf-8 anyway. Just skip the BOM and process as usual.
fileContents.Append(aStr);
buffer = fileContents.BeginWriting() + 3;
} else { if (StringHead(aStr, 2) == "\xFF\xFE") { // Someone set us up the Utf-16LE BOM
nsDependentSubstring str(reinterpret_cast<const char16_t*>(aStr.get()),
aStr.Length() / 2);
char* rb = NS_strtok(kRBracket, &token); if (!rb || NS_strtok(kWhitespace, &token)) { // there's either an unclosed [Section or a [Section]Moretext! // we could frankly decide that this INI file is malformed right // here and stop, but we won't... keep going, looking for // a well-formed [section] to continue working with
currSection = nullptr;
}
continue;
}
if (!currSection) { // If we haven't found a section header (or we found a malformed // section header), don't bother parsing this line. continue;
}
char* key = token; char* e = NS_strtok(kEquals, &token); if (!e || !token) { continue;
}
// Check whether this key has already been specified; overwrite // if so, or append if not. while (v) { if (!strcmp(aKey, v->key)) {
v->SetValue(aValue); break;
} if (!v->next) {
v->next = MakeUnique<INIValue>(aKey, aValue); break;
}
v = v->next.get();
}
NS_ASSERTION(v, "v should never be null coming out of this loop");
});
INIValue* val; if (!mSections.Get(aSection, &val)) { return NS_ERROR_FAILURE;
}
// Special case the first result if (strcmp(val->key, aKey) == 0) { if (!val->next) {
mSections.Remove(aSection);
} else {
mSections.InsertOrUpdate(aSection, std::move(val->next));
} return NS_OK;
}
while (val->next) { if (strcmp(val->next->key, aKey) == 0) {
val->next = std::move(val->next->next);
return NS_OK;
}
val = val->next.get();
}
return NS_ERROR_FAILURE;
}
nsresult nsINIParser::DeleteSection(constchar* aSection) { if (!IsValidSection(aSection)) { return NS_ERROR_INVALID_ARG;
}
if (!mSections.Remove(aSection)) { return NS_ERROR_FAILURE;
} return NS_OK;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.