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
3 // found in the LICENSE file.
5 #ifndef NET_HTTP_HTTP_BYTE_RANGE_H_
6 #define NET_HTTP_HTTP_BYTE_RANGE_H_
8 #include "base/basictypes.h"
9 #include "net/base/net_export.h"
13 // A container class that represents a "range" specified for range request
14 // specified by RFC 2616 Section 14.35.1.
15 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.1
16 class NET_EXPORT HttpByteRange
{
20 // Since this class is POD, we use constructor, assignment operator
21 // and destructor provided by compiler.
22 int64
first_byte_position() const { return first_byte_position_
; }
23 void set_first_byte_position(int64 value
) { first_byte_position_
= value
; }
25 int64
last_byte_position() const { return last_byte_position_
; }
26 void set_last_byte_position(int64 value
) { last_byte_position_
= value
; }
28 int64
suffix_length() const { return suffix_length_
; }
29 void set_suffix_length(int64 value
) { suffix_length_
= value
; }
31 // Returns true if this is a suffix byte range.
32 bool IsSuffixByteRange() const;
33 // Returns true if the first byte position is specified in this request.
34 bool HasFirstBytePosition() const;
35 // Returns true if the last byte position is specified in this request.
36 bool HasLastBytePosition() const;
38 // Returns true if this range is valid.
41 // 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
43 // 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
46 // Returns false if this method is called more than once and there will be
48 bool ComputeBounds(int64 size
);
51 int64 first_byte_position_
;
52 int64 last_byte_position_
;
54 bool has_computed_bounds_
;
59 #endif // NET_HTTP_HTTP_BYTE_RANGE_H_