forked from mirrors/gecko-dev
		
	 e0bdf23b2e
			
		
	
	
		e0bdf23b2e
		
	
	
	
	
		
			
			In order to properly disable template functions with `std::enable_if` we need to use the resulting type. This only works if we use a dependent type in the template params, hence the need to shadow the `T` param. Proper usage is now of the form: template<typename Q = T, typename EnableIfChar = CharOnlyT<Q>> Foo(); --HG-- extra : rebase_source : da7855403d9e683d06d3858e26805e9d8e338208
		
			
				
	
	
		
			166 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			166 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			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/. */
 | |
| // IWYU pragma: private, include "nsString.h"
 | |
| 
 | |
| #ifndef nsTDependentSubstring_h
 | |
| #define nsTDependentSubstring_h
 | |
| 
 | |
| #include "nsTSubstring.h"
 | |
| #include "nsTLiteralString.h"
 | |
| 
 | |
| /**
 | |
|  * nsTDependentSubstring_CharT
 | |
|  *
 | |
|  * A string class which wraps an external array of string characters. It
 | |
|  * is the client code's responsibility to ensure that the external buffer
 | |
|  * remains valid for a long as the string is alive.
 | |
|  *
 | |
|  * NAMES:
 | |
|  *   nsDependentSubstring for wide characters
 | |
|  *   nsDependentCSubstring for narrow characters
 | |
|  */
 | |
| template <typename T>
 | |
| class nsTDependentSubstring : public nsTSubstring<T>
 | |
| {
 | |
| public:
 | |
| 
 | |
|   typedef nsTDependentSubstring<T> self_type;
 | |
|   typedef nsTSubstring<T> substring_type;
 | |
|   typedef typename substring_type::fallible_t fallible_t;
 | |
| 
 | |
|   typedef typename substring_type::char_type char_type;
 | |
|   typedef typename substring_type::char_traits char_traits;
 | |
|   typedef typename substring_type::incompatible_char_type incompatible_char_type;
 | |
| 
 | |
|   typedef typename substring_type::substring_tuple_type substring_tuple_type;
 | |
| 
 | |
|   typedef typename substring_type::const_iterator const_iterator;
 | |
|   typedef typename substring_type::iterator iterator;
 | |
| 
 | |
|   typedef typename substring_type::comparator_type comparator_type;
 | |
| 
 | |
|   typedef typename substring_type::char_iterator char_iterator;
 | |
|   typedef typename substring_type::const_char_iterator const_char_iterator;
 | |
| 
 | |
|   typedef typename substring_type::index_type index_type;
 | |
|   typedef typename substring_type::size_type size_type;
 | |
| 
 | |
|   // These are only for internal use within the string classes:
 | |
|   typedef typename substring_type::DataFlags DataFlags;
 | |
|   typedef typename substring_type::ClassFlags ClassFlags;
 | |
| 
 | |
| public:
 | |
| 
 | |
|   void Rebind(const substring_type&, uint32_t aStartPos,
 | |
|               uint32_t aLength = size_type(-1));
 | |
| 
 | |
|   void Rebind(const char_type* aData, size_type aLength);
 | |
| 
 | |
|   void Rebind(const char_type* aStart, const char_type* aEnd);
 | |
| 
 | |
|   nsTDependentSubstring(const substring_type& aStr, uint32_t aStartPos,
 | |
|                         uint32_t aLength = size_type(-1))
 | |
|     : substring_type()
 | |
|   {
 | |
|     Rebind(aStr, aStartPos, aLength);
 | |
|   }
 | |
| 
 | |
|   nsTDependentSubstring(const char_type* aData, size_type aLength)
 | |
|     : substring_type(const_cast<char_type*>(aData), aLength,
 | |
|                      DataFlags(0), ClassFlags(0))
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   nsTDependentSubstring(const char_type* aStart, const char_type* aEnd);
 | |
| 
 | |
| #if defined(MOZ_USE_CHAR16_WRAPPER)
 | |
|   template <typename Q = T, typename EnableIfChar16 = mozilla::Char16OnlyT<Q>>
 | |
|   nsTDependentSubstring(char16ptr_t aData, size_type aLength)
 | |
|     : nsTDependentSubstring(static_cast<const char16_t*>(aData), aLength)
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   template <typename Q = T, typename EnableIfChar16 = mozilla::Char16OnlyT<Q>>
 | |
|   nsTDependentSubstring(char16ptr_t aStart, char16ptr_t aEnd);
 | |
| #endif
 | |
| 
 | |
|   nsTDependentSubstring(const const_iterator& aStart,
 | |
|                         const const_iterator& aEnd);
 | |
| 
 | |
|   // Create a nsTDependentSubstring to be bound later
 | |
|   nsTDependentSubstring()
 | |
|     : substring_type()
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   // auto-generated copy-constructor OK (XXX really?? what about base class copy-ctor?)
 | |
| 
 | |
| private:
 | |
|   // NOT USED
 | |
|   void operator=(const self_type&);  // we're immutable, you can't assign into a substring
 | |
| };
 | |
| 
 | |
| extern template class nsTDependentSubstring<char>;
 | |
| extern template class nsTDependentSubstring<char16_t>;
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| Substring(const nsTSubstring<T>& aStr, uint32_t aStartPos,
 | |
|           uint32_t aLength = uint32_t(-1))
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aStr, aStartPos, aLength);
 | |
| }
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| Substring(const nsTLiteralString<T>& aStr, uint32_t aStartPos,
 | |
|           uint32_t aLength = uint32_t(-1))
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aStr, aStartPos, aLength);
 | |
| }
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| Substring(const nsReadingIterator<T>& aStart,
 | |
|           const nsReadingIterator<T>& aEnd)
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aStart.get(), aEnd.get());
 | |
| }
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| Substring(const T* aData, uint32_t aLength)
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aData, aLength);
 | |
| }
 | |
| 
 | |
| template <typename T>
 | |
| const nsTDependentSubstring<T>
 | |
| Substring(const T* aStart, const T* aEnd);
 | |
| 
 | |
| #if defined(MOZ_USE_CHAR16_WRAPPER)
 | |
| inline const nsTDependentSubstring<char16_t>
 | |
| Substring(char16ptr_t aData, uint32_t aLength);
 | |
| 
 | |
| const nsTDependentSubstring<char16_t>
 | |
| Substring(char16ptr_t aStart, char16ptr_t aEnd);
 | |
| #endif
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| StringHead(const nsTSubstring<T>& aStr, uint32_t aCount)
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aStr, 0, aCount);
 | |
| }
 | |
| 
 | |
| template <typename T>
 | |
| inline const nsTDependentSubstring<T>
 | |
| StringTail(const nsTSubstring<T>& aStr, uint32_t aCount)
 | |
| {
 | |
|   return nsTDependentSubstring<T>(aStr, aStr.Length() - aCount, aCount);
 | |
| }
 | |
| 
 | |
| #endif
 |