]> git.proxmox.com Git - proxmox-backup.git/log
proxmox-backup.git
5 years agopxar: pass feature_flags to encoder/decoder instead of individual flags
Christian Ebner [Thu, 23 May 2019 11:10:20 +0000 (13:10 +0200)]
pxar: pass feature_flags to encoder/decoder instead of individual flags

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/tools/xattr.rs: add test for is_valid_xattr_name()
Christian Ebner [Thu, 23 May 2019 10:14:22 +0000 (12:14 +0200)]
src/tools/xattr.rs: add test for is_valid_xattr_name()

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agoMinor refactoring of pxars xattr encoder/decoder, mostly reformatting and renaming.
Christian Ebner [Thu, 23 May 2019 09:58:40 +0000 (11:58 +0200)]
Minor refactoring of pxars xattr encoder/decoder, mostly reformatting and renaming.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agodoc-test fixup
Wolfgang Bumiller [Thu, 23 May 2019 13:19:20 +0000 (15:19 +0200)]
doc-test fixup

cargo test by default compiles and runs all code snippets
found in the documentation...

oops...

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agoRFC: schema: make enums static
Wolfgang Bumiller [Thu, 23 May 2019 09:27:45 +0000 (11:27 +0200)]
RFC: schema: make enums static

I don't see a reason to allow these to be dynamically
modifiable.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agosrc/client/merge_known_chunks.rs: merge known chunks
Dietmar Maurer [Thu, 23 May 2019 10:29:33 +0000 (12:29 +0200)]
src/client/merge_known_chunks.rs: merge known chunks

To decrease the number of api calls required...

5 years agosrc/client/http_client.rs: use ChunkInfo streams
Dietmar Maurer [Thu, 23 May 2019 07:42:37 +0000 (09:42 +0200)]
src/client/http_client.rs: use ChunkInfo streams

This will make out of order uploads possible...

5 years agotree-wide: use the new vec/io tools modules
Wolfgang Bumiller [Wed, 22 May 2019 13:02:16 +0000 (15:02 +0200)]
tree-wide: use the new vec/io tools modules

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agobuildsys: make valgrind=1 to enable valgrind support
Wolfgang Bumiller [Wed, 22 May 2019 13:41:20 +0000 (15:41 +0200)]
buildsys: make valgrind=1 to enable valgrind support

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agotools: add helpful vector and read operations
Wolfgang Bumiller [Wed, 22 May 2019 12:43:24 +0000 (14:43 +0200)]
tools: add helpful vector and read operations

After importing the I/O ops trait via:
    use crate::tools::io::ops::*;

Instead of:
    let mut buffer = vec![0u8; 65536];
    file.read_exact(&mut buffer)?;
use:
    let buffer = file.read_exact_allocated(65536)?;

After importing the vector helpers via:
    use crate::tools::vec::{self, ops::*};

For a buffer which *could* be uninitialized but you prefer
zero-initialization anyway for security reasons, instead of:
    let mut buffer = vec![0u8; len];
use:
    let mut buffer = vec::undefined(len);
which zero-initializes, but, if the `valgrind` feature flag
is enabled, marks the vector as having undefined contents,
so reading from it will cause valgrind errors.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agosrc/api2/admin/datastore/backup.rs: verify file size and chunk count on close
Dietmar Maurer [Thu, 23 May 2019 06:50:36 +0000 (08:50 +0200)]
src/api2/admin/datastore/backup.rs: verify file size and chunk count on close

5 years agosrc/server/rest.rs: improve error handling
Dietmar Maurer [Thu, 23 May 2019 06:15:32 +0000 (08:15 +0200)]
src/server/rest.rs: improve error handling

5 years agosrc/api2/admin/datastore/backup/service.rs: improve error logging
Dietmar Maurer [Thu, 23 May 2019 06:05:39 +0000 (08:05 +0200)]
src/api2/admin/datastore/backup/service.rs: improve error logging

5 years agosrc/bin/upload-speed.rs: code cleanup
Dietmar Maurer [Thu, 23 May 2019 05:20:05 +0000 (07:20 +0200)]
src/bin/upload-speed.rs: code cleanup

5 years agotests/catar.rs: Pass dummy xattr/fcaps feature_flags to encoder.
Christian Ebner [Wed, 22 May 2019 15:50:44 +0000 (17:50 +0200)]
tests/catar.rs: Pass dummy xattr/fcaps feature_flags to encoder.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/bin/pxar.rs: impl CLI flags to disable archiving/restoring of xattrs and fcaps.
Christian Ebner [Wed, 22 May 2019 15:50:43 +0000 (17:50 +0200)]
src/bin/pxar.rs: impl CLI flags to disable archiving/restoring of xattrs and fcaps.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/client/: pass dummy flags for xattrs and fcaps to pxar encoder/decoder.
Christian Ebner [Wed, 22 May 2019 15:50:42 +0000 (17:50 +0200)]
src/client/: pass dummy flags for xattrs and fcaps to pxar encoder/decoder.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/decoder.rs: pass flags for xattrs and fcaps to decoder.
Christian Ebner [Wed, 22 May 2019 15:50:41 +0000 (17:50 +0200)]
src/pxar/decoder.rs: pass flags for xattrs and fcaps to decoder.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/sequential_decoder.rs: Conditional restore xattrs and fcaps if feature_flags...
Christian Ebner [Wed, 22 May 2019 15:50:40 +0000 (17:50 +0200)]
src/pxar/sequential_decoder.rs: Conditional restore xattrs and fcaps if feature_flags is set

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/format_definitions.rs: do not store the feature_flags in pxar archive.
Christian Ebner [Wed, 22 May 2019 15:50:39 +0000 (17:50 +0200)]
src/pxar/format_definitions.rs: do not store the feature_flags in pxar archive.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/encoder: Use encoder feature_flags, do not store them within the archive.
Christian Ebner [Wed, 22 May 2019 15:50:38 +0000 (17:50 +0200)]
src/pxar/encoder: Use encoder feature_flags, do not store them within the archive.

Instead of testing and storing the feature_flags in the pxar archive, set and use
the feature flags within the encoder.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agotests/pxar.rs: Make sure the correct pxar binary is run in the tests.
Christian Ebner [Wed, 22 May 2019 13:02:41 +0000 (15:02 +0200)]
tests/pxar.rs: Make sure the correct pxar binary is run in the tests.

If compiled in debug mode, the debug binary should be tested, in release mode
the release binary has to be invoked.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agoMakefile: make the tests folder available in the build folder on 'make deb'
Christian Ebner [Wed, 22 May 2019 10:00:23 +0000 (12:00 +0200)]
Makefile: make the tests folder available in the build folder on 'make deb'

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/client/http_client.rs: re-order code - public functions first
Dietmar Maurer [Thu, 23 May 2019 04:28:10 +0000 (06:28 +0200)]
src/client/http_client.rs: re-order code - public functions first

5 years agosrc/client/http_client.rs: move low level H2 code into separate class
Dietmar Maurer [Wed, 22 May 2019 15:28:25 +0000 (17:28 +0200)]
src/client/http_client.rs: move low level H2 code into separate class

5 years agosrc/client/http_client.rs: code cleanup
Dietmar Maurer [Wed, 22 May 2019 11:24:33 +0000 (13:24 +0200)]
src/client/http_client.rs: code cleanup

5 years agosrc/client/http_client.rs: cleanup h2 backup client
Dietmar Maurer [Wed, 22 May 2019 11:05:51 +0000 (13:05 +0200)]
src/client/http_client.rs: cleanup h2 backup client

5 years agosrc/api2/admin/datastore/backup.rs: suse POST for finish() api
Dietmar Maurer [Wed, 22 May 2019 11:04:58 +0000 (13:04 +0200)]
src/api2/admin/datastore/backup.rs: suse POST for finish() api

5 years agosrc/bin/h2test.rs: removed
Dietmar Maurer [Wed, 22 May 2019 09:14:56 +0000 (11:14 +0200)]
src/bin/h2test.rs: removed

This test does no work anymore.

5 years agosrc/api2/admin/datastore/backup.rs: remove test callbacks
Dietmar Maurer [Wed, 22 May 2019 08:55:27 +0000 (10:55 +0200)]
src/api2/admin/datastore/backup.rs: remove test callbacks

5 years agoMakefile: Allow to pass parameter tests=pattern to make test
Christian Ebner [Tue, 21 May 2019 15:54:49 +0000 (17:54 +0200)]
Makefile: Allow to pass parameter tests=pattern to make test

`make test tests=pattern` will only run the subset of tests containing pattern,
therefore allowing to specify which subset of tests to run.
If the parameter is not specified, all tests are run.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/tools/xattr.rs: impl unit tests for fsetattr and fgetattr
Christian Ebner [Tue, 21 May 2019 12:58:05 +0000 (14:58 +0200)]
src/tools/xattr.rs: impl unit tests for fsetattr and fgetattr

As git does not preserve xattrs they have to be set before they can be read.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/client/http_client.rs: implement download_chunk_list
Dietmar Maurer [Wed, 22 May 2019 07:46:02 +0000 (09:46 +0200)]
src/client/http_client.rs: implement download_chunk_list

5 years agosrc/backup/chunk_stream.rs: use BytesMut in ChunkStream
Dietmar Maurer [Wed, 22 May 2019 07:39:02 +0000 (09:39 +0200)]
src/backup/chunk_stream.rs: use BytesMut in ChunkStream

5 years agosrc/backup/chunk_stream.rs: use more generics
Dietmar Maurer [Wed, 22 May 2019 07:18:05 +0000 (09:18 +0200)]
src/backup/chunk_stream.rs: use more generics

5 years agosrc/backup/chunk_stream.rs: optimize FixedChunkStream (use BytesMut)
Dietmar Maurer [Wed, 22 May 2019 07:05:35 +0000 (09:05 +0200)]
src/backup/chunk_stream.rs: optimize FixedChunkStream (use BytesMut)

5 years agosrc/backup/chunk_stream.rs: fix behaviour for large input buffers
Dietmar Maurer [Wed, 22 May 2019 06:05:27 +0000 (08:05 +0200)]
src/backup/chunk_stream.rs: fix behaviour for large input buffers

5 years agosrc/backup/chunk_stream.rs: assemble data with correct order
Dietmar Maurer [Wed, 22 May 2019 05:44:51 +0000 (07:44 +0200)]
src/backup/chunk_stream.rs: assemble data with correct order

5 years agosrc/api2/admin/datastore/backup.rs: improve error message
Dietmar Maurer [Wed, 22 May 2019 05:43:54 +0000 (07:43 +0200)]
src/api2/admin/datastore/backup.rs: improve error message

5 years agosrc/tools.rs: fix hex_to_digest
Dietmar Maurer [Tue, 21 May 2019 11:42:13 +0000 (13:42 +0200)]
src/tools.rs: fix hex_to_digest

5 years agosrc/backup/index.rs: rename ChunkListReader into DigestListEncoder
Dietmar Maurer [Tue, 21 May 2019 10:28:44 +0000 (12:28 +0200)]
src/backup/index.rs: rename ChunkListReader into DigestListEncoder

5 years agosrc/backup/index.rs: implement DigestListDecoder
Dietmar Maurer [Tue, 21 May 2019 10:21:22 +0000 (12:21 +0200)]
src/backup/index.rs: implement DigestListDecoder

5 years agosrc/api2/admin/datastore/backup.rs: ignore error after finish, register known_chunks
Dietmar Maurer [Tue, 21 May 2019 07:54:11 +0000 (09:54 +0200)]
src/api2/admin/datastore/backup.rs: ignore error after finish, register known_chunks

5 years agosrc/backup/dynamic_index.rs: add chunk_info method
Dietmar Maurer [Tue, 21 May 2019 07:52:19 +0000 (09:52 +0200)]
src/backup/dynamic_index.rs: add chunk_info method

5 years agotests/pxar.rs: Integrity test for pxar
Christian Ebner [Mon, 20 May 2019 16:08:56 +0000 (18:08 +0200)]
tests/pxar.rs: Integrity test for pxar

Test the integrity of the restored folder content of data previously archived with pxar

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/sequential_decoder.rs: impl functionality to restore xattrs/fcaps from pxar...
Christian Ebner [Fri, 17 May 2019 12:23:35 +0000 (14:23 +0200)]
src/pxar/sequential_decoder.rs: impl functionality to restore xattrs/fcaps from pxar achives

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/encoder.rs: impl functionality to encode xattrs/fcaps in pxar
Christian Ebner [Fri, 17 May 2019 12:23:34 +0000 (14:23 +0200)]
src/pxar/encoder.rs: impl functionality to encode xattrs/fcaps in pxar

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/tools/xattr.rs: add functions name_store and security_capability
Christian Ebner [Fri, 17 May 2019 12:23:33 +0000 (14:23 +0200)]
src/tools/xattr.rs: add functions name_store and security_capability

These functions allow to check if the name for xattrs/fcaps are valid.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/api2/admin/datastore/backup/environment.rs: register/lookup known chunks
Dietmar Maurer [Mon, 20 May 2019 16:05:10 +0000 (18:05 +0200)]
src/api2/admin/datastore/backup/environment.rs: register/lookup known chunks

5 years agosrc/client/pxar_backup_stream.rs: fix docu
Dietmar Maurer [Mon, 20 May 2019 15:29:00 +0000 (17:29 +0200)]
src/client/pxar_backup_stream.rs: fix docu

5 years agosrc/client/http_client.rs: implement upload_stream
Dietmar Maurer [Mon, 20 May 2019 12:19:24 +0000 (14:19 +0200)]
src/client/http_client.rs: implement upload_stream

5 years agosrc/client/pxar_backup_stream.rs: close pipe inside drop
Dietmar Maurer [Mon, 20 May 2019 09:20:33 +0000 (11:20 +0200)]
src/client/pxar_backup_stream.rs: close pipe inside drop

5 years agosrc/tools.rs: implement hex_to_digest
Dietmar Maurer [Sun, 19 May 2019 10:15:46 +0000 (12:15 +0200)]
src/tools.rs: implement hex_to_digest

5 years agosrc/bin/test_chunk_speed2.rs: test max chunk size
Dietmar Maurer [Sun, 19 May 2019 09:09:02 +0000 (11:09 +0200)]
src/bin/test_chunk_speed2.rs: test max chunk size

5 years agoRevert "src/backup/chunk_stream.rs: simplify code"
Dietmar Maurer [Sun, 19 May 2019 09:05:56 +0000 (11:05 +0200)]
Revert "src/backup/chunk_stream.rs: simplify code"

This reverts commit e058744d8f4dc1d87fe2a28cd79bc385e934f563.
The optimization was wrong, and produces wrong chunk boundaries.

5 years agosrc/api_schema/schema.rs: improve error messages
Dietmar Maurer [Sun, 19 May 2019 08:18:51 +0000 (10:18 +0200)]
src/api_schema/schema.rs: improve error messages

5 years agosrc/client/pxar_backup_stream.rs: use WrappedStreamReader
Dietmar Maurer [Sat, 18 May 2019 13:13:31 +0000 (15:13 +0200)]
src/client/pxar_backup_stream.rs: use WrappedStreamReader

to make it fully async ...

5 years agosrc/client/pxar_backup_stream.rs: use 1M pipe buffer size
Dietmar Maurer [Sat, 18 May 2019 10:57:43 +0000 (12:57 +0200)]
src/client/pxar_backup_stream.rs: use 1M pipe buffer size

5 years agosrc/bin/test_chunk_speed2.rs: test chunker speed with real data
Dietmar Maurer [Sat, 18 May 2019 09:59:17 +0000 (11:59 +0200)]
src/bin/test_chunk_speed2.rs: test chunker speed with real data

5 years agosrc/backup/chunk_stream.rs: simplify code
Dietmar Maurer [Sat, 18 May 2019 08:54:05 +0000 (10:54 +0200)]
src/backup/chunk_stream.rs: simplify code

5 years agosrc/backup/chunk_stream.rs: implement fixed size chunk stream
Dietmar Maurer [Sat, 18 May 2019 08:46:29 +0000 (10:46 +0200)]
src/backup/chunk_stream.rs: implement fixed size chunk stream

5 years agosrc/client/http_client.rs: improve speed test
Dietmar Maurer [Fri, 17 May 2019 09:51:14 +0000 (11:51 +0200)]
src/client/http_client.rs: improve speed test

pipeline responses to a separate async channel ...

5 years agoadd qemu-io crate, AioContext reactor helper
Wolfgang Bumiller [Thu, 16 May 2019 09:58:38 +0000 (11:58 +0200)]
add qemu-io crate, AioContext reactor helper

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
5 years agosrc/tools/xattrs.rs: impl libc wrapper functions to get/set xattrs and fcaps
Christian Ebner [Wed, 15 May 2019 13:27:34 +0000 (15:27 +0200)]
src/tools/xattrs.rs: impl libc wrapper functions to get/set xattrs and fcaps

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/pxar/format_definitions.rs: add format definitions for xattrs and fcaps
Christian Ebner [Wed, 15 May 2019 13:27:33 +0000 (15:27 +0200)]
src/pxar/format_definitions.rs: add format definitions for xattrs and fcaps

In addition to the format definition, the traits needed for sorting of xattr
entries by name are derived.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/tools/acl.rs: impl add_entry_full for ACL and set_permissions for ACLEntry
Christian Ebner [Wed, 15 May 2019 11:43:42 +0000 (13:43 +0200)]
src/tools/acl.rs: impl add_entry_full for ACL and set_permissions for ACLEntry

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/api2/admin/datastore/backup.rs: add speedtest api, improve upload speed
Dietmar Maurer [Thu, 16 May 2019 08:24:23 +0000 (10:24 +0200)]
src/api2/admin/datastore/backup.rs: add speedtest api, improve upload speed

We need to disable tcp Nagle algorythm (set_nodelay), and use larger window size for http2

5 years agosrc/api2/admin/datastore/backup.rs: implement finish_backup
Dietmar Maurer [Wed, 15 May 2019 10:58:55 +0000 (12:58 +0200)]
src/api2/admin/datastore/backup.rs: implement finish_backup

5 years agosrc/api2/admin/datastore/backup.rs: improve logging
Dietmar Maurer [Wed, 15 May 2019 08:09:46 +0000 (10:09 +0200)]
src/api2/admin/datastore/backup.rs: improve logging

5 years agosrc/client/pipe_to_stream.rs: add missing file
Dietmar Maurer [Wed, 15 May 2019 07:07:19 +0000 (09:07 +0200)]
src/client/pipe_to_stream.rs: add missing file

5 years agosrc/api2/admin/datastore/backup.rs: implement close for dynamic writers
Dietmar Maurer [Wed, 15 May 2019 05:58:05 +0000 (07:58 +0200)]
src/api2/admin/datastore/backup.rs: implement close for dynamic writers

5 years agosrc/api2/types.rs: add schema/format for file names
Dietmar Maurer [Wed, 15 May 2019 05:14:08 +0000 (07:14 +0200)]
src/api2/types.rs: add schema/format for file names

5 years agosrc/client/http_client.rs: add flow control for h2 upload
Dietmar Maurer [Tue, 14 May 2019 12:54:21 +0000 (14:54 +0200)]
src/client/http_client.rs: add flow control for h2 upload

5 years agosrc/client/http_client.rs: implement h2 upload
Dietmar Maurer [Tue, 14 May 2019 10:58:59 +0000 (12:58 +0200)]
src/client/http_client.rs: implement h2 upload

without flow control so far ...

5 years agosrc/backup/chunk_stream.rs: async chunk stream
Dietmar Maurer [Tue, 14 May 2019 08:05:29 +0000 (10:05 +0200)]
src/backup/chunk_stream.rs: async chunk stream

5 years agosrc/client/http_client.rs: derive Clone for H2Client
Dietmar Maurer [Tue, 14 May 2019 07:00:24 +0000 (09:00 +0200)]
src/client/http_client.rs: derive Clone for H2Client

5 years agosrc/tools.rs: add mod acl to tools
Christian Ebner [Mon, 13 May 2019 12:50:31 +0000 (14:50 +0200)]
src/tools.rs: add mod acl to tools

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/tools/acl.rs: impl POSIX access control list (ACL) manipulation tools
Christian Ebner [Mon, 13 May 2019 12:44:16 +0000 (14:44 +0200)]
src/tools/acl.rs: impl POSIX access control list (ACL) manipulation tools

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
5 years agosrc/server/rest.rs: do not log 1xx status codes as errors
Dietmar Maurer [Tue, 14 May 2019 04:23:22 +0000 (06:23 +0200)]
src/server/rest.rs: do not log 1xx status codes as errors

5 years agosrc/client/http_client.rs: directly return H2Client on upgrade
Dietmar Maurer [Mon, 13 May 2019 14:44:59 +0000 (16:44 +0200)]
src/client/http_client.rs: directly return H2Client on upgrade

5 years agosrc/client/http_client.rs: cleanup, remove debug println
Dietmar Maurer [Mon, 13 May 2019 10:11:18 +0000 (12:11 +0200)]
src/client/http_client.rs: cleanup, remove debug println

5 years agosrc/client/http_client.rs: implement http2 client wrapper
Dietmar Maurer [Mon, 13 May 2019 08:27:22 +0000 (10:27 +0200)]
src/client/http_client.rs: implement http2 client wrapper

5 years agosrc/client/http_client.rs: allow to pass parameters (encode them as query string)
Dietmar Maurer [Mon, 13 May 2019 07:12:03 +0000 (09:12 +0200)]
src/client/http_client.rs: allow to pass parameters (encode them as query string)

5 years agosrc/api2/admin/datastore/backup.rs: ignore errors from last_backup
Dietmar Maurer [Mon, 13 May 2019 05:06:56 +0000 (07:06 +0200)]
src/api2/admin/datastore/backup.rs: ignore errors from last_backup

5 years agosrc/api2/admin/datastore/backup.rs: implement chunk index download from previous...
Dietmar Maurer [Sat, 11 May 2019 14:05:50 +0000 (16:05 +0200)]
src/api2/admin/datastore/backup.rs: implement chunk index download from previous backup

5 years agosrc/backup/index.rs: new ChunkListReader
Dietmar Maurer [Sat, 11 May 2019 14:01:42 +0000 (16:01 +0200)]
src/backup/index.rs: new ChunkListReader

5 years agosrc/api2/admin/datastore/backup.rs: add missing 'archive-name' parameter to schema
Dietmar Maurer [Sat, 11 May 2019 10:25:15 +0000 (12:25 +0200)]
src/api2/admin/datastore/backup.rs: add missing 'archive-name' parameter to schema

5 years agosrc/api2/admin/datastore/backup/environment.rs: do not store path
Dietmar Maurer [Sat, 11 May 2019 10:13:44 +0000 (12:13 +0200)]
src/api2/admin/datastore/backup/environment.rs: do not store path

5 years agosrc/backup/datastore.rs: move last_backup to BackupInfo
Dietmar Maurer [Sat, 11 May 2019 10:07:09 +0000 (12:07 +0200)]
src/backup/datastore.rs: move last_backup to BackupInfo

5 years agosrc/backup/datastore.rs: impl last_backup helper
Dietmar Maurer [Sat, 11 May 2019 09:21:13 +0000 (11:21 +0200)]
src/backup/datastore.rs: impl last_backup helper

5 years agosrc/backup/backup_info.rs: implement list_backup for BackupGroup, cleanups
Dietmar Maurer [Sat, 11 May 2019 08:19:34 +0000 (10:19 +0200)]
src/backup/backup_info.rs: implement list_backup for BackupGroup, cleanups

5 years agobackup-api: allow to create DynamicIndexWriter and add chunks to to
Dietmar Maurer [Fri, 10 May 2019 08:25:40 +0000 (10:25 +0200)]
backup-api: allow to create DynamicIndexWriter and add chunks to to

5 years agosrc/backup/backup_info.rs: Derive Clone
Dietmar Maurer [Fri, 10 May 2019 04:59:23 +0000 (06:59 +0200)]
src/backup/backup_info.rs: Derive Clone

5 years agoupload_chunk.rs: add comment about possible unnecessary code
Dietmar Maurer [Fri, 10 May 2019 04:15:25 +0000 (06:15 +0200)]
upload_chunk.rs: add comment about possible unnecessary code

5 years agocleanup: remove unused code
Dietmar Maurer [Thu, 9 May 2019 16:11:39 +0000 (18:11 +0200)]
cleanup: remove unused code

5 years agohandle_async_api_request: put rpcenv into a Box
Dietmar Maurer [Thu, 9 May 2019 16:01:24 +0000 (18:01 +0200)]
handle_async_api_request: put rpcenv into a Box

So that we can pass rpcenv into futures.

5 years agosrc/api2/admin/datastore/backup/upload_chunk.rs: fix maximal chunk size
Dietmar Maurer [Thu, 9 May 2019 11:29:50 +0000 (13:29 +0200)]
src/api2/admin/datastore/backup/upload_chunk.rs: fix maximal chunk size

5 years agosrc/server/formatter.rs: further cleanups and renaming ...
Dietmar Maurer [Thu, 9 May 2019 11:28:26 +0000 (13:28 +0200)]
src/server/formatter.rs: further cleanups and renaming ...

5 years agosrc/server/formatter.rs: rename format_result to format_data
Dietmar Maurer [Thu, 9 May 2019 11:15:15 +0000 (13:15 +0200)]
src/server/formatter.rs: rename format_result to format_data

To avoid confusions with Rust Result type.

5 years agosrc/api2/admin/datastore/backup.rs: implement upload chunk
Dietmar Maurer [Thu, 9 May 2019 11:06:09 +0000 (13:06 +0200)]
src/api2/admin/datastore/backup.rs: implement upload chunk