blob: d69b65f9f92e434025036baa08496484225a55e6 [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
8#include "exfile.h"
9
10
11/* Parses a string representation |ex_str| and populates an array |ex_arr|
12 * consisting of |*ex_count_p| extents. The string is expected to be a
13 * comma-separated list of pairs of the form "offset:length". An offset may be
14 * -1 or a non-negative integer; the former indicates a sparse extent
15 * (consisting of zeros). A length is a positive integer. If |ex_arr| is NULL,
16 * |*ex_count_p| is ignored and a new array is allocated based on the actual
17 * number of extents parsed. Upon success, returns a pointer to the populated
18 * array of extents and stores the actual number of extents at the location
19 * pointed to be |ex_count_p| (if provided). If the string parses correctly but
20 * the operation otherwise fails (allocation error, array too small), returns
21 * NULL but still store the number of parsed extents. Otherwise, returns NULL
22 * and does not store anything. If a new array was allocated, then it should be
23 * deallocated with free(3). */
Alex Deymoe1526cf2015-10-12 17:48:28 -070024ex_t* extents_parse(const char* ex_str, ex_t* ex_arr, size_t* ex_count_p);
Gilad Arnold99b53742013-04-30 09:24:14 -070025
Alex Deymoe1526cf2015-10-12 17:48:28 -070026#endif /* _BSDIFF_EXTENTS_H_ */