2010-05-21 04:23:48 +00:00
|
|
|
/*
|
2012-12-04 11:56:32 +00:00
|
|
|
* virbitmap.h: Simple bitmap operations
|
2010-05-21 04:23:48 +00:00
|
|
|
*
|
2013-02-02 00:33:18 +00:00
|
|
|
* Copyright (C) 2012-2013 Red Hat, Inc.
|
2010-05-21 04:23:48 +00:00
|
|
|
* Copyright (C) 2010 Novell, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2010-05-21 04:23:48 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#pragma once
|
2010-05-21 04:23:48 +00:00
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virautoclean.h"
|
2010-05-21 04:23:48 +00:00
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#include <sys/types.h>
|
2010-05-21 04:23:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _virBitmap virBitmap;
|
|
|
|
typedef virBitmap *virBitmapPtr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a bitmap capable of containing @size bits.
|
|
|
|
*/
|
2015-01-30 10:19:59 +00:00
|
|
|
virBitmapPtr virBitmapNewQuiet(size_t size) ATTRIBUTE_RETURN_CHECK;
|
2012-09-14 07:46:56 +00:00
|
|
|
virBitmapPtr virBitmapNew(size_t size) ATTRIBUTE_RETURN_CHECK;
|
2016-03-18 14:41:59 +00:00
|
|
|
virBitmapPtr virBitmapNewEmpty(void) ATTRIBUTE_RETURN_CHECK;
|
2010-05-21 04:23:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Free previously allocated bitmap
|
|
|
|
*/
|
|
|
|
void virBitmapFree(virBitmapPtr bitmap);
|
|
|
|
|
2012-09-06 15:09:32 +00:00
|
|
|
/*
|
|
|
|
* Copy all bits from @src to @dst. The bitmap sizes
|
|
|
|
* must be the same
|
|
|
|
*/
|
|
|
|
int virBitmapCopy(virBitmapPtr dst, virBitmapPtr src);
|
|
|
|
|
2010-05-21 04:23:48 +00:00
|
|
|
/*
|
|
|
|
* Set bit position @b in @bitmap
|
|
|
|
*/
|
|
|
|
int virBitmapSetBit(virBitmapPtr bitmap, size_t b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2016-03-18 14:41:59 +00:00
|
|
|
int virBitmapSetBitExpand(virBitmapPtr bitmap, size_t b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
|
|
|
|
2010-05-21 04:23:48 +00:00
|
|
|
/*
|
|
|
|
* Clear bit position @b in @bitmap
|
|
|
|
*/
|
|
|
|
int virBitmapClearBit(virBitmapPtr bitmap, size_t b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2016-03-18 14:41:59 +00:00
|
|
|
int virBitmapClearBitExpand(virBitmapPtr bitmap, size_t b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2015-03-11 15:41:57 +00:00
|
|
|
/*
|
|
|
|
* Get bit @b in @bitmap. Returns false if b is out of range.
|
|
|
|
*/
|
|
|
|
bool virBitmapIsBitSet(virBitmapPtr bitmap, size_t b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
2010-05-21 04:23:48 +00:00
|
|
|
/*
|
|
|
|
* Get setting of bit position @b in @bitmap and store in @result
|
|
|
|
*/
|
|
|
|
int virBitmapGetBit(virBitmapPtr bitmap, size_t b, bool *result)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2017-08-23 07:12:10 +00:00
|
|
|
virBitmapPtr
|
|
|
|
virBitmapNewString(const char *string)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2017-08-23 07:09:17 +00:00
|
|
|
char *virBitmapToString(virBitmapPtr bitmap, bool prefix, bool trim)
|
2011-02-09 12:14:51 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2014-06-05 10:42:40 +00:00
|
|
|
char *virBitmapFormat(virBitmapPtr bitmap);
|
2012-09-14 07:46:57 +00:00
|
|
|
|
|
|
|
int virBitmapParse(const char *str,
|
|
|
|
virBitmapPtr *bitmap,
|
|
|
|
size_t bitmapSize)
|
2016-06-17 12:56:45 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
2016-06-17 12:38:11 +00:00
|
|
|
int
|
|
|
|
virBitmapParseSeparator(const char *str,
|
|
|
|
char terminator,
|
|
|
|
virBitmapPtr *bitmap,
|
|
|
|
size_t bitmapSize);
|
2017-03-22 13:39:53 +00:00
|
|
|
virBitmapPtr
|
2017-03-21 17:51:11 +00:00
|
|
|
virBitmapParseUnlimited(const char *str);
|
2012-09-14 07:46:57 +00:00
|
|
|
|
|
|
|
virBitmapPtr virBitmapNewCopy(virBitmapPtr src) ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2016-09-29 10:56:58 +00:00
|
|
|
virBitmapPtr virBitmapNewData(const void *data, int len) ATTRIBUTE_NONNULL(1);
|
2012-09-14 07:46:57 +00:00
|
|
|
|
|
|
|
int virBitmapToData(virBitmapPtr bitmap, unsigned char **data, int *dataLen)
|
2015-05-21 16:25:36 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3);
|
|
|
|
|
|
|
|
void virBitmapToDataBuf(virBitmapPtr bitmap, unsigned char *data, size_t len)
|
2012-09-14 07:46:57 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2015-01-20 18:41:08 +00:00
|
|
|
bool virBitmapEqual(virBitmapPtr b1, virBitmapPtr b2);
|
2012-09-14 07:46:57 +00:00
|
|
|
|
|
|
|
size_t virBitmapSize(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
|
|
|
void virBitmapSetAll(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
|
|
|
void virBitmapClearAll(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
|
|
|
bool virBitmapIsAllSet(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2013-04-05 18:06:16 +00:00
|
|
|
bool virBitmapIsAllClear(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2012-10-25 00:44:27 +00:00
|
|
|
ssize_t virBitmapNextSetBit(virBitmapPtr bitmap, ssize_t pos)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2014-11-04 02:44:39 +00:00
|
|
|
ssize_t virBitmapLastSetBit(virBitmapPtr bitmap)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2013-02-02 00:33:18 +00:00
|
|
|
ssize_t virBitmapNextClearBit(virBitmapPtr bitmap, ssize_t pos)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2012-10-25 00:44:27 +00:00
|
|
|
size_t virBitmapCountBits(virBitmapPtr bitmap)
|
2012-09-14 07:46:57 +00:00
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
2017-08-23 07:05:41 +00:00
|
|
|
char *virBitmapDataFormat(const void *data,
|
|
|
|
int len)
|
2014-06-05 09:23:28 +00:00
|
|
|
ATTRIBUTE_NONNULL(1);
|
2014-07-23 15:37:19 +00:00
|
|
|
bool virBitmapOverlaps(virBitmapPtr b1,
|
|
|
|
virBitmapPtr b2)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
2014-06-05 09:23:28 +00:00
|
|
|
|
2017-07-12 11:30:47 +00:00
|
|
|
void virBitmapIntersect(virBitmapPtr a, virBitmapPtr b)
|
2016-01-07 14:45:39 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2019-05-30 17:08:28 +00:00
|
|
|
int virBitmapUnion(virBitmapPtr a,
|
|
|
|
const virBitmap *b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2017-10-05 13:09:30 +00:00
|
|
|
void virBitmapSubtract(virBitmapPtr a, virBitmapPtr b)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2018-02-05 12:50:44 +00:00
|
|
|
void virBitmapShrink(virBitmapPtr map, size_t b);
|
2017-11-09 15:12:33 +00:00
|
|
|
|
2019-02-07 17:18:52 +00:00
|
|
|
VIR_DEFINE_AUTOPTR_FUNC(virBitmap, virBitmapFree);
|