1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
|
Using C++ in Mozilla code
=========================
C++ language features
---------------------
Mozilla code only uses a subset of C++. Runtime type information (RTTI)
is disabled, as it tends to cause a very large increase in codesize.
This means that ``dynamic_cast``, ``typeid()`` and ``<typeinfo>`` cannot
be used in Mozilla code. Also disabled are exceptions; do not use
``try``/``catch`` or throw any exceptions. Libraries that throw
exceptions may be used if you are willing to have the throw instead be
treated as an abort.
On the side of extending C++, we compile with ``-fno-strict-aliasing``.
This means that when reinterpreting a pointer as a differently-typed
pointer, you don't need to adhere to the "effective type" (of the
pointee) rule from the standard (aka. "the strict aliasing rule") when
dereferencing the reinterpreted pointer. You still need make sure that
you don't violate alignment requirements and need to make sure that the
data at the memory location pointed to forms a valid value when
interpreted according to the type of the pointer when dereferencing the
pointer for reading. Likewise, if you write by dereferencing the
reinterpreted pointer and the originally-typed pointer might still be
dereferenced for reading, you need to make sure that the values you
write are valid according to the original type. This value validity
issue is moot for e.g. primitive integers for which all bit patterns of
their size are valid values.
- As of Mozilla 59, C++14 mode is required to build Mozilla.
- As of Mozilla 67, MSVC can no longer be used to build Mozilla.
- As of Mozilla 73, C++17 mode is required to build Mozilla.
- As of Mozilla 147, C++20 mode is required to build Mozilla.
This means that C++20 can be used where supported on all platforms. The
list of acceptable features is given below:
.. list-table::
:widths: 25 25 25 25
:header-rows: 3
* -
- GCC
- Clang
-
* - Current minimal requirement
- 10.1
- 17.0
-
* - Feature
- GCC
- Clang
- Can be used in code
* - ``type_t &&``
- 4.3
- 2.9
- Yes (see notes)
* - ref qualifiers on methods
- 4.8.1
- 2.9
- Yes
* - default member-initializers (except for bit-fields)
- 4.7
- 3.0
- Yes
* - default member-initializers (for bit-fields)
- 8
- 6
- **No**
* - variadic templates
- 4.3
- 2.9
- Yes
* - Initializer lists
- 4.4
- 3.1
- Yes
* - ``static_assert``
- 4.3
- 2.9
- Yes
* - ``auto``
- 4.4
- 2.9
- Yes
* - lambdas
- 4.5
- 3.1
- Yes
* - ``decltype``
- 4.3
- 2.9
- Yes
* - ``Foo<Bar<T>>``
- 4.3
- 2.9
- Yes
* - ``auto func() -> int``
- 4.4
- 3.1
- Yes
* - Templated aliasing
- 4.7
- 3.0
- Yes
* - ``nullptr``
- 4.6
- 3.0
- Yes
* - ``enum foo : int16_t`` {};
- 4.4
- 2.9
- Yes
* - ``enum class foo {}``;
- 4.4
- 2.9
- Yes
* - ``enum foo;``
- 4.6
- 3.1
- Yes
* - ``[[attributes]]``
- 4.8
- 3.3
- **No** (see notes)
* - ``constexpr``
- 4.6
- 3.1
- Yes
* - ``alignas``
- 4.8
- 3.3
- Yes
* - ``alignof``
- 4.8
- 3.3
- Yes, but see notes ; only clang 3.6 claims as_feature(cxx_alignof)
* - Delegated constructors
- 4.7
- 3.0
- Yes
* - Inherited constructors
- 4.8
- 3.3
- Yes
* - ``explicit operator bool()``
- 4.5
- 3.0
- Yes
* - ``char16_t/u"string"``
- 4.4
- 3.0
- Yes
* - ``R"(string)"``
- 4.5
- 3.0
- Yes
* - ``operator""()``
- 4.7
- 3.1
- Yes
* - ``=delete``
- 4.4
- 2.9
- Yes
* - ``=default``
- 4.4
- 3.0
- Yes
* - unrestricted unions
- 4.6
- 3.1
- Yes
* - ``for (auto x : vec)`` (`be careful about the type of the iterator <https://stackoverflow.com/questions/15176104/c11-range-based-loop-get-item-by-value-or-reference-to-const>`__)
- 4.6
- 3.0
- Yes
* - ``override``/``final``
- 4.7
- 3.0
- Yes
* - ``thread_local``
- 4.8
- 3.3
- **No** (see notes)
* - function template default arguments
- 4.3
- 2.9
- Yes
* - local structs as template parameters
- 4.5
- 2.9
- Yes
* - extended friend declarations
- 4.7
- 2.9
- Yes
* - ``0b100`` (C++14)
- 4.9
- 2.9
- Yes
* - `Tweaks to some C++ contextual conversions` (C++14)
- 4.9
- 3.4
- Yes
* - Return type deduction (C++14)
- 4.9
- 3.4
- Yes (but only in template code when you would have used ``decltype (complex-expression)``)
* - Generic lambdas (C++14)
- 4.9
- 3.4
- Yes
* - Initialized lambda captures (C++14)
- 4.9
- 3.4
- Yes
* - Digit separator (C++14)
- 4.9
- 3.4
- Yes
* - Variable templates (C++14)
- 5.0
- 3.4
- Yes
* - Relaxed constexpr (C++14)
- 5.0
- 3.4
- Yes
* - Aggregate member initialization (C++14)
- 5.0
- 3.3
- Yes
* - Clarifying memory allocation (C++14)
- 5.0
- 3.4
- Yes
* - [[deprecated]] attribute (C++14)
- 4.9
- 3.4
- **No** (see notes)
* - Sized deallocation (C++14)
- 5.0
- 3.4
- **No** (see notes)
* - Concepts (Concepts TS)
- 6.0
- —
- **No**
* - Inline variables (C++17)
- 7.0
- 3.9
- Yes
* - constexpr_if (C++17)
- 7.0
- 3.9
- Yes
* - constexpr lambdas (C++17)
- —
- —
- **No**
* - Structured bindings (C++17)
- 7.0
- 4.0
- Yes
* - Separated declaration and condition in ``if``, ``switch`` (C++17)
- 7.0
- 3.9
- Yes
* - `Fold expressions <https://en.cppreference.com/w/cpp/language/fold>`__ (C++17)
- 6.0
- 3.9
- Yes
* - [[fallthrough]], [[maybe_unused]], [[nodiscard]] (C++17)
- 7.0
- 3.9
- Yes
* - Aligned allocation/deallocation (C++17)
- 7.0
- 4.0
- **No** (see notes)
* - Designated initializers (C++20)
- 8.0 (4.7)
- 10.0 (3.0)
- Yes [*sic*] (see notes)
* - #pragma once
- 3.4
- Yes
- **Not** until we `normalize headers <https://groups.google.com/d/msg/mozilla.dev.platform/PgDjWw3xp8k/eqCFlP4Kz1MJ>`__
* - `Source code information capture <https://en.cppreference.com/w/cpp/experimental/lib_extensions_2#Source_code_information_capture>`__
- 8.0
- —
- **No**
Sources
~~~~~~~
* GCC: https://gcc.gnu.org/projects/cxx-status.html
* Clang: https://clang.llvm.org/cxx_status.html
Notes
~~~~~
rvalue references
Implicit move method generation cannot be used.
Attributes
Several common attributes are defined in
`mozilla/Attributes.h <https://searchfox.org/mozilla-central/source/mfbt/Attributes.h>`__
or nscore.h.
Alignment
Some alignment utilities are defined in `mozilla/Alignment.h
<https://searchfox.org/mozilla-central/source/mfbt/Alignment.h>`__.
``[[deprecated]]``
If we have deprecated code, we should be removing it rather than marking it as
such. Marking things as ``[[deprecated]]`` also means the compiler will warn
if you use the deprecated API, which turns into a fatal error in our
automation builds, which is not helpful.
Sized deallocation
Our compilers all support this (custom flags are required for GCC and Clang),
but turning it on breaks some classes' ``operator new`` methods, and `some
work <https://bugzilla.mozilla.org/show_bug.cgi?id=1250998>`__ would need to
be done to make it an efficiency win with our custom memory allocator.
Aligned allocation/deallocation
Our custom memory allocator doesn't have support for these functions.
Thread locals
``thread_local`` is not supported on Android.
Designated initializers
Despite their late addition to C++ (and lack of *official* support by
compilers until relatively recently), `C++20's designated initializers
<https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0329r4.pdf>`__ are
merely a subset of `a feature originally introduced in C99
<https://gcc.gnu.org/onlinedocs/gcc/Designated-Inits.html>`__ -- and this
subset has been accepted without comment in C++ code since at least GCC 4.7
and Clang 3.0.
C++ and Mozilla standard libraries
----------------------------------
The Mozilla codebase contains within it several subprojects which follow
different rules for which libraries can and can't be used it. The rules
listed here apply to normal platform code, and assume unrestricted
usability of MFBT or XPCOM APIs.
.. warning::
The rest of this section is a draft for expository and exploratory
purposes. Do not trust the information listed here.
What follows is a list of standard library components provided by
Mozilla or the C++ standard. If an API is not listed here, then it is
not permissible to use it in Mozilla code. Deprecated APIs are not
listed here. In general, prefer Mozilla variants of data structures to
standard C++ ones, even when permitted to use the latter, since Mozilla
variants tend to have features not found in the standard library (e.g.,
memory size tracking) or have more controllable performance
characteristics.
A list of approved standard library headers is maintained in
`config/stl-headers.mozbuild <https://searchfox.org/mozilla-central/source/config/stl-headers.mozbuild>`__.
Data structures
~~~~~~~~~~~~~~~
.. list-table::
:widths: 25 25 25 25
:header-rows: 1
* - Name
- Header
- STL equivalent
- Notes
* - ``AutoTArray``
- ``nsTArray.h``
-
- Like ``nsTArray``, but will store a small amount as stack storage
* - ``nsAutoTObserverArray``
- ``nsTObserverArray.h``
-
- Like ``nsTObserverArray``, but will store a small amount as stack storage
* - ``mozilla::BloomFilter``
- ``mozilla/BloomFilter.h``
-
- Probabilistic set membership (see `Wikipedia <https://en.wikipedia.org/wiki/Bloom_filter#Counting_filters>`__)
* - ``nsClassHashtable``
- ``nsClassHashtable.h``
-
- Adaptation of nsTHashtable, see :ref:`XPCOM Hashtable Guide`
* - ``nsCOMArray``
- ``nsCOMArray.h``
-
- Like ``nsTArray<nsCOMPtr<T>>``
* - ``nsTHashMap``
- ``nsTHashMap.h``
- ``std::unordered_map``
- Adaptation of ``nsTHashtable``, see :ref:`XPCOM Hashtable Guide`
* - ``nsTHashSet``
- ``nsTHashSet.h``
- ``std::unordered_set``
- Adaptation of ``nsTHashtable``, see :ref:`XPCOM Hashtable Guide`
* - ``nsDeque``
- ``nsDeque.h``
- ``std::deque<T>``
-
* - ``mozilla::EnumSet``
- ``mozilla/EnumSet.h``
-
- Like ``std::set``, but for enum classes.
* - ``mozilla::Hash{Map,Set}``
- `mozilla/HashTable.h <https://searchfox.org/mozilla-central/source/mfbt/HashTable.h>`__
- ``std::unordered_{map,set}``
- A general purpose hash map and hash set.
* - ``nsInterfaceHashtable``
- ``nsInterfaceHashtable.h``
- ``std::unordered_map``
- Adaptation of ``nsTHashtable``, see :ref:`XPCOM Hashtable Guide`
* - ``mozilla::LinkedList``
- ``mozilla/LinkedList.h``
- ``std::list``
- Doubly-linked list
* - ``nsRefPtrHashtable``
- ``nsRefPtrHashtable.h``
- ``std::unordered_map``
- Adaptation of ``nsTHashtable``, see :ref:`XPCOM Hashtable Guide`
* - ``mozilla::SegmentedVector``
- ``mozilla/SegmentedVector.h``
- ``std::deque`` w/o O(1) pop_front
- Doubly-linked list of vector elements
* - ``mozilla::SplayTree``
- ``mozilla/SplayTree.h``
-
- Quick access to recently-accessed elements (see `Wikipedia <https://en.wikipedia.org/wiki/Splay_tree>`__)
* - ``nsTArray``
- ``nsTArray.h``
- ``std::vector``
-
* - ``nsTHashtable``
- ``nsTHashtable.h``
- ``std::unordered_{map,set}``
- See :ref:`XPCOM Hashtable Guide`, you probably want a subclass
* - ``nsTObserverArray``
- ``nsTObserverArray.h``
-
- Like ``nsTArray``, but iteration is stable even through mutation
* - ``nsTPriorityQueue``
- ``nsTPriorityQueue.h``
- ``std::priority_queue``
- Unlike the STL class, not a container adapter
* - ``mozilla::Vector``
- ``mozilla/Vector.h``
- ``std::vector``
-
* - ``mozilla::Buffer``
- ``mozilla/Buffer.h``
-
- Unlike ``Array``, has a run-time variable length. Unlike ``Vector``, does not have capacity and growth mechanism. Unlike ``Span``, owns its buffer.
Safety utilities
~~~~~~~~~~~~~~~~
.. list-table::
:widths: 25 25 25 25
:header-rows: 1
* - Name
- Header
- STL equivalent
- Notes
* - ``mozilla::Array``
- ``mfbt/Array.h``
-
- safe array index
* - ``mozilla::AssertedCast``
- ``mfbt/Casting.h``
-
- casts
* - ``mozilla::CheckedInt``
- ``mfbt/CheckedInt.h``
-
- avoids overflow
* - ``nsCOMPtr``
- ``xpcom/base/nsCOMPtr.h``
- ``std::shared_ptr``
-
* - ``mozilla::EnumeratedArray``
- ``mfbt/EnumeratedArray.h``
- ``mozilla::Array``
-
* - ``mozilla::Maybe``
- ``mfbt/Maybe.h``
- ``std::optional``
-
* - ``mozilla::RangedPtr``
- ``mfbt/RangedPtr.h``
-
- like ``mozilla::Span`` but with two pointers instead of pointer and length
* - ``mozilla::RefPtr``
- ``mfbt/RefPtr.h``
- ``std::shared_ptr``
-
* - ``mozilla::Span``
- ``mozilla/Span.h``
- ``gsl::span``, ``absl::Span``, ``std::string_view``, ``std::u16string_view``
- Rust's slice concept for C++ (without borrow checking)
* - ``StaticRefPtr``
- ``xpcom/base/StaticPtr.h``
-
- ``nsRefPtr`` w/o static constructor
* - ``mozilla::UniquePtr``
- ``mfbt/UniquePtr.h``
- ``std::unique_ptr``
-
* - ``mozilla::WeakPtr``
- ``mfbt/WeakPtr.h``
- ``std::weak_ptr``
-
* - ``nsWeakPtr``
- ``xpcom/base/nsWeakPtr.h``
- ``std::weak_ptr``
-
Strings
~~~~~~~
See the :doc:`Mozilla internal string guide </xpcom/stringguide>` for
usage of ``nsAString`` (our copy-on-write replacement for
``std::u16string``) and ``nsACString`` (our copy-on-write replacement
for ``std::string``).
Be sure not to introduce further uses of ``std::wstring``, which is not
portable! (Some uses exist in the IPC code.)
Algorithms
~~~~~~~~~~
.. list-table::
:widths: 25 25
* - ``mozilla::BinarySearch``
- ``mfbt/BinarySearch.h``
* - ``mozilla::BitwiseCast``
- ``mfbt/Casting.h`` (strict aliasing-safe cast)
* - ``mozilla/MathAlgorithms.h``
- (rotate, ctlz, popcount, gcd, abs, lcm)
* - ``mozilla::RollingMean``
- ``mfbt/RollingMean.h`` ()
Concurrency
~~~~~~~~~~~
.. list-table::
:widths: 25 25 25 25
:header-rows: 1
* - Name
- Header
- STL/boost equivalent
- Notes
* - ``mozilla::Atomic``
- mfbt/Atomic.h
- ``std::atomic``
-
* - ``mozilla::CondVar``
- xpcom/threads/CondVar.h
- ``std::condition_variable``
-
* - ``mozilla::DataMutex``
- xpcom/threads/DataMutex.h
- ``boost::synchronized_value``
-
* - ``mozilla::Monitor``
- xpcom/threads/Monitor.h
-
-
* - ``mozilla::Mutex``
- xpcom/threads/Mutex.h
- ``std::mutex``
-
* - ``mozilla::ReentrantMonitor``
- xpcom/threads/ReentrantMonitor.h
-
-
* - ``mozilla::StaticMutex``
- xpcom/base/StaticMutex.h
- ``std::mutex``
- Mutex that can (and in fact, must) be used as a global/static variable.
Miscellaneous
~~~~~~~~~~~~~
.. list-table::
:widths: 25 25 25 25
:header-rows: 1
* - Name
- Header
- STL/boost equivalent
- Notes
* - ``mozilla::AlignedStorage``
- mfbt/Alignment.h
- ``std::aligned_storage``
-
* - ``mozilla::MaybeOneOf``
- mfbt/MaybeOneOf.h
- ``std::optional<std::variant<T1, T2>>``
- ~ ``mozilla::Maybe<union {T1, T2}>``
* - ``mozilla::CompactPair``
- mfbt/CompactPair.h
- ``std::tuple<T1, T2>``
- minimal space!
* - ``mozilla::TimeStamp``
- xpcom/ds/TimeStamp.h
- ``std::chrono::time_point``
-
* -
- mozilla/PodOperations.h
-
- C++ versions of ``memset``, ``memcpy``, etc.
* -
- mozilla/ArrayUtils.h
-
-
* -
- mozilla/Compression.h
-
-
* -
- mozilla/Endian.h
-
-
* -
- mozilla/FloatingPoint.h
-
-
* -
- mozilla/HashFunctions.h
- ``std::hash``
-
* -
- mozilla/Move.h
- ``std::move``, ``std::swap``, ``std::forward``
-
Mozilla data structures and standard C++ ranges and iterators
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Some Mozilla-defined data structures provide STL-style
`iterators <https://en.cppreference.com/w/cpp/named_req/Iterator>`__ and
are usable in `range-based for
loops <https://en.cppreference.com/w/cpp/language/range-for>`__ as well
as STL `algorithms <https://en.cppreference.com/w/cpp/algorithm>`__.
Currently, these include:
.. list-table::
:widths: 16 16 16 16 16
:header-rows: 1
* - Name
- Header
- Bug(s)
- Iterator category
- Notes
* - ``nsTArray``
- ``xpcom/ds/n sTArray.h``
- `1126552 <https://bugzilla.mozilla.org/show_bug.cgi?id=1126552>`__
- Random-access
- Also reverse-iterable. Also supports remove-erase pattern via RemoveElementsAt method. Also supports back-inserting output iterators via ``MakeBackInserter`` function.
* - ``nsBaseHashtable`` and subclasses: ``nsTHashMap`` ``nsTHashSet`` ``nsClassHashtable`` ``nsInterfaceHashtable`` ``nsRefPtrHashtable``
- ``xpcom/ds/nsBaseHashtable.h`` ``xpcom/ds/nsTHashMap.h`` ``xpcom/ds/nsTHashSet.h`` ``xpcom/ds/nsClassHashtable.h`` ``xpcom/ds/nsInterfaceHashtable.h`` ``xpcom/ds/nsRefPtrHashtable.h``
- `1575479 <https://bugzilla.mozilla.org/show_bug.cgi?id=1575479>`__
- Forward
-
* - ``nsCOMArray``
- ``xpcom/ds/nsCOMArray.h``
- `1342303 <https://bugzilla.mozilla.org/show_bug.cgi?id=1342303>`__
- Random-access
- Also reverse-iterable.
* - ``Array`` ``EnumerationArray`` ``RangedArray``
- ``mfbt/Array.h`` ``mfbt/EnumerationArray.h`` ``mfbt/RangedArray.h``
- `1216041 <https://bugzilla.mozilla.org/show_bug.cgi?id=1216041>`__
- Random-access
- Also reverse-iterable.
* - ``Buffer``
- ``mfbt/Buffer.h``
- `1512155 <https://bugzilla.mozilla.org/show_bug.cgi?id=1512155>`__
- Random-access
- Also reverse-iterable.
* - ``DoublyLinkedList``
- ``mfbt/DoublyLinkedList.h``
- `1277725 <https://bugzilla.mozilla.org/show_bug.cgi?id=1277725>`__
- Forward
-
* - ``EnumeratedRange``
- ``mfbt/EnumeratedRange.h``
- `1142999 <https://bugzilla.mozilla.org/show_bug.cgi?id=1142999>`__
- *Missing*
- Also reverse-iterable.
* - ``IntegerRange``
- ``mfbt/IntegerRange.h``
- `1126701 <https://bugzilla.mozilla.org/show_bug.cgi?id=1126701>`__
- *Missing*
- Also reverse-iterable.
* - ``SmallPointerArray``
- ``mfbt/SmallPointerArray.h``
- `1331718 <https://bugzilla.mozilla.org/show_bug.cgi?id=1331718>`__
- Random-access
-
* - ``Span``
- ``mfbt/Span.h``
- `1295611 <https://bugzilla.mozilla.org/show_bug.cgi?id=1295611>`__
- Random-access
- Also reverse-iterable.
Note that if the iterator category is stated as "missing", the type is
probably only usable in range-based for. This is most likely just an
omission, which could be easily fixed.
Useful in this context are also the class template ``IteratorRange``
(which can be used to construct a range from any pair of iterators) and
function template ``Reversed`` (which can be used to reverse any range),
both defined in ``mfbt/ReverseIterator.h``
Further C++ rules
-----------------
Don't use static constructors
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(You probably shouldn't be using global variables to begin with. Quite
apart from the weighty software-engineering arguments against them,
globals affect startup time! But sometimes we have to do ugly things.)
Non-portable example:
.. code-block:: cpp
FooBarClass static_object(87, 92);
void
bar()
{
if (static_object.count > 15) {
...
}
}
Once upon a time, there were compiler bugs that could result in
constructors not being called for global objects. Those bugs are
probably long gone by now, but even with the feature working correctly,
there are so many problems with correctly ordering C++ constructors that
it's easier to just have an init function:
.. code-block:: cpp
static FooBarClass* static_object;
FooBarClass*
getStaticObject()
{
if (!static_object)
static_object =
new FooBarClass(87, 92);
return static_object;
}
void
bar()
{
if (getStaticObject()->count > 15) {
...
}
}
Don't use exceptions
~~~~~~~~~~~~~~~~~~~~
See the introduction to the "C++ language features" section at the start
of this document.
Don't use Run-time Type Information
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See the introduction to the "C++ language features" section at the start
of this document.
If you need runtime typing, you can achieve a similar result by adding a
``classOf()`` virtual member function to the base class of your
hierarchy and overriding that member function in each subclass. If
``classOf()`` returns a unique value for each class in the hierarchy,
you'll be able to do type comparisons at runtime.
Don't use the C++ standard library (including iostream and locale)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
See the section "C++ and Mozilla standard libraries".
Use C++ lambdas, but with care
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
C++ lambdas are supported across all our compilers now. Rejoice! We
recommend explicitly listing out the variables that you capture in the
lambda, both for documentation purposes, and to double-check that you're
only capturing what you expect to capture.
Use namespaces
~~~~~~~~~~~~~~
Namespaces may be used according to the style guidelines in :ref:`C++ Coding style`.
Don't mix varargs and inlines
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What? Why are you using varargs to begin with?! Stop that at once!
Make header files compatible with C and C++
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Non-portable example:
.. code-block:: cpp
/*oldCheader.h*/
int existingCfunction(char*);
int anotherExistingCfunction(char*);
/* oldCfile.c */
#include "oldCheader.h"
...
// new file.cpp
extern "C" {
#include "oldCheader.h"
};
...
If you make new header files with exposed C interfaces, make the header
files work correctly when they are included by both C and C++ files.
(If you need to include a C header in new C++ files, that should just
work. If not, it's the C header maintainer's fault, so fix the header if
you can, and if not, whatever hack you come up with will probably be
fine.)
Portable example:
.. code-block:: cpp
/* oldCheader.h*/
PR_BEGIN_EXTERN_C
int existingCfunction(char*);
int anotherExistingCfunction(char*);
PR_END_EXTERN_C
/* oldCfile.c */
#include "oldCheader.h"
...
// new file.cpp
#include "oldCheader.h"
...
There are number of reasons for doing this, other than just good style.
For one thing, you are making life easier for everyone else, doing the
work in one common place (the header file) instead of all the C++ files
that include it. Also, by making the C header safe for C++, you document
that "hey, this file is now being included in C++". That's a good thing.
You also avoid a big portability nightmare that is nasty to fix...
Use override on subclass virtual member functions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The ``override`` keyword is supported in C++11 and in all our supported
compilers, and it catches bugs.
Always declare a copy constructor and assignment operator
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Many classes shouldn't be copied or assigned. If you're writing one of
these, the way to enforce your policy is to declare a deleted copy
constructor as private and not supply a definition. While you're at it,
do the same for the assignment operator used for assignment of objects
of the same class. Example:
.. code-block:: cpp
class Foo {
...
private:
Foo(const Foo& x) = delete;
Foo& operator=(const Foo& x) = delete;
};
Any code that implicitly calls the copy constructor will hit a
compile-time error. That way nothing happens in the dark. When a user's
code won't compile, they'll see that they were passing by value, when
they meant to pass by reference (oops).
Be careful of overloaded methods with like signatures
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It's best to avoid overloading methods when the type signature of the
methods differs only by one "abstract" type (e.g. ``PR_Int32`` or
``int32``). What you will find as you move that code to different
platforms, is suddenly on the Foo2000 compiler your overloaded methods
will have the same type-signature.
Type scalar constants to avoid unexpected ambiguities
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Non-portable code:
.. code-block:: cpp
class FooClass {
// having such similar signatures
// is a bad idea in the first place.
void doit(long);
void doit(short);
};
void
B::foo(FooClass* xyz)
{
xyz->doit(45);
}
Be sure to type your scalar constants, e.g., ``uint32_t(10)`` or
``10L``. Otherwise, you can produce ambiguous function calls which
potentially could resolve to multiple methods, particularly if you
haven't followed (2) above. Not all of the compilers will flag ambiguous
method calls.
Portable code:
.. code-block:: cpp
class FooClass {
// having such similar signatures
// is a bad idea in the first place.
void doit(long);
void doit(short);
};
void
B::foo(FooClass* xyz)
{
xyz->doit(45L);
}
Use nsCOMPtr in XPCOM code
~~~~~~~~~~~~~~~~~~~~~~~~~~
See the ``nsCOMPtr`` `User
Manual <https://developer.mozilla.org/en-US/docs/Using_nsCOMPtr>`__ for
usage details.
Don't use identifiers that start with an underscore
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This rule occasionally surprises people who've been hacking C++ for
decades. But it comes directly from the C++ standard!
According to the C++ Standard, 17.4.3.1.2 Global Names
[lib.global.names], paragraph 1:
Certain sets of names and function signatures are always reserved to the
implementation:
- Each name that contains a double underscore (__) or begins with an
underscore followed by an uppercase letter (2.11) is reserved to the
implementation for any use.
- **Each name that begins with an underscore is reserved to the
implementation** for use as a name in the global namespace.
Stuff that is good to do for C or C++
-------------------------------------
Avoid conditional #includes when possible
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Don't write an ``#include`` inside an ``#ifdef`` if you could instead
put it outside. Unconditional includes are better because they make the
compilation more similar across all platforms and configurations, so
you're less likely to cause stupid compiler errors on someone else's
favorite platform that you never use.
Bad code example:
.. code-block:: cpp
#ifdef MOZ_ENABLE_JPEG_FOUR_BILLION
#include <stdlib.h> // <--- don't do this
#include "jpeg4e9.h" // <--- only do this if the header really might not be there
#endif
Of course when you're including different system files for different
machines, you don't have much choice. That's different.
Every .cpp source file should have a unique name
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Every object file linked into libxul needs to have a unique name. Avoid
generic names like nsModule.cpp and instead use nsPlacesModule.cpp.
Turn on warnings for your compiler, and then write warning free code
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What generates a warning on one platform will generate errors on
another. Turn warnings on. Write warning-free code. It's good for you.
Treat warnings as errors by adding
``ac_add_options --enable-warnings-as-errors`` to your mozconfig file.
Use the same type for all bitfields in a ``struct`` or ``class``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Some compilers do not pack the bits when different bitfields are given
different types. For example, the following struct might have a size of
8 bytes, even though it would fit in 1:
.. code-block:: cpp
struct {
char ch: 1;
int i: 1;
};
Don't use an enum type for a bitfield
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The classic example of this is using ``PRBool`` for a boolean bitfield.
Don't do that. ``PRBool`` is a signed integer type, so the bitfield's
value when set will be ``-1`` instead of ``+1``, which---I know,
*crazy*, right? The things C++ hackers used to have to put up with...
You shouldn't be using ``PRBool`` anyway. Use ``bool``. Bitfields of
type ``bool`` are fine.
Enums are signed on some platforms (in some configurations) and unsigned
on others and therefore unsuitable for writing portable code when every
bit counts, even if they happen to work on your system.
|