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
|
/*
* HTTPTransaction.cpp
*****************************************************************************
* Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
*
* Email: libdash-dev@vicky.bitmovin.net
*
* This source code and its use and distribution, is subject to the terms
* and conditions of the applicable license agreement.
*****************************************************************************/
#include "HTTPTransaction.h"
using namespace dash::metrics;
HTTPTransaction::HTTPTransaction () :
tcpId (0),
type (dash::metrics::Other),
responseCode (0),
interval (0),
url (""),
actualUrl (""),
range (""),
tRequest (""),
tResponse (""),
httpHeader ("")
{
}
HTTPTransaction::~HTTPTransaction()
{
for (size_t i = 0; i < trace.size(); i++)
delete trace.at(i);
}
uint32_t HTTPTransaction::TCPId () const
{
return this->tcpId;
}
void HTTPTransaction::SetTCPId (uint32_t tcpId)
{
this->tcpId = tcpId;
}
HTTPTransactionType HTTPTransaction::Type () const
{
return this->type;
}
void HTTPTransaction::SetType (HTTPTransactionType type)
{
this->type = type;
}
const std::string& HTTPTransaction::OriginalUrl () const
{
return this->url;
}
void HTTPTransaction::SetOriginalUrl (const std::string& origUrl)
{
this->url = origUrl;
}
const std::string& HTTPTransaction::ActualUrl () const
{
return this->actualUrl;
}
void HTTPTransaction::SetActualUrl (const std::string& actUrl)
{
this->actualUrl = actUrl;
}
const std::string& HTTPTransaction::Range () const
{
return this->range;
}
void HTTPTransaction::SetRange (const std::string& range)
{
this->range = range;
}
const std::string& HTTPTransaction::RequestSentTime () const
{
return this->tRequest;
}
void HTTPTransaction::SetRequestSentTime (std::string tRequest)
{
this->tRequest = tRequest;
}
const std::string& HTTPTransaction::ResponseReceivedTime () const
{
return this->tResponse;
}
void HTTPTransaction::SetResponseReceivedTime (std::string tResponse)
{
this->tResponse = tResponse;
}
uint16_t HTTPTransaction::ResponseCode () const
{
return this->responseCode;
}
void HTTPTransaction::SetResponseCode (uint16_t respCode)
{
this->responseCode = respCode;
}
uint64_t HTTPTransaction::Interval () const
{
return this->interval;
}
void HTTPTransaction::SetInterval (uint64_t interval)
{
this->interval = interval;
}
const std::vector<IThroughputMeasurement *>& HTTPTransaction::ThroughputTrace () const
{
return (std::vector<IThroughputMeasurement *> &) this->trace;
}
void HTTPTransaction::AddThroughputMeasurement (ThroughputMeasurement *throuputEntry)
{
this->trace.push_back(throuputEntry);
}
const std::string& HTTPTransaction::HTTPHeader () const
{
return this->httpHeader;
}
void HTTPTransaction::AddHTTPHeaderLine (std::string headerLine)
{
this->httpHeader.append(headerLine);
}
|