[libvirt] [dbus PATCH 00/19] StoragePool APIs till libvirt 3.0

Katerina Koukiou posted 19 patches 5 years, 11 months ago
Failed in applying to current master (apply log)
data/Makefile.am                 |   3 +-
data/org.libvirt.Connect.xml     |  24 +++
data/org.libvirt.StoragePool.xml |  69 +++++++
src/Makefile.am                  |   3 +-
src/connect.c                    | 120 +++++++++++
src/connect.h                    |   2 +
src/events.c                     |  43 ++++
src/storagepool.c                | 422 +++++++++++++++++++++++++++++++++++++++
src/storagepool.h                |   9 +
src/util.c                       |  33 +++
src/util.h                       |  15 ++
tests/libvirttest.py             |  29 +++
tests/test_connect.py            |  28 +++
tests/test_storage.py            | 112 +++++++++++
14 files changed, 910 insertions(+), 2 deletions(-)
create mode 100644 data/org.libvirt.StoragePool.xml
create mode 100644 src/storagepool.c
create mode 100644 src/storagepool.h
create mode 100755 tests/test_storage.py
[libvirt] [dbus PATCH 00/19] StoragePool APIs till libvirt 3.0
Posted by Katerina Koukiou 5 years, 11 months ago
Katerina Koukiou (19):
  Introduce StoragePool Interface
  Implement ListStoragePools method for Connect Interface
  Register StoragePool Lifecycle Events
  Implement Destroy method for StoragePool Interface
  Implement Build method for StoragePool Interface
  Implement Create method for StoragePool Interface
  Implement Delete method for StoragePool Interface
  Implement getter for Autostart property for StoragePool Interface
  Implement GetInfo method for StoragePool Interface
  Implement Name property for StoragePool Interface
  Implement UUID property for StoragePool Interface
  Implement GetXMLDesc method for StoragePool Interface
  Implement Active property for StoragePool Interface
  Implement Persistent property for StoragePool Interface
  Implement StoragePoolLookupByName method for Connect Interface
  Implement StoragePoolLookupByUUID method for Connect Interface
  Implement Refresh method for StoragePool Interface
  Implement setter for Autostart property for StoragePool Interface
  Implement Undefine method for StoragePool Interface

 data/Makefile.am                 |   3 +-
 data/org.libvirt.Connect.xml     |  24 +++
 data/org.libvirt.StoragePool.xml |  69 +++++++
 src/Makefile.am                  |   3 +-
 src/connect.c                    | 120 +++++++++++
 src/connect.h                    |   2 +
 src/events.c                     |  43 ++++
 src/storagepool.c                | 422 +++++++++++++++++++++++++++++++++++++++
 src/storagepool.h                |   9 +
 src/util.c                       |  33 +++
 src/util.h                       |  15 ++
 tests/libvirttest.py             |  29 +++
 tests/test_connect.py            |  28 +++
 tests/test_storage.py            | 112 +++++++++++
 14 files changed, 910 insertions(+), 2 deletions(-)
 create mode 100644 data/org.libvirt.StoragePool.xml
 create mode 100644 src/storagepool.c
 create mode 100644 src/storagepool.h
 create mode 100755 tests/test_storage.py

-- 
2.15.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [dbus PATCH 00/19] StoragePool APIs till libvirt 3.0
Posted by Pavel Hrdina 5 years, 11 months ago
On Mon, May 07, 2018 at 04:40:41PM +0200, Katerina Koukiou wrote:
> Katerina Koukiou (19):
>   Introduce StoragePool Interface
>   Implement ListStoragePools method for Connect Interface
>   Register StoragePool Lifecycle Events
>   Implement Destroy method for StoragePool Interface
>   Implement Build method for StoragePool Interface
>   Implement Create method for StoragePool Interface
>   Implement Delete method for StoragePool Interface
>   Implement getter for Autostart property for StoragePool Interface
>   Implement GetInfo method for StoragePool Interface
>   Implement Name property for StoragePool Interface
>   Implement UUID property for StoragePool Interface
>   Implement GetXMLDesc method for StoragePool Interface
>   Implement Active property for StoragePool Interface
>   Implement Persistent property for StoragePool Interface
>   Implement StoragePoolLookupByName method for Connect Interface
>   Implement StoragePoolLookupByUUID method for Connect Interface
>   Implement Refresh method for StoragePool Interface
>   Implement setter for Autostart property for StoragePool Interface
>   Implement Undefine method for StoragePool Interface

See the notes for some patches, with the issues fixed

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list