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

Quelle  URLClassifierChild.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 mozilla_dom_URLClassifierChild_h
#define mozilla_dom_URLClassifierChild_h

#include "mozilla/dom/PURLClassifierChild.h"
#include "mozilla/dom/PURLClassifierLocalChild.h"
#include "mozilla/ipc/URIUtils.h"
#include "mozilla/net/UrlClassifierFeatureResult.h"
#include "nsIURIClassifier.h"
#include "nsIUrlClassifierFeature.h"

namespace mozilla::dom {

class URLClassifierChild : public PURLClassifierChild {
 public:
  void SetCallback(nsIURIClassifierCallback* aCallback) {
    mCallback = aCallback;
  }

  mozilla::ipc::IPCResult Recv__delete__(const Maybe<ClassifierInfo>& aInfo,
                                         const nsresult& aResult) {
    MOZ_ASSERT(mCallback);
    if (aInfo.isSome()) {
      mCallback->OnClassifyComplete(aResult, aInfo.ref().list(),
                                    aInfo.ref().provider(),
                                    aInfo.ref().fullhash());
    }
    return IPC_OK();
  }

 private:
  nsCOMPtr<nsIURIClassifierCallback> mCallback;
};

class URLClassifierLocalChild : public PURLClassifierLocalChild {
 public:
  void SetFeaturesAndCallback(
      const nsTArray<RefPtr<nsIUrlClassifierFeature>>& aFeatures,
      nsIUrlClassifierFeatureCallback* aCallback) {
    mCallback = aCallback;
    mFeatures = aFeatures.Clone();
  }

  mozilla::ipc::IPCResult Recv__delete__(
      nsTArray<URLClassifierLocalResult>&& aResults) {
    nsTArray<RefPtr<nsIUrlClassifierFeatureResult>> finalResults;

    nsTArray<URLClassifierLocalResult> results = std::move(aResults);
    for (URLClassifierLocalResult& result : results) {
      for (nsIUrlClassifierFeature* feature : mFeatures) {
        nsAutoCString name;
        nsresult rv = feature->GetName(name);
        if (NS_WARN_IF(NS_FAILED(rv))) {
          continue;
        }

        if (result.featureName() != name) {
          continue;
        }

        RefPtr<nsIURI> uri = result.uri();
        if (NS_WARN_IF(!uri)) {
          continue;
        }

        RefPtr<net::UrlClassifierFeatureResult> r =
            new net::UrlClassifierFeatureResult(uri, feature,
                                                result.matchingList());
        finalResults.AppendElement(r);
        break;
      }
    }

    mCallback->OnClassifyComplete(finalResults);
    return IPC_OK();
  }

 private:
  nsCOMPtr<nsIUrlClassifierFeatureCallback> mCallback;
  nsTArray<RefPtr<nsIUrlClassifierFeature>> mFeatures;
};

}  // namespace mozilla::dom

#endif  // mozilla_dom_URLClassifierChild_h

Messung V0.5
C=94 H=87 G=90

¤ Dauer der Verarbeitung: 0.3 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.