OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_HTTP_HTTP_BYTE_RANGE_H_ | 5 #ifndef NET_HTTP_HTTP_BYTE_RANGE_H_ |
6 #define NET_HTTP_HTTP_BYTE_RANGE_H_ | 6 #define NET_HTTP_HTTP_BYTE_RANGE_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
9 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
10 | 12 |
11 namespace net { | 13 namespace net { |
12 | 14 |
13 // A container class that represents a "range" specified for range request | 15 // A container class that represents a "range" specified for range request |
14 // specified by RFC 2616 Section 14.35.1. | 16 // specified by RFC 2616 Section 14.35.1. |
15 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.1 | 17 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.1 |
16 class NET_EXPORT HttpByteRange { | 18 class NET_EXPORT HttpByteRange { |
17 public: | 19 public: |
18 HttpByteRange(); | 20 HttpByteRange(); |
19 | 21 |
| 22 // Convenience constructors. |
| 23 static HttpByteRange Bounded(int64 first_byte_position, |
| 24 int64 last_byte_position); |
| 25 static HttpByteRange RightUnbounded(int64 first_byte_position); |
| 26 static HttpByteRange Suffix(int64 suffix_length); |
| 27 |
20 // Since this class is POD, we use constructor, assignment operator | 28 // Since this class is POD, we use constructor, assignment operator |
21 // and destructor provided by compiler. | 29 // and destructor provided by compiler. |
22 int64 first_byte_position() const { return first_byte_position_; } | 30 int64 first_byte_position() const { return first_byte_position_; } |
23 void set_first_byte_position(int64 value) { first_byte_position_ = value; } | 31 void set_first_byte_position(int64 value) { first_byte_position_ = value; } |
24 | 32 |
25 int64 last_byte_position() const { return last_byte_position_; } | 33 int64 last_byte_position() const { return last_byte_position_; } |
26 void set_last_byte_position(int64 value) { last_byte_position_ = value; } | 34 void set_last_byte_position(int64 value) { last_byte_position_ = value; } |
27 | 35 |
28 int64 suffix_length() const { return suffix_length_; } | 36 int64 suffix_length() const { return suffix_length_; } |
29 void set_suffix_length(int64 value) { suffix_length_ = value; } | 37 void set_suffix_length(int64 value) { suffix_length_ = value; } |
30 | 38 |
31 // Returns true if this is a suffix byte range. | 39 // Returns true if this is a suffix byte range. |
32 bool IsSuffixByteRange() const; | 40 bool IsSuffixByteRange() const; |
33 // Returns true if the first byte position is specified in this request. | 41 // Returns true if the first byte position is specified in this request. |
34 bool HasFirstBytePosition() const; | 42 bool HasFirstBytePosition() const; |
35 // Returns true if the last byte position is specified in this request. | 43 // Returns true if the last byte position is specified in this request. |
36 bool HasLastBytePosition() const; | 44 bool HasLastBytePosition() const; |
37 | 45 |
38 // Returns true if this range is valid. | 46 // Returns true if this range is valid. |
39 bool IsValid() const; | 47 bool IsValid() const; |
40 | 48 |
| 49 // Prints the range, e.g. "0-100", "100-", "-100". Assumes range is valid. |
| 50 std::string PrintInterval() const; |
| 51 |
41 // A method that when given the size in bytes of a file, adjust the internal | 52 // A method that when given the size in bytes of a file, adjust the internal |
42 // |first_byte_position_| and |last_byte_position_| values according to the | 53 // |first_byte_position_| and |last_byte_position_| values according to the |
43 // range specified by this object. If the range specified is invalid with | 54 // range specified by this object. If the range specified is invalid with |
44 // regard to the size or |size| is negative, returns false and there will be | 55 // regard to the size or |size| is negative, returns false and there will be |
45 // no side effect. | 56 // no side effect. |
46 // Returns false if this method is called more than once and there will be | 57 // Returns false if this method is called more than once and there will be |
47 // no side effect. | 58 // no side effect. |
48 bool ComputeBounds(int64 size); | 59 bool ComputeBounds(int64 size); |
49 | 60 |
50 private: | 61 private: |
51 int64 first_byte_position_; | 62 int64 first_byte_position_; |
52 int64 last_byte_position_; | 63 int64 last_byte_position_; |
53 int64 suffix_length_; | 64 int64 suffix_length_; |
54 bool has_computed_bounds_; | 65 bool has_computed_bounds_; |
55 }; | 66 }; |
56 | 67 |
57 } // namespace net | 68 } // namespace net |
58 | 69 |
59 #endif // NET_HTTP_HTTP_BYTE_RANGE_H_ | 70 #endif // NET_HTTP_HTTP_BYTE_RANGE_H_ |
OLD | NEW |