aboutsummaryrefslogtreecommitdiffstats
path: root/fsa/src/vespa/fsa/blob.cpp
blob: b3ffba9405a565f0b290559592e547348999d412 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * @author  Peter Boros
 * @date    2004/08/20
 * @version $Id$
 * @file    blob.cpp
 * @brief   Implementation of Blob class methods
 *
 */

#include "blob.h"


namespace fsa {

// {{{ Blob::operator<()

bool Blob::operator<(const Blob& b) const
{
  if(_size<b._size) return true;
  if(_size>b._size) return false;
  if(_size==0) return false;
  if(memcmp(_data,b._data,_size)<0) return true;
  return false;
}

// }}}
// {{{ Blob::operator>()

bool Blob::operator>(const Blob& b) const
{
  if(_size>b._size) return true;
  if(_size<b._size) return false;
  if(_size==0) return false;
  if(memcmp(_data,b._data,_size)>0) return true;
  return false;
}

// }}}
// {{{ Blob::operator==()

bool Blob::operator==(const Blob& b) const
{
  if(_size==b._size && (_size==0 || memcmp(_data,b._data,_size)==0)) return true;
  return false;
}

// }}}

} // namespace fsa