Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  CrashAnnotations.cpp   Sprache: C

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


#include "CrashAnnotations.h"

#include <algorithm>
#include <cstring>
#include <iterator>

#include "nsString.h"

using std::begin;
using std::end;
using std::find_if;

namespace CrashReporter {

using mozilla::Nothing;
using mozilla::Some;

Maybe<Annotation> AnnotationFromString(const nsACString& aValue) {
  const auto* elem = find_if(
      begin(kAnnotationStrings), end(kAnnotationStrings),
      [&aValue](const char* aString) { return aValue.Equals(aString); });

  if (elem == end(kAnnotationStrings)) {
    return Nothing();
  }

  return Some(static_cast<Annotation>(elem - begin(kAnnotationStrings)));
}

bool IsAnnotationAllowedForPing(Annotation aAnnotation) {
  const auto* elem = find_if(
      begin(kCrashPingAllowedList), end(kCrashPingAllowedList),
      [&aAnnotation](Annotation aElement) { return aElement == aAnnotation; });

  return elem != end(kCrashPingAllowedList);
}

bool ShouldIncludeAnnotation(Annotation aAnnotation, const char* aValue) {
  const auto* elem = find_if(begin(kSkipIfList), end(kSkipIfList),
                             [&aAnnotation](AnnotationSkipValue aElement) {
                               return aElement.annotation == aAnnotation;
                             });

  if (elem != end(kSkipIfList)) {
    if (strcmp(aValue, elem->value) == 0) {
      return false;
    }
  }

  return true;
}

}  // namespace CrashReporter

Messung V0.5
C=93 H=94 G=93

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

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






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge