aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/Segment.h
blob: 6f44a6f27242b89122156251d7e690eb534d38c8 (plain)
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
/*
 * Segment.h
 *****************************************************************************
 * Copyright (C) 2013, 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.
 *****************************************************************************/

#ifndef SEGMENT_H_
#define SEGMENT_H_

#include "config.h"

#include "../network/AbstractChunk.h"
#include "../helpers/Path.h"
#include "ISegment.h"
#include "IBaseUrl.h"
#include "../metrics/HTTPTransaction.h"

namespace dash
{
    namespace mpd
    {
        class Segment : public network::AbstractChunk, public virtual ISegment
        {
            public:
                Segment         ();
                virtual ~Segment();

                bool                                Init            (const std::vector<IBaseUrl *>& baseurls, const std::string &uri,
                                                                     const std::string &range, dash::metrics::HTTPTransactionType type);
                std::string&                        AbsoluteURI     ();
                std::string&                        Host            ();
                size_t                              Port            ();
                std::string&                        Path            ();
                std::string&                        Range           ();
                size_t                              StartByte       ();
                size_t                              EndByte         ();
                bool                                HasByteRange    ();
                dash::metrics::HTTPTransactionType  GetType         ();

                void            AbsoluteURI  (std::string uri);
                void            Host         (std::string host);
                void            Port         (size_t port);
                void            Path         (std::string path);
                void            Range        (std::string range);
                void            StartByte    (size_t startByte);
                void            EndByte      (size_t endByte);
                void            HasByteRange (bool hasByteRange);
                void            SetType      (dash::metrics::HTTPTransactionType type);

            private:
                std::string                         absoluteuri;
                std::string                         host;
                size_t                              port;
                std::string                         path;
                std::string                         range;
                size_t                              startByte;
                size_t                              endByte;
                bool                                hasByteRange;
                dash::metrics::HTTPTransactionType  type;
        };
    }
}

#endif /* SEGMENT_H_ */