Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
66a9ff8a
authored
Mar 09, 2014
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage: make doc comments' style consistent
parent
709ba370
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
circle/storage/models.py
+14
-7
No files found.
circle/storage/models.py
View file @
66a9ff8a
...
@@ -110,12 +110,14 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -110,12 +110,14 @@ class Disk(AclBase, TimeStampedModel):
@property
@property
def
path
(
self
):
def
path
(
self
):
"""Get the path where the files are stored."""
"""The path where the files are stored.
"""
return
join
(
self
.
datastore
.
path
,
self
.
filename
)
return
join
(
self
.
datastore
.
path
,
self
.
filename
)
@property
@property
def
vm_format
(
self
):
def
vm_format
(
self
):
"""Returns the proper file format for different type of images."""
"""Returns the proper file format for different type of images.
"""
return
{
return
{
'qcow2-norm'
:
'qcow2'
,
'qcow2-norm'
:
'qcow2'
,
'qcow2-snap'
:
'qcow2'
,
'qcow2-snap'
:
'qcow2'
,
...
@@ -126,7 +128,8 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -126,7 +128,8 @@ class Disk(AclBase, TimeStampedModel):
@property
@property
def
format
(
self
):
def
format
(
self
):
"""Returns the proper file format for different type of images."""
"""Returns the proper file format for different types of images.
"""
return
{
return
{
'qcow2-norm'
:
'qcow2'
,
'qcow2-norm'
:
'qcow2'
,
'qcow2-snap'
:
'qcow2'
,
'qcow2-snap'
:
'qcow2'
,
...
@@ -137,7 +140,8 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -137,7 +140,8 @@ class Disk(AclBase, TimeStampedModel):
@property
@property
def
device_type
(
self
):
def
device_type
(
self
):
"""Returns the proper device prefix for different file format."""
"""Returns the proper device prefix for different types of images.
"""
return
{
return
{
'qcow2-norm'
:
'vd'
,
'qcow2-norm'
:
'vd'
,
'qcow2-snap'
:
'vd'
,
'qcow2-snap'
:
'vd'
,
...
@@ -204,7 +208,8 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -204,7 +208,8 @@ class Disk(AclBase, TimeStampedModel):
type
=
new_type
)
type
=
new_type
)
def
get_vmdisk_desc
(
self
):
def
get_vmdisk_desc
(
self
):
"""Serialize disk object to the vmdriver."""
"""Serialize disk object to the vmdriver.
"""
return
{
return
{
'source'
:
self
.
path
,
'source'
:
self
.
path
,
'driver_type'
:
self
.
vm_format
,
'driver_type'
:
self
.
vm_format
,
...
@@ -214,7 +219,8 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -214,7 +219,8 @@ class Disk(AclBase, TimeStampedModel):
}
}
def
get_disk_desc
(
self
):
def
get_disk_desc
(
self
):
"""Serialize disk object to the storage driver."""
"""Serialize disk object to the storage driver.
"""
return
{
return
{
'name'
:
self
.
filename
,
'name'
:
self
.
filename
,
'dir'
:
self
.
datastore
.
path
,
'dir'
:
self
.
datastore
.
path
,
...
@@ -225,7 +231,8 @@ class Disk(AclBase, TimeStampedModel):
...
@@ -225,7 +231,8 @@ class Disk(AclBase, TimeStampedModel):
}
}
def
get_remote_queue_name
(
self
,
queue_id
=
'storage'
,
check_worker
=
True
):
def
get_remote_queue_name
(
self
,
queue_id
=
'storage'
,
check_worker
=
True
):
"""Returns the proper queue name based on the datastore."""
"""Returns the proper queue name based on the datastore.
"""
if
self
.
datastore
:
if
self
.
datastore
:
return
self
.
datastore
.
get_remote_queue_name
(
queue_id
,
check_worker
)
return
self
.
datastore
.
get_remote_queue_name
(
queue_id
,
check_worker
)
else
:
else
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment