mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 10:23:09 +00:00
c8238579fb
Historically, we declared pointer type to our types: typedef struct _virXXX virXXX; typedef virXXX *virXXXPtr; But usefulness of such declaration is questionable, at best. Unfortunately, we can't drop every such declaration - we have to carry some over, because they are part of public API (e.g. virDomainPtr). But for internal types - we can do drop them and use what every other C project uses 'virXXX *'. This change was generated by a very ugly shell script that generated sed script which was then called over each file in the repository. For the shell script refer to the cover letter: https://listman.redhat.com/archives/libvir-list/2021-March/msg00537.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
154 lines
4.3 KiB
C
154 lines
4.3 KiB
C
/*
|
|
* vz_utils.h: core driver functions for managing
|
|
* Parallels Cloud Server hosts
|
|
*
|
|
* Copyright (C) 2012 Parallels, 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
|
|
* License along with this library; If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Parallels.h>
|
|
|
|
#include "driver.h"
|
|
#include "conf/domain_conf.h"
|
|
#include "conf/snapshot_conf.h"
|
|
#include "conf/virdomainsnapshotobjlist.h"
|
|
#include "conf/virdomainobjlist.h"
|
|
#include "conf/domain_event.h"
|
|
#include "virthread.h"
|
|
#include "datatypes.h"
|
|
|
|
#define vzParseError() \
|
|
virReportErrorHelper(VIR_FROM_TEST, VIR_ERR_OPERATION_FAILED, __FILE__, \
|
|
__FUNCTION__, __LINE__, _("Can't parse prlctl output"))
|
|
|
|
#define IS_CT(def) (def->os.type == VIR_DOMAIN_OSTYPE_EXE)
|
|
|
|
#define vzDomNotFoundError(domain) \
|
|
do { \
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN]; \
|
|
virUUIDFormat(domain->uuid, uuidstr); \
|
|
virReportError(VIR_ERR_NO_DOMAIN, \
|
|
_("no domain with matching uuid '%s'"), uuidstr); \
|
|
} while (0)
|
|
|
|
#define PARALLELS_DOMAIN_ROUTED_NETWORK_NAME "host-routed"
|
|
#define VIRTUOZZO_VER_7 ((unsigned long)7000000)
|
|
|
|
struct _vzCapabilities {
|
|
virStorageFileFormat vmDiskFormat;
|
|
virStorageFileFormat ctDiskFormat;
|
|
virDomainDiskBus *diskBuses;
|
|
virDomainControllerType *controllerTypes;
|
|
virDomainControllerModelSCSI scsiControllerModel;
|
|
};
|
|
typedef struct _vzCapabilities vzCapabilities;
|
|
|
|
/* +2 to keep enclosing { and } */
|
|
#define VIR_UUID_STRING_BRACED_BUFLEN (VIR_UUID_STRING_BUFLEN + 2)
|
|
|
|
struct _vzDriver {
|
|
virObjectLockable parent;
|
|
|
|
/* Immutable pointer, self-locking APIs */
|
|
virDomainObjList *domains;
|
|
unsigned char session_uuid[VIR_UUID_BUFLEN];
|
|
PRL_HANDLE server;
|
|
virCaps *caps;
|
|
virDomainXMLOption *xmlopt;
|
|
virObjectEventState *domainEventState;
|
|
virSysinfoDef *hostsysinfo;
|
|
unsigned long vzVersion;
|
|
vzCapabilities vzCaps;
|
|
};
|
|
|
|
typedef struct _vzDriver vzDriver;
|
|
|
|
struct _vzConn {
|
|
struct _vzConn* next;
|
|
|
|
struct _vzDriver *driver;
|
|
/* Immutable pointer, self-locking APIs */
|
|
virConnectCloseCallbackData *closeCallback;
|
|
};
|
|
|
|
typedef struct _vzConn vzConn;
|
|
|
|
struct _vzDomainJobObj {
|
|
virCond cond;
|
|
bool active;
|
|
/* when the job started, zeroed on time discontinuities */
|
|
unsigned long long started;
|
|
unsigned long long elapsed;
|
|
bool hasProgress;
|
|
int progress; /* percents */
|
|
PRL_HANDLE sdkJob;
|
|
bool cancelled;
|
|
};
|
|
|
|
typedef struct _vzDomainJobObj vzDomainJobObj;
|
|
|
|
struct vzDomObj {
|
|
int id;
|
|
PRL_HANDLE sdkdom;
|
|
PRL_HANDLE stats;
|
|
vzDomainJobObj job;
|
|
};
|
|
|
|
void* vzDomObjAlloc(void *opaque);
|
|
void vzDomObjFree(void *p);
|
|
|
|
virDomainObj *vzDomObjFromDomain(virDomainPtr domain);
|
|
|
|
char * vzGetOutput(const char *binary, ...)
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_NULL_TERMINATED;
|
|
|
|
struct _vzDriver *
|
|
vzGetDriverConnection(void);
|
|
|
|
void
|
|
vzDestroyDriverConnection(void);
|
|
|
|
int
|
|
vzInitVersion(struct _vzDriver *driver);
|
|
int
|
|
vzCheckUnsupportedDisk(const virDomainDef *def,
|
|
virDomainDiskDef *disk,
|
|
struct _vzCapabilities *vzCaps);
|
|
int
|
|
vzCheckUnsupportedControllers(const virDomainDef *def,
|
|
struct _vzCapabilities *vzCaps);
|
|
int
|
|
vzGetDefaultSCSIModel(struct _vzDriver *driver,
|
|
PRL_CLUSTERED_DEVICE_SUBTYPE *scsiModel);
|
|
|
|
int vzCheckUnsupportedGraphics(virDomainGraphicsDef *gr);
|
|
|
|
#define PARALLELS_BLOCK_STATS_FOREACH(OP) \
|
|
OP(rd_req, VIR_DOMAIN_BLOCK_STATS_READ_REQ, "read_requests") \
|
|
OP(rd_bytes, VIR_DOMAIN_BLOCK_STATS_READ_BYTES, "read_total") \
|
|
OP(wr_req, VIR_DOMAIN_BLOCK_STATS_WRITE_REQ, "write_requests") \
|
|
OP(wr_bytes, VIR_DOMAIN_BLOCK_STATS_WRITE_BYTES, "write_total")
|
|
|
|
int
|
|
vzDomainObjBeginJob(virDomainObj *dom);
|
|
void
|
|
vzDomainObjEndJob(virDomainObj *dom);
|
|
int
|
|
vzDomainJobUpdateTime(struct _vzDomainJobObj *job);
|