mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-27 02:21:26 +00:00
706b4d3150
- #565: M1367219 (6f63dc2cc) - more adblock hosts (8cf4190e2) - #565: implement nsASCIIMask from M1358297 (41b1fc937) (with vc2013 fix by replacing constexpr to MOZ_CONSTEXPR and MOZ_CONSTEXPR_VAR) - #565: M1358225 with fix for M1548306 applied (8eed11298) (with vc2013 fix by replacing constexpr to MOZ_CONSTEXPR and MOZ_CONSTEXPR_VAR) - even more adblock hosts (5d005926f) - #565: M1347737 (9ab5bb0ed) - #565: M1358297 parts 3 and 4 (3fd15a87a) - #521: baseline parser support for async/await, with toggle, without bytecode (passes tests) (0e5746aaf) - #521: fix yield handling (includes M1305566 pts 4-7) (2d25f717b) - #521: make async functions throw for compatibility when enabled (46b01b5d4) - #569: M1204714 (c45b2e8b5) - #568: M1560495 (adapted for 45) M1562033+M1466449 M1559715 M1564449 M1573160 (d019bd3dc) - #568: update certs, pins, TLDs, miners (ed3129eeb) - #570: oops (dd79a9f75) and added -bigobj compile switch to ssl/moz.build.
71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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 nsASCIIMask_h_
|
|
#define nsASCIIMask_h_
|
|
|
|
#include <array>
|
|
#include "mozilla/IndexSequence.h"
|
|
|
|
typedef std::array<bool, 128> ASCIIMaskArray;
|
|
|
|
namespace mozilla {
|
|
|
|
// Boolean arrays, fixed size and filled in at compile time, meant to
|
|
// record something about each of the (standard) ASCII characters.
|
|
// No extended ASCII for now, there has been no use case.
|
|
// If you have loops that go through a string character by character
|
|
// and test for equality to a certain set of characters before deciding
|
|
// on a course of action, chances are building up one of these arrays
|
|
// and using it is going to be faster, especially if the set of
|
|
// characters is more than one long, and known at compile time.
|
|
class ASCIIMask
|
|
{
|
|
public:
|
|
// Preset masks for some common character groups
|
|
// When testing, you must check if the index is < 128 or use IsMasked()
|
|
//
|
|
// if (someChar < 128 && MaskCRLF()[someChar]) this is \r or \n
|
|
|
|
static const ASCIIMaskArray& MaskCRLF();
|
|
static const ASCIIMaskArray& Mask0to9();
|
|
static const ASCIIMaskArray& MaskCRLFTab();
|
|
static const ASCIIMaskArray& MaskWhitespace();
|
|
|
|
static MOZ_ALWAYS_INLINE bool IsMasked(const ASCIIMaskArray& aMask, uint32_t aChar)
|
|
{
|
|
return aChar < 128 && aMask[aChar];
|
|
}
|
|
};
|
|
|
|
// Outside of the preset ones, use these templates to create more masks.
|
|
//
|
|
// The example creation will look like this:
|
|
//
|
|
// constexpr bool TestABC(char c) { return c == 'A' || c == 'B' || c == 'C'; }
|
|
// constexpr std::array<bool, 128> sABCMask = CreateASCIIMask(TestABC);
|
|
// ...
|
|
// if (someChar < 128 && sABCMask[someChar]) this is A or B or C
|
|
|
|
|
|
namespace details
|
|
{
|
|
template<typename F, size_t... Indices>
|
|
MOZ_CONSTEXPR std::array<bool, 128> CreateASCIIMask(F fun, mozilla::IndexSequence<Indices...>)
|
|
{
|
|
return {{ fun(Indices)... }};
|
|
}
|
|
} // namespace details
|
|
|
|
template<typename F>
|
|
MOZ_CONSTEXPR std::array<bool, 128> CreateASCIIMask(F fun)
|
|
{
|
|
return details::CreateASCIIMask(fun, mozilla::MakeIndexSequence<128>::Type{});
|
|
}
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // nsASCIIMask_h_
|