Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
e89a93c0
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e89a93c0
编写于
8月 11, 2014
作者:
T
Taowei
提交者:
Michal Privoznik
8月 15, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vbox: Rewrite vboxDomainLookupByUUID
上级
9dd4f8ed
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
75 addition
and
73 deletion
+75
-73
src/vbox/vbox_common.c
src/vbox/vbox_common.c
+73
-0
src/vbox/vbox_tmpl.c
src/vbox/vbox_tmpl.c
+0
-73
src/vbox/vbox_uniformed_api.h
src/vbox/vbox_uniformed_api.h
+2
-0
未找到文件。
src/vbox/vbox_common.c
浏览文件 @
e89a93c0
...
@@ -624,3 +624,76 @@ virDomainPtr vboxDomainLookupByID(virConnectPtr conn, int id)
...
@@ -624,3 +624,76 @@ virDomainPtr vboxDomainLookupByID(virConnectPtr conn, int id)
gVBoxAPI
.
UArray
.
vboxArrayRelease
(
&
machines
);
gVBoxAPI
.
UArray
.
vboxArrayRelease
(
&
machines
);
return
ret
;
return
ret
;
}
}
virDomainPtr
vboxDomainLookupByUUID
(
virConnectPtr
conn
,
const
unsigned
char
*
uuid
)
{
VBOX_OBJECT_CHECK
(
conn
,
virDomainPtr
,
NULL
);
vboxArray
machines
=
VBOX_ARRAY_INITIALIZER
;
vboxIIDUnion
iid
;
char
*
machineNameUtf8
=
NULL
;
PRUnichar
*
machineNameUtf16
=
NULL
;
unsigned
char
iid_as_uuid
[
VIR_UUID_BUFLEN
];
size_t
i
;
bool
matched
=
false
;
nsresult
rc
;
VBOX_IID_INITIALIZE
(
&
iid
);
rc
=
gVBoxAPI
.
UArray
.
vboxArrayGet
(
&
machines
,
data
->
vboxObj
,
ARRAY_GET_MACHINES
);
if
(
NS_FAILED
(
rc
))
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
_
(
"Could not get list of machines, rc=%08x"
),
(
unsigned
)
rc
);
return
NULL
;
}
for
(
i
=
0
;
i
<
machines
.
count
;
++
i
)
{
IMachine
*
machine
=
machines
.
items
[
i
];
PRBool
isAccessible
=
PR_FALSE
;
if
(
!
machine
)
continue
;
gVBoxAPI
.
UIMachine
.
GetAccessible
(
machine
,
&
isAccessible
);
if
(
!
isAccessible
)
continue
;
rc
=
gVBoxAPI
.
UIMachine
.
GetId
(
machine
,
&
iid
);
if
(
NS_FAILED
(
rc
))
continue
;
vboxIIDToUUID
(
&
iid
,
iid_as_uuid
);
vboxIIDUnalloc
(
&
iid
);
if
(
memcmp
(
uuid
,
iid_as_uuid
,
VIR_UUID_BUFLEN
)
==
0
)
{
PRUint32
state
;
matched
=
true
;
gVBoxAPI
.
UIMachine
.
GetName
(
machine
,
&
machineNameUtf16
);
VBOX_UTF16_TO_UTF8
(
machineNameUtf16
,
&
machineNameUtf8
);
gVBoxAPI
.
UIMachine
.
GetState
(
machine
,
&
state
);
/* get a new domain pointer from virGetDomain, if it fails
* then no need to assign the id, else assign the id, cause
* it is -1 by default. rest is taken care by virGetDomain
* itself, so need not worry.
*/
ret
=
virGetDomain
(
conn
,
machineNameUtf8
,
iid_as_uuid
);
if
(
ret
&&
gVBoxAPI
.
machineStateChecker
.
Online
(
state
))
ret
->
id
=
i
+
1
;
}
if
(
matched
)
break
;
}
/* Do the cleanup and take care you dont leak any memory */
VBOX_UTF8_FREE
(
machineNameUtf8
);
VBOX_COM_UNALLOC_MEM
(
machineNameUtf16
);
gVBoxAPI
.
UArray
.
vboxArrayRelease
(
&
machines
);
return
ret
;
}
src/vbox/vbox_tmpl.c
浏览文件 @
e89a93c0
...
@@ -949,79 +949,6 @@ static virDomainPtr vboxDomainCreateXML(virConnectPtr conn, const char *xml,
...
@@ -949,79 +949,6 @@ static virDomainPtr vboxDomainCreateXML(virConnectPtr conn, const char *xml,
return
dom
;
return
dom
;
}
}
static
virDomainPtr
vboxDomainLookupByUUID
(
virConnectPtr
conn
,
const
unsigned
char
*
uuid
)
{
VBOX_OBJECT_CHECK
(
conn
,
virDomainPtr
,
NULL
);
vboxArray
machines
=
VBOX_ARRAY_INITIALIZER
;
vboxIID
iid
=
VBOX_IID_INITIALIZER
;
char
*
machineNameUtf8
=
NULL
;
PRUnichar
*
machineNameUtf16
=
NULL
;
unsigned
char
iid_as_uuid
[
VIR_UUID_BUFLEN
];
size_t
i
;
int
matched
=
0
;
nsresult
rc
;
rc
=
vboxArrayGet
(
&
machines
,
data
->
vboxObj
,
data
->
vboxObj
->
vtbl
->
GetMachines
);
if
(
NS_FAILED
(
rc
))
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
_
(
"Could not get list of machines, rc=%08x"
),
(
unsigned
)
rc
);
return
NULL
;
}
for
(
i
=
0
;
i
<
machines
.
count
;
++
i
)
{
IMachine
*
machine
=
machines
.
items
[
i
];
PRBool
isAccessible
=
PR_FALSE
;
if
(
!
machine
)
continue
;
machine
->
vtbl
->
GetAccessible
(
machine
,
&
isAccessible
);
if
(
isAccessible
)
{
rc
=
machine
->
vtbl
->
GetId
(
machine
,
&
iid
.
value
);
if
(
NS_FAILED
(
rc
))
continue
;
vboxIIDToUUID
(
&
iid
,
iid_as_uuid
);
vboxIIDUnalloc
(
&
iid
);
if
(
memcmp
(
uuid
,
iid_as_uuid
,
VIR_UUID_BUFLEN
)
==
0
)
{
PRUint32
state
;
matched
=
1
;
machine
->
vtbl
->
GetName
(
machine
,
&
machineNameUtf16
);
VBOX_UTF16_TO_UTF8
(
machineNameUtf16
,
&
machineNameUtf8
);
machine
->
vtbl
->
GetState
(
machine
,
&
state
);
/* get a new domain pointer from virGetDomain, if it fails
* then no need to assign the id, else assign the id, cause
* it is -1 by default. rest is taken care by virGetDomain
* itself, so need not worry.
*/
ret
=
virGetDomain
(
conn
,
machineNameUtf8
,
iid_as_uuid
);
if
(
ret
&&
(
state
>=
MachineState_FirstOnline
)
&&
(
state
<=
MachineState_LastOnline
))
ret
->
id
=
i
+
1
;
}
if
(
matched
==
1
)
break
;
}
}
/* Do the cleanup and take care you dont leak any memory */
VBOX_UTF8_FREE
(
machineNameUtf8
);
VBOX_COM_UNALLOC_MEM
(
machineNameUtf16
);
vboxArrayRelease
(
&
machines
);
return
ret
;
}
static
virDomainPtr
static
virDomainPtr
vboxDomainLookupByName
(
virConnectPtr
conn
,
const
char
*
name
)
vboxDomainLookupByName
(
virConnectPtr
conn
,
const
char
*
name
)
{
{
...
...
src/vbox/vbox_uniformed_api.h
浏览文件 @
e89a93c0
...
@@ -260,6 +260,8 @@ char *vboxConnectGetCapabilities(virConnectPtr conn);
...
@@ -260,6 +260,8 @@ char *vboxConnectGetCapabilities(virConnectPtr conn);
int
vboxConnectListDomains
(
virConnectPtr
conn
,
int
*
ids
,
int
nids
);
int
vboxConnectListDomains
(
virConnectPtr
conn
,
int
*
ids
,
int
nids
);
int
vboxConnectNumOfDomains
(
virConnectPtr
conn
);
int
vboxConnectNumOfDomains
(
virConnectPtr
conn
);
virDomainPtr
vboxDomainLookupByID
(
virConnectPtr
conn
,
int
id
);
virDomainPtr
vboxDomainLookupByID
(
virConnectPtr
conn
,
int
id
);
virDomainPtr
vboxDomainLookupByUUID
(
virConnectPtr
conn
,
const
unsigned
char
*
uuid
);
/* Version specified functions for installing uniformed API */
/* Version specified functions for installing uniformed API */
void
vbox22InstallUniformedAPI
(
vboxUniformedAPI
*
pVBoxAPI
);
void
vbox22InstallUniformedAPI
(
vboxUniformedAPI
*
pVBoxAPI
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录