javacommons/gcfprotocols/file/src.s60/filesystemutilsjni.cpp
branchRCL_3
changeset 19 04becd199f91
child 23 98ccebc37403
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javacommons/gcfprotocols/file/src.s60/filesystemutilsjni.cpp	Tue Apr 27 16:30:29 2010 +0300
@@ -0,0 +1,155 @@
+/*
+* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  JNI Layer corresponding to FileSystemUtils.java
+ *
+*/
+
+
+#include <e32cmn.h>
+#include <f32file.h>
+
+#include "javajniutils.h"
+#include "javasymbianoslayer.h"
+#include "s60commonutils.h"
+#include "logger.h"
+
+#include "systempropertyprovider.h"
+#include "com_nokia_mj_impl_file_FileSystemUtils.h"
+
+using namespace std;
+using namespace java::file;
+using namespace java::util;
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getMemoryCardDrivePath
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getMemoryCardDrivePath
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    TFileName fileName;
+    SystemPropertyProvider::GetMemoryCardPath(fileName);
+    wstring name((wchar_t*)fileName.PtrZ());
+    return JniUtils::wstringToJstring(aJni, name);
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getTemporaryDrivePath
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getTemporaryDrivePath
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    TFileName fileName;
+    SystemPropertyProvider::GetTemporaryDrive(fileName);
+    wstring name((wchar_t*)fileName.PtrZ());
+    return JniUtils::wstringToJstring(aJni, name);
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getRomDrivePath
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getRomDrivePath
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    TFileName fileName;
+    SystemPropertyProvider::GetRomDrive(fileName);
+    wstring name((wchar_t*)fileName.PtrZ());
+    return JniUtils::wstringToJstring(aJni, name);
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getDefaultRootPath
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getDefaultRootPath
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    TFileName fileName;
+    SystemPropertyProvider::GetDefaultRoot(fileName);
+    wstring name((wchar_t*)fileName.PtrZ());
+    return JniUtils::wstringToJstring(aJni, name);
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getPathOfProperty
+ * Signature: (I)Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getPathOfProperty
+(JNIEnv *aJni, jclass, jint aKey, jboolean addRoot)
+{
+    JELOG2(EJavaFile);
+    TFileName fileName;
+    SystemPropertyProvider::GetPathOfProperty(aKey, fileName, addRoot);
+    wstring name((wchar_t*)fileName.PtrZ());
+    return JniUtils::wstringToJstring(aJni, name);
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getForbiddenPaths
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getForbiddenPaths
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    jstring str = 0;
+    HBufC* names = 0;
+
+    SystemPropertyProvider::GetForbiddenPaths(names);
+    TPtrC namePtr(names->Des());
+    if (0 != names)
+    {
+        str = S60CommonUtils::NativeToJavaString(*aJni, namePtr);
+        delete names;
+    }
+    return str;
+}
+
+/*
+ * Class:     com_nokia_mj_impl_file_FileSystemUtils
+ * Method:    _getRestrictedPaths
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_file_FileSystemUtils__1getRestrictedPaths
+(JNIEnv *aJni, jclass)
+{
+    JELOG2(EJavaFile);
+    jstring str = 0;
+    HBufC* names = 0;
+
+    TRAPD(err, SystemPropertyProvider::GetRestrictedPathsL(names));
+
+    if (KErrNone == err)
+    {
+        TPtrC namePtr(names->Des());
+        if (0 != names)
+        {
+            str = S60CommonUtils::NativeToJavaString(*aJni, namePtr);
+            delete names;
+        }
+    }
+    return str;
+}