davix  0.4.1
Davix Documentation
Author
Devresse Adrien ( adrie.nosp@m.n.de.nosp@m.vress.nosp@m.e@ce.nosp@m.rn.ch )

Developped at CERN (IT-SDC-ID)

Official WebSite: Here

User Documentation: Here

Mailing list : davix.nosp@m.-dev.nosp@m.el@ce.nosp@m.rn.c.nosp@m.h

davix API :

file / object store API : Davix::DavFile
posix compatiblity layer : Davix::DavPosix
http request layer: Davix::HttpRequest
main header: davix.hpp

What is davix ?

davix is a library and a set of tools for remote I/O on resources with HTTP based protocols. It aims to be a simple, performant and portable I/O layer for Cloud and Grid Storages services.

Davix supports:

The Davix targets to:

Examples

Query basic file metadata

StatInfo infos;
DavFile file(context, "http://my.webdav.server.org/myfolder/myfile");
file.statInfo(NULL, infos);
std::cout << "my file is " << infos.size << " bytes large " << std::endl;

Create a directory

DavFile file(context, "http://my.webdav.server.org/myfoldier/newfolder");
// creat directory
file.makeCollection(NULL);

Get a full file content

DavFile f(context, "http://mysite.org/file");
int fd = open("/tmp/local_file", O_WRONLY | O_CREAT);
// get full file
file.getToFd(NULL,fd, NULL) < 0)

Execute a partial GET

char buffer[255] = {0};
DavFile file(context, "http://mysite.org/file");
// get 100 bytes from http://mysite.org/file after an offset of 200 bytes
file.readPartial(NULL, buffer, 100, 200);

Execute a Vector Operation

char buffer[255] = {0}
DavFile file(context, "http://mysite.org/file");
DavIOVecInput in[3];
DavIOVecOutput ou[3];
// setup vector operations parameters
// --------
// execute query
file.readPartialBufferVec(NULL, in, out , 3 , NULL);

Random I/O in posix mode

// read ops
fd= p.open(NULL, "https://mywebdav-server.org/myfile.jpg", O_RDONLY, NULL);
p.read(fd, buffer, size, NULL);
p.pread(fd, buffer, size2, offset, NULL);
p.close(fd);
//

Manual HTTP query:

Davix::HttpRequest req("https://restapi-server.org/rest")
req.addHeaderField(...)
req.setRequestMethod("PUT")
// .. configure ....
//
//
// execute your request
req.executeRequest(...);

How to compile

Play with davix command line tool :

davix has a set of command line tools for testing purpose and demonstration

-> davix-ls: file listing
-> davix-get: download operations
-> davix-put: upload operations
-> davix-http: low level query composition

TODO in Davix

- WebHDFS support
- S3 ACL support
- CDMI support
- X-stream mode support ( metalink multi source download )

For any contribution please contact us on davix-devel@cern.ch