A Discrete-Event Network Simulator
API
ns3::Hash::Function::Hash64 Class Reference

Template for creating a Hash::Implementation from a 64-bit hash function. More...

#include "hash-function.h"

+ Inheritance diagram for ns3::Hash::Function::Hash64:
+ Collaboration diagram for ns3::Hash::Function::Hash64:

Public Member Functions

 Hash64 (Hash64Function_ptr hp)
 Constructor from a 64-bit hash function pointer. More...
 
void clear ()
 Restore initial state. More...
 
uint32_t GetHash32 (const char *buffer, const std::size_t size)
 Compute 32-bit hash of a byte buffer. More...
 
uint64_t GetHash64 (const char *buffer, const std::size_t size)
 Compute 64-bit hash of a byte buffer. More...
 
- Public Member Functions inherited from ns3::Hash::Implementation
 Implementation ()
 Constructor. More...
 
virtual ~Implementation ()
 Destructor. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< Implementation >
 SimpleRefCount ()
 Default constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment operator. More...
 
void Ref (void) const
 Increment the reference count. More...
 
void Unref (void) const
 Decrement the reference count. More...
 

Private Attributes

Hash64Function_ptr m_fp
 The hash function. More...
 

Detailed Description

Template for creating a Hash::Implementation from a 64-bit hash function.

Definition at line 156 of file hash-function.h.

Constructor & Destructor Documentation

◆ Hash64()

ns3::Hash::Function::Hash64::Hash64 ( Hash64Function_ptr  hp)
inline

Constructor from a 64-bit hash function pointer.

Parameters
[in]hpFunction pointer to a 64-bit hash function.

Definition at line 164 of file hash-function.h.

Member Function Documentation

◆ clear()

void ns3::Hash::Function::Hash64::clear ( )
inlinevirtual

Restore initial state.

Implements ns3::Hash::Implementation.

Definition at line 178 of file hash-function.h.

◆ GetHash32()

uint32_t ns3::Hash::Function::Hash64::GetHash32 ( const char *  buffer,
const std::size_t  size 
)
inlinevirtual

Compute 32-bit hash of a byte buffer.

Call clear() between calls to GetHash32() to reset the internal state and hash each buffer separately.

If you don't call clear() between calls to GetHash32, you can hash successive buffers. The final return value will be the cumulative hash across all calls.

Parameters
[in]bufferPointer to the beginning of the buffer.
[in]sizeLength of the buffer, in bytes.
Returns
32-bit hash of the buffer.

Implements ns3::Hash::Implementation.

Definition at line 170 of file hash-function.h.

References GetHash64().

+ Here is the call graph for this function:

◆ GetHash64()

uint64_t ns3::Hash::Function::Hash64::GetHash64 ( const char *  buffer,
const std::size_t  size 
)
inlinevirtual

Compute 64-bit hash of a byte buffer.

Default implementation returns 32-bit hash, with a warning.

Call clear() between calls to GetHash64() to reset the internal state and hash each buffer separately.

If you don't call clear() between calls to GetHash64, you can hash successive buffers. The final return value will be the cumulative hash across all calls.

Parameters
[in]bufferPointer to the beginning of the buffer.
[in]sizeLength of the buffer, in bytes.
Returns
64-bit hash of the buffer.

Reimplemented from ns3::Hash::Implementation.

Definition at line 166 of file hash-function.h.

References m_fp.

Referenced by GetHash32().

+ Here is the caller graph for this function:

Member Data Documentation

◆ m_fp

Hash64Function_ptr ns3::Hash::Function::Hash64::m_fp
private

The hash function.

Definition at line 182 of file hash-function.h.

Referenced by GetHash64().


The documentation for this class was generated from the following file: