Official WebSite: Here
User Documentation: Here
Mailing list : davix-devel@cern.ch
file / object store API : Davix::DavFile
posix compatiblity layer : Davix::DavPosix
http request layer: Davix::HttpRequest
main header: davix.hpp
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:
{.cpp}
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;
{.cpp}
DavFile file(context, "http://my.webdav.server.org/myfoldier/newfolder");
// creat directory
file.makeCollection(NULL);
{.cpp}
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)
{.cpp}
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);
{.cpp}
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);
{.cpp}
Davix::DavPosix p;
// 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);
//
{.cpp}
Davix::HttpRequest req("https://restapi-server.org/rest")
req.addHeaderField(...)
req.setRequestMethod("PUT")
// .. configure ....
//
//
// execute your request
req.executeRequest(...);
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
For any contribution please contact us on davix-devel@cern.ch
1.4.7