Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/indexedDB/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  DatabaseFileManagerImpl.h   Sprache: C

 
/* -*- 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/. */


#ifndef DOM_INDEXEDDB_DATABASEFILEMANAGERIMPL_H_
#define DOM_INDEXEDDB_DATABASEFILEMANAGERIMPL_H_

#include "DatabaseFileManager.h"

// local includes
#include "ActorsParentCommon.h"

// global includes
#include "mozilla/dom/quota/Assertions.h"
#include "mozilla/dom/quota/QuotaCommon.h"
#include "nsIFile.h"
#include "nsString.h"

namespace mozilla::dom::indexedDB {

template <typename KnownDirEntryOp, typename UnknownDirEntryOp>
Result<Ok, nsresult> DatabaseFileManager::TraverseFiles(
    nsIFile& aDirectory, KnownDirEntryOp&& aKnownDirEntryOp,
    UnknownDirEntryOp&& aUnknownDirEntryOp) {
  quota::AssertIsOnIOThread();

  QM_TRY_INSPECT(const bool& exists,
                 MOZ_TO_RESULT_INVOKE_MEMBER(aDirectory, Exists));

  if (!exists) {
    return Ok{};
  }

  QM_TRY(quota::CollectEachFile(
      aDirectory,
      [&aKnownDirEntryOp, &aUnknownDirEntryOp](
          const nsCOMPtr<nsIFile>& file) -> Result<Ok, nsresult> {
        QM_TRY_INSPECT(const auto& dirEntryKind, quota::GetDirEntryKind(*file));

        switch (dirEntryKind) {
          case quota::nsIFileKind::ExistsAsDirectory: {
            QM_TRY_INSPECT(
                const auto& leafName,
                MOZ_TO_RESULT_INVOKE_MEMBER_TYPED(nsString, file, GetLeafName));

            if (leafName.Equals(kJournalDirectoryName)) {
              QM_TRY(std::forward<KnownDirEntryOp>(aKnownDirEntryOp)(
                  *file, /* isDirectory */ true));

              break;
            }

            Unused << WARN_IF_FILE_IS_UNKNOWN(*file);

            QM_TRY(std::forward<UnknownDirEntryOp>(aUnknownDirEntryOp)(
                *file, /* isDirectory */ true));

            break;
          }

          case quota::nsIFileKind::ExistsAsFile: {
            QM_TRY_INSPECT(
                const auto& leafName,
                MOZ_TO_RESULT_INVOKE_MEMBER_TYPED(nsString, file, GetLeafName));

            nsresult rv;
            leafName.ToInteger64(&rv);
            if (NS_SUCCEEDED(rv)) {
              QM_TRY(std::forward<KnownDirEntryOp>(aKnownDirEntryOp)(
                  *file, /* isDirectory */ false));

              break;
            }

            Unused << WARN_IF_FILE_IS_UNKNOWN(*file);

            QM_TRY(std::forward<UnknownDirEntryOp>(aUnknownDirEntryOp)(
                *file, /* isDirectory */ false));

            break;
          }

          case quota::nsIFileKind::DoesNotExist:
            // Ignore files that got removed externally while iterating.
            break;
        }

        return Ok{};
      }));

  return Ok{};
}

}  // namespace mozilla::dom::indexedDB

#endif  // DOM_INDEXEDDB_DATABASEFILEMANAGERIMPL_H_

Messung V0.5
C=92 H=99 G=95

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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 und die Messung sind noch experimentell.