aboutsummaryrefslogtreecommitdiff
path: root/src/android/jni/URI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/jni/URI.cpp')
-rw-r--r--src/android/jni/URI.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/android/jni/URI.cpp b/src/android/jni/URI.cpp
new file mode 100644
index 0000000000..2f76c0f50a
--- /dev/null
+++ b/src/android/jni/URI.cpp
@@ -0,0 +1,55 @@
+/*
+ * Copyright (C) 2013 Team XBMC
+ * http://xbmc.org
+ *
+ * This Program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This Program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with XBMC; see the file COPYING. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include "URI.h"
+#include "jutils/jutils-details.hpp"
+
+using namespace jni;
+
+CJNIURI CJNIURI::parse(std::string uriString)
+{
+ return call_static_method<jhobject>("android/net/Uri",
+ "parse", "(Ljava/lang/String;)Landroid/net/Uri;",
+ jcast<jhstring>(uriString));
+}
+
+std::string CJNIURI::getScheme() const
+{
+ return jcast<std::string>(call_method<jhstring>(m_object,
+ "getScheme", "()Ljava/lang/String;"));
+}
+
+std::string CJNIURI::toString() const
+{
+ return jcast<std::string>(call_method<jhstring>(m_object,
+ "toString", "()Ljava/lang/String;"));
+}
+
+std::string CJNIURI::getLastPathSegment() const
+{
+ return jcast<std::string>(call_method<jhstring>(m_object,
+ "getLastPathSegment", "()Ljava/lang/String;"));
+}
+
+std::string CJNIURI::getPath() const
+{
+ return jcast<std::string>(call_method<jhstring>(m_object,
+ "getPath", "()Ljava/lang/String;"));
+}