blob: af976e0c6831c0476ffc9694f9ddc5da74ed7894 [file] [log] [blame]
Alex Deymoa5cff222015-04-08 14:10:30 -07001// Copyright 2015 The Chromium OS 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.
4
5#ifndef _BSDIFF_EXTENTS_H_
6#define _BSDIFF_EXTENTS_H_
Gilad Arnold99b53742013-04-30 09:24:14 -07007
Alex Deymo03f1deb2015-10-13 02:15:31 -07008#include "extents_file.h"
Gilad Arnold99b53742013-04-30 09:24:14 -07009
Alex Deymo03f1deb2015-10-13 02:15:31 -070010namespace bsdiff {
Gilad Arnold99b53742013-04-30 09:24:14 -070011
12/* Parses a string representation |ex_str| and populates an array |ex_arr|
13 * consisting of |*ex_count_p| extents. The string is expected to be a
14 * comma-separated list of pairs of the form "offset:length". An offset may be
15 * -1 or a non-negative integer; the former indicates a sparse extent
16 * (consisting of zeros). A length is a positive integer. If |ex_arr| is NULL,
17 * |*ex_count_p| is ignored and a new array is allocated based on the actual
18 * number of extents parsed. Upon success, returns a pointer to the populated
19 * array of extents and stores the actual number of extents at the location
20 * pointed to be |ex_count_p| (if provided). If the string parses correctly but
21 * the operation otherwise fails (allocation error, array too small), returns
22 * NULL but still store the number of parsed extents. Otherwise, returns NULL
23 * and does not store anything. If a new array was allocated, then it should be
24 * deallocated with free(3). */
Alex Deymoe1526cf2015-10-12 17:48:28 -070025ex_t* extents_parse(const char* ex_str, ex_t* ex_arr, size_t* ex_count_p);
Gilad Arnold99b53742013-04-30 09:24:14 -070026
Alex Deymo03f1deb2015-10-13 02:15:31 -070027} // namespace bsdiff
28
Alex Deymoe1526cf2015-10-12 17:48:28 -070029#endif /* _BSDIFF_EXTENTS_H_ */