Update contrib.
1 // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <stdlib.h> //wchar_t
17 #include "SqlAssert.h"
18 #include "SqlSrvUtil.h"
19 #include "OstTraceDefinitions.h"
20 #ifdef OST_TRACE_COMPILER_IN_USE
21 #include "SqlSrvUtilTraces.h"
23 #include "SqlTraceDef.h"
25 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
27 //Used in PrintAuthorizerArguments()
28 _LIT8(KCreateIndex, "Create index"); //SQLITE_CREATE_INDEX
29 _LIT8(KCreateTable, "Create table"); //SQLITE_CREATE_TABLE
30 _LIT8(KCreateTempIndex, "Create temp index"); //SQLITE_CREATE_TEMP_INDEX
31 _LIT8(KCreateTempTable, "Create temp table"); //SQLITE_CREATE_TEMP_TABLE
32 _LIT8(KCreateTempTrigger, "Create temp trigger"); //SQLITE_CREATE_TEMP_TRIGGER
33 _LIT8(KCreateTempView, "Create temp view"); //SQLITE_CREATE_TEMP_VIEW
34 _LIT8(KCreateTrigger, "Create trigger"); //SQLITE_CREATE_TRIGGER
35 _LIT8(KCreateView, "Create view"); //SQLITE_CREATE_VIEW
36 _LIT8(KDelete, "DELETE"); //SQLITE_DELETE
37 _LIT8(KDropIndex, "Drop index"); //SQLITE_DROP_INDEX
38 _LIT8(KDropTable, "Drop table"); //SQLITE_DROP_TABLE
39 _LIT8(KDropTempIndex, "Drop temp index"); //SQLITE_DROP_TEMP_INDEX
40 _LIT8(KDropTempTable, "Drop temp table"); //SQLITE_DROP_TEMP_TABLE
41 _LIT8(KDropTempTrigger, "Drop temp trigger"); //SQLITE_DROP_TEMP_TRIGGER
42 _LIT8(KDropTempView, "Drop temp view"); //SQLITE_DROP_TEMP_VIEW
43 _LIT8(KDropTrigger, "Drop trigger"); //SQLITE_DROP_TRIGGER
44 _LIT8(KDropView, "Drop view"); //SQLITE_DROP_VIEW
45 _LIT8(KInsert, "INSERT"); //SQLITE_INSERT
46 _LIT8(KPragma, "PRAGMA"); //SQLITE_PRAGMA
47 _LIT8(KRead, "Read"); //SQLITE_READ
48 _LIT8(KSelect, "SELECT"); //SQLITE_SELECT
49 _LIT8(KTransaction, "TRANSACTION"); //SQLITE_TRANSACTION
50 _LIT8(KUpdate, "UPDATE"); //SQLITE_UPDATE
51 _LIT8(KAttach, "ATTACH"); //SQLITE_ATTACH
52 _LIT8(KDetach, "DETACH"); //SQLITE_DETACH
53 _LIT8(KAlterTable, "Alter table"); //SQLITE_ALTER_TABLE
54 _LIT8(KReindex, "Reindex"); //SQLITE_REINDEX
55 _LIT8(KAnalyze, "Analyze"); //SQLITE_ANALYZE
56 _LIT8(KCreateVTable, "Create virt.table"); //SQLITE_CREATE_VTABLE
57 _LIT8(KDropVTable, "Drop virt.table"); //SQLITE_DROP_VTABLE
58 _LIT8(KFunctionCall, "Function call"); //SQLITE_FUNCTION
61 _LIT8(KInvalid, "INVALID");
63 //Used in PrintAuthorizerArguments()
64 const TPtrC8 KDbOpNames[] =
66 KCreateIndex(), KCreateTable(), KCreateTempIndex(), KCreateTempTable(), KCreateTempTrigger(),
67 KCreateTempView(), KCreateTrigger(), KCreateView(), KDelete(), KDropIndex(),
68 KDropTable(), KDropTempIndex(), KDropTempTable(), KDropTempTrigger(), KDropTempView(),
69 KDropTrigger(), KDropView(), KInsert(), KPragma(), KRead(),
70 KSelect(), KTransaction(), KUpdate(), KAttach(), KDetach(), KAlterTable(), KReindex(), KAnalyze(),
71 KCreateVTable(), KDropVTable(), KFunctionCall()
75 const TInt KMaxOpCodes = sizeof(KDbOpNames) / sizeof(KDbOpNames[0]);
79 This function has a defined implementaion only in _DEBUG mode and is used to print the authorizer arguments.
83 void PrintAuthorizerArguments(TInt aDbOpType, const char* aDbObjName1, const char* aDbObjName2,
84 const char* aDbName, const char* aTrgOrViewName)
86 __ASSERT_DEBUG(aDbOpType > 0 && aDbOpType <= KMaxOpCodes, __SQLPANIC2(ESqlPanicInternalError));
88 //TPtrC8 objects cannot be used for the function arguments, because the arguments may not be 16-bit aligned!!!
91 opName.Copy(KDbOpNames[aDbOpType - 1]);
94 dbObjName1.Copy(KNull);
97 dbObjName1.Copy(KInvalid);
98 if(User::StringLength((const TUint8*)aDbObjName1) <= dbObjName1.MaxLength())
100 dbObjName1.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbObjName1)));
104 dbObjName2.Copy(KNull);
107 dbObjName2.Copy(KInvalid);
108 if(User::StringLength((const TUint8*)aDbObjName2) <= dbObjName2.MaxLength())
110 dbObjName2.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbObjName2)));
117 dbName.Copy(KInvalid);
118 if(User::StringLength((const TUint8*)aDbName) <= dbName.MaxLength())
120 dbName.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbName)));
123 TBuf<64> trgOrViewName;
124 trgOrViewName.Copy(KNull);
127 trgOrViewName.Copy(KInvalid);
128 if(User::StringLength((const TUint8*)aTrgOrViewName) <= trgOrViewName.MaxLength())
130 trgOrViewName.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aTrgOrViewName)));
134 SQL_TRACE_AUTHORIZER(OstTraceExt5(TRACE_INTERNALS, SQLAUTHORIZER, "0;PrintAuthorizerArguments;%20.20S;%40.40S;%10.10S;%10.10S;%10.10S", __SQLPRNSTR(opName), __SQLPRNSTR(dbObjName1), __SQLPRNSTR(dbObjName2), __SQLPRNSTR(dbName), __SQLPRNSTR(trgOrViewName)));
136 #endif//_SQL_AUTHORIZER_TRACE_ENABLED
139 Converts a UTF16 encoded descriptor to a UTF8 encoded descriptor.
140 Note: the function works only for input descriptors with length less or equal than KMaxFileName.
142 @param aIn The input UTF16 encoded descriptor,
143 @param aOut The output buffer where the converted input descriptor will be stored.
144 @return True if the conversion was successful, false otherwise.
146 @panic SqlDb 4 In _DEBUG mode if aIn length is bigger than KMaxFileName.
147 @panic SqlDb 4 In _DEBUG mode if aOut max length is less than KMaxFileName.
151 TBool UTF16ToUTF8(const TDesC& aIn, TDes8& aOut)
153 __ASSERT_DEBUG(aIn.Length() <= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
154 __ASSERT_DEBUG(aOut.MaxLength() >= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
155 TBuf16<KMaxFileName + 1> des;
157 des.Append(TChar(0));
158 TInt len = wcstombs((char*)aOut.Ptr(), (const wchar_t*)des.Ptr(), KMaxFileName);
159 //Check the file name length. If it is longer than KMaxFileName characters, then the file name is not valid.
160 if((TUint)len <= KMaxFileName)
169 Converts a zero-terminated, UTF16 encoded file name to a zero-terminated, UTF8 encoded file name.
170 @param aFileName The input file name buffer. aFileName argument is expected to point to UTF16 encoded,
171 zero terminated string,
172 @param aFileNameDestBuf The output file name buffer where the converted input file name will be stored.
173 The output file name buffer max length should be at least KMaxFileName + 1.
174 @return True if the conversion was successful, false otherwise.
176 @panic SqlDb 4 In _DEBUG mode if aFileName length is bigger than KMaxFileName + 1.
177 @panic SqlDb 4 In _DEBUG mode if aFileName is not zero-terminated or if aFileNameDestBuf max length is less than KMaxFileName + 1.
181 TBool UTF16ZToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf)
183 __ASSERT_DEBUG(aFileName.Length() <= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
184 __ASSERT_DEBUG(aFileName[aFileName.Length() - 1] == 0, __SQLPANIC2(ESqlPanicBadArgument));
185 __ASSERT_DEBUG(aFileNameDestBuf.MaxLength() >= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
186 const wchar_t* src = reinterpret_cast <const wchar_t*> (aFileName.Ptr());
187 TInt len = wcstombs((char*)aFileNameDestBuf.Ptr(), src, KMaxFileName);
188 //Check the file name length. If it is longer than KMaxFileName characters, then the file name is not valid.
189 if((TUint)len <= KMaxFileName)
191 aFileNameDestBuf.SetLength(len + 1);
192 aFileNameDestBuf[len] = 0;
199 Converts a UTF16 encoded file name to a zero-terminated, UTF8 encoded file name.
200 @param aFileName The input file name buffer. aFileName argument is expected to point to UTF16 encoded string,
201 @param aFileNameDestBuf The output file name buffer where the converted input file name will be stored.
202 The output file name buffer max length should be at least KMaxFileName + 1.
203 @return True if the conversion was successful, false otherwise.
205 @panic SqlDb 4 In _DEBUG mode if aFileName length is bigger than KMaxFileName.
206 @panic SqlDb 4 In _DEBUG mode if aFileNameDestBuf max length is less than KMaxFileName + 1.
210 TBool UTF16ToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf)
212 __ASSERT_DEBUG(aFileName.Length() <= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
213 __ASSERT_DEBUG(aFileNameDestBuf.MaxLength() >= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
214 TBool rc = ::UTF16ToUTF8(aFileName, aFileNameDestBuf);
217 aFileNameDestBuf.Append(0);
222 //Returns true if aDbFileName is a read-only file
223 TBool IsReadOnlyFileL(RFs& aFs, const TDesC& aDbFileName)
226 TInt err = aFs.Entry(aDbFileName, entry);
227 if(err == KErrNotFound)
231 __SQLLEAVE_IF_ERROR2(err);
232 return entry.IsReadOnly();