summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/misc/source_location.cpp
blob: c632378050846ee04781f6ed98c9c556dfb519fa (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
51
52
53
54
#include "source_location.h" 
 
#include <string.h> 
 
namespace NYT { 
 
//////////////////////////////////////////////////////////////////////////////// 
 
const char* TSourceLocation::GetFileName() const 
{ 
    return FileName_; 
} 
 
int TSourceLocation::GetLine() const 
{ 
    return Line_; 
} 
 
bool TSourceLocation::IsValid() const 
{ 
    return FileName_ != nullptr; 
} 
 
bool TSourceLocation::operator<(const TSourceLocation& other) const 
{ 
    const char* fileName = FileName_ ? FileName_ : ""; 
    const char* otherFileName = other.FileName_ ? other.FileName_ : ""; 
    int fileNameResult = strcmp(fileName, otherFileName); 
    if (fileNameResult != 0) { 
        return fileNameResult < 0;
    } 
 
    if (Line_ < other.Line_) { 
        return true; 
    } 
    if (Line_ > other.Line_) { 
        return false; 
    } 
 
    return false; 
} 
 
bool TSourceLocation::operator==(const TSourceLocation& other) const 
{ 
    const char* fileName = FileName_ ? FileName_ : ""; 
    const char* otherFileName = other.FileName_ ? other.FileName_ : ""; 
    return 
        strcmp(fileName, otherFileName) == 0 && 
        Line_ == other.Line_; 
} 
 
//////////////////////////////////////////////////////////////////////////////// 
 
} // namespace NYT