From: Noah Watkins <jayhawk@cs.ucsc.edu>
To: ceph-devel@vger.kernel.org
Subject: [PATCH 0/3] Generic libcephfs Java wrappers
Date: Fri, 02 Mar 2012 16:47:28 -0800 [thread overview]
Message-ID: <4F516A20.8060901@cs.ucsc.edu> (raw)
Generic libcephfs Java wrappers.
This is the first of a patch series that can eventually replace the current Java wrappers that are Hadoop specific. This group implements enough of the libcephfs API to support Hadoop functionality, includes Debian packaging, autoconf magics that look for default Java installations, and some basic JUnit tests.
The patches are available in the git repository at:
git://github.com/noahdesu/ceph.git wip/java-cephfs
Noah Watkins (3):
java: add Java and C++ source files
java: setup autotools to build cephfs-java
debian: add libcephfs-java package
configure.ac | 74 ++
debian/.gitignore | 1 +
debian/control | 8 +-
debian/libceph1-java.install | 2 +
debian/rules | 1 +
src/Makefile.am | 15 +-
src/java/.gitignore | 4 +
src/java/Makefile.am | 49 +
src/java/README | 43 +
src/java/build.xml | 67 ++
.../java/net/newdream/ceph/fs/CephConstants.java | 38 +
.../java/net/newdream/ceph/fs/CephDirectory.java | 84 ++
.../java/net/newdream/ceph/fs/CephException.java | 21 +
.../ceph/fs/CephInvalidStateException.java | 11 +
src/java/java/net/newdream/ceph/fs/CephMount.java | 360 +++++++
.../net/newdream/ceph/fs/CephNativeLoader.java | 16 +
src/java/java/net/newdream/ceph/fs/CephProxy.java | 217 ++++
src/java/java/net/newdream/ceph/fs/CephStat.java | 15 +
.../java/net/newdream/ceph/fs/CephStatVFS.java | 14 +
src/java/java/net/newdream/ceph/fs/CephStruct.java | 33 +
src/java/native/libcephfs_jni.cc | 1037 ++++++++++++++++++++
src/java/test/CephMountCreateTest.java | 76 ++
src/java/test/CephMountTest.java | 72 ++
23 files changed, 2256 insertions(+), 2 deletions(-)
create mode 100644 debian/libceph1-java.install
create mode 100644 src/java/.gitignore
create mode 100644 src/java/Makefile.am
create mode 100644 src/java/README
create mode 100644 src/java/build.xml
create mode 100644 src/java/java/net/newdream/ceph/fs/CephConstants.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephDirectory.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephException.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephInvalidStateException.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephMount.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephNativeLoader.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephProxy.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephStat.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephStatVFS.java
create mode 100644 src/java/java/net/newdream/ceph/fs/CephStruct.java
create mode 100644 src/java/native/libcephfs_jni.cc
create mode 100644 src/java/test/CephMountCreateTest.java
create mode 100644 src/java/test/CephMountTest.java
--
1.7.5.4
next reply other threads:[~2012-03-03 0:47 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-03 0:47 Noah Watkins [this message]
2012-03-07 17:37 ` [PATCH 0/3] Generic libcephfs Java wrappers Sage Weil
2012-03-07 18:02 ` Noah Watkins
2012-03-07 21:40 ` Greg Farnum
2012-03-08 17:30 ` Noah Watkins
2012-03-08 18:48 ` Greg Farnum
2012-03-08 18:54 ` Noah Watkins
2012-03-09 2:16 ` Greg Farnum
2012-03-09 2:28 ` Noah Watkins
2012-03-09 2:47 ` Josh Durgin
2012-03-09 5:18 ` Sage Weil
2012-03-15 4:24 ` Noah Watkins
2012-03-15 4:38 ` Sage Weil
2012-03-15 4:44 ` Noah Watkins
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F516A20.8060901@cs.ucsc.edu \
--to=jayhawk@cs.ucsc.edu \
--cc=ceph-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.