Commit c1a3bb47 authored by Pankaj Yadav's avatar Pankaj Yadav Committed by Jean-Baptiste Kempf

Symbian App private path and build changes

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 10a16711
...@@ -238,6 +238,7 @@ EXTRA_libvlccore_la_SOURCES = \ ...@@ -238,6 +238,7 @@ EXTRA_libvlccore_la_SOURCES = \
$(SOURCES_libvlc_darwin) \ $(SOURCES_libvlc_darwin) \
$(SOURCES_libvlc_linux) \ $(SOURCES_libvlc_linux) \
$(SOURCES_libvlc_win32) \ $(SOURCES_libvlc_win32) \
$(SOURCES_libvlc_symbian) \
$(SOURCES_libvlc_other) \ $(SOURCES_libvlc_other) \
$(SOURCES_libvlc_httpd) \ $(SOURCES_libvlc_httpd) \
$(SOURCES_libvlc_sout) \ $(SOURCES_libvlc_sout) \
...@@ -255,11 +256,15 @@ else ...@@ -255,11 +256,15 @@ else
if HAVE_WINCE if HAVE_WINCE
libvlccore_la_SOURCES += $(SOURCES_libvlc_win32) libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
else else
if HAVE_SYMBIAN
libvlccore_la_SOURCES += $(SOURCES_libvlc_symbian)
else
libvlccore_la_SOURCES += $(SOURCES_libvlc_other) libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
endif endif
endif endif
endif endif
endif endif
endif
if BUILD_HTTPD if BUILD_HTTPD
libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd) libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
endif endif
...@@ -295,6 +300,10 @@ SOURCES_libvlc_win32 = \ ...@@ -295,6 +300,10 @@ SOURCES_libvlc_win32 = \
win32/winsock.c \ win32/winsock.c \
$(NULL) $(NULL)
SOURCES_libvlc_symbian = \
symbian/path.cpp \
$(NULL)
SOURCES_libvlc_other = \ SOURCES_libvlc_other = \
config/dirs_xdg.c \ config/dirs_xdg.c \
misc/atomic.c \ misc/atomic.c \
......
/*****************************************************************************
* 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");
}
/*****************************************************************************
* 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);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment