]> git.sesse.net Git - vlc/commitdiff
Symbian App private path and build changes
authorPankaj Yadav <pk@videolan.org>
Sun, 9 Jan 2011 21:29:33 +0000 (02:59 +0530)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 10 Jan 2011 22:27:56 +0000 (23:27 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
src/Makefile.am [changed mode: 0644->0755]
src/symbian/path.cpp [new file with mode: 0755]
src/symbian/path.h [new file with mode: 0755]

old mode 100644 (file)
new mode 100755 (executable)
index edc4dbe..a445751
@@ -238,6 +238,7 @@ EXTRA_libvlccore_la_SOURCES = \
        $(SOURCES_libvlc_darwin) \
        $(SOURCES_libvlc_linux) \
        $(SOURCES_libvlc_win32) \
+       $(SOURCES_libvlc_symbian) \
        $(SOURCES_libvlc_other) \
        $(SOURCES_libvlc_httpd) \
        $(SOURCES_libvlc_sout) \
@@ -255,11 +256,15 @@ else
 if HAVE_WINCE
 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
 else
+if HAVE_SYMBIAN
+libvlccore_la_SOURCES += $(SOURCES_libvlc_symbian)
+else
 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
 endif
 endif
 endif
 endif
+endif
 if BUILD_HTTPD
 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
 endif
@@ -295,6 +300,10 @@ SOURCES_libvlc_win32 = \
        win32/winsock.c \
        $(NULL)
 
+SOURCES_libvlc_symbian = \
+       symbian/path.cpp \
+       $(NULL)
+
 SOURCES_libvlc_other = \
        config/dirs_xdg.c \
        misc/atomic.c \
diff --git a/src/symbian/path.cpp b/src/symbian/path.cpp
new file mode 100755 (executable)
index 0000000..650be89
--- /dev/null
@@ -0,0 +1,94 @@
+/*****************************************************************************
+ * path.cpp : Symbian Application's Provate Path
+ *****************************************************************************
+ * Copyright © 2010 Pankaj Yadav
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#include <f32file.h>
+#include <e32base.h>
+#include <sys/types.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <wchar.h>
+#include <string.h>
+#include <utf.h>
+
+#include "path.h"
+
+/*Way to Find AppPrivatePath (A Path where an application can store its private data) */
+static TInt GetPrivatePath(TFileName& privatePath)
+{
+    TFileName KPath;
+    RFs fsSession;
+    TInt result;
+
+    result = fsSession.Connect();
+    if (result != KErrNone)
+    {
+        return result;
+    }
+    fsSession.PrivatePath(KPath);
+    TFindFile findFile(fsSession);
+
+    privatePath = KPath;
+    result = findFile.FindByDir(KPath, KNullDesC);
+    if (result == KErrNone)
+    {
+        privatePath = findFile.File();
+    }
+
+    fsSession.Close();
+    return result;
+}
+
+extern "C" char * GetConstPrivatePath(void)
+{
+    TFileName privatePath;
+    TBuf8<KMaxFileName> privatepathutf8;
+    size_t len;
+    char carray[KMaxFileName];
+
+    if(GetPrivatePath(privatePath)!=KErrNone)
+    {
+        goto defaultreturn;
+    }
+
+    CnvUtfConverter::ConvertFromUnicodeToUtf8( privatepathutf8, privatePath );
+
+    TInt index = 0;
+    for(index =0 ; index < privatepathutf8.Length(); index++)
+    {
+        carray[index] = privatepathutf8[index];
+    }
+    carray[index] = 0;
+
+    if((len = strnlen((const char *)carray, KMaxFileName) < KMaxFileName)
+    {
+        carray[len-1]='\0';
+    }
+    else
+    {
+        goto defaultreturn;
+    }
+
+
+    return strdup((const char *)carray);
+
+defaultreturn:
+    return strdup("C:\\Data\\Others");
+}
+
diff --git a/src/symbian/path.h b/src/symbian/path.h
new file mode 100755 (executable)
index 0000000..a71de27
--- /dev/null
@@ -0,0 +1,22 @@
+/*****************************************************************************
+ * path.h: Symbian Aplications Private Path
+ *****************************************************************************
+ * Copyright © 2010 Pankaj Yadav
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+extern "C" char * GetConstPrivatePath(void);
+