sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32std.h>
|
sl@0
|
17 |
#include "SqlSrvStrings.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
_LIT(KCreateSql, "CREATE");
|
sl@0
|
20 |
_LIT(KIndexSql, "INDEX");
|
sl@0
|
21 |
_LIT(KIfSql, "IF");
|
sl@0
|
22 |
_LIT(KNotSql, "NOT");
|
sl@0
|
23 |
_LIT(KExistsSql, "EXISTS");
|
sl@0
|
24 |
_LIT(KDotSql, ".");
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
Determines whether the specified string is an SQL statement that is supported as a config operation.
|
sl@0
|
29 |
Currently only 'CREATE INDEX' SQL statements are supported. If necessary adds qualifyed DB name to index name.
|
sl@0
|
30 |
|
sl@0
|
31 |
@param aStatementIn The string to be checked to determine if it is a supported SQL statement
|
sl@0
|
32 |
@param aDbName Logical database name: "main" for the main database or attached database name
|
sl@0
|
33 |
@param aStatementOut Output parameter. Buffer for the constructed statement (if the statement is supported).
|
sl@0
|
34 |
|
sl@0
|
35 |
@return True if the aStatementIn statement is supported, aStatementOut will contain the zero-terminated
|
sl@0
|
36 |
aStatementIn statement with the database name in it, if aDbName is a name of an attached database
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
TBool IsStatementSupported(const TDesC& aStatementIn, const TDesC& aDbName, TDes& aStatementOut)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
//'CREATE INDEX' is the only statement currently supported.
|
sl@0
|
41 |
//We must allow for whitespace between the 'CREATE' and the 'INDEX'
|
sl@0
|
42 |
TLex stmtParser(aStatementIn);
|
sl@0
|
43 |
TPtrC firstToken = stmtParser.NextToken(); // extract the first token of the statement
|
sl@0
|
44 |
if(firstToken.CompareF(KCreateSql()) != 0)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
return EFalse;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
//The first token is 'CREATE', now skip any whitespace between
|
sl@0
|
49 |
//it and the next token and ensure that the next token is 'INDEX'
|
sl@0
|
50 |
TPtrC secondToken = stmtParser.NextToken(); // skip any whitespace and extract the next token
|
sl@0
|
51 |
if(secondToken.CompareF(KIndexSql()) != 0)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return EFalse;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
//The second token is 'INDEX'
|
sl@0
|
56 |
TPtrC curToken = stmtParser.NextToken();
|
sl@0
|
57 |
// skip optional [IF NOT EXISTS]
|
sl@0
|
58 |
if(curToken.CompareF(KIfSql()) == 0)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
curToken.Set(stmtParser.NextToken());
|
sl@0
|
61 |
if(curToken.CompareF(KNotSql()) != 0)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return EFalse;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
curToken.Set(stmtParser.NextToken());
|
sl@0
|
66 |
if(curToken.CompareF(KExistsSql()) != 0)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
return EFalse;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
curToken.Set(stmtParser.NextToken());
|
sl@0
|
71 |
}
|
sl@0
|
72 |
// we got '[database-name.]index-name'
|
sl@0
|
73 |
if(curToken.Find(KDotSql)==KErrNotFound && aDbName.CompareF(KMainDb16) != 0) // just index-name
|
sl@0
|
74 |
{
|
sl@0
|
75 |
// Add DB name prefix before table name in the case of CREATE INDEX
|
sl@0
|
76 |
aStatementOut.Copy(aStatementIn.Ptr(), curToken.Ptr()-aStatementIn.Ptr());
|
sl@0
|
77 |
aStatementOut.Append(aDbName);
|
sl@0
|
78 |
aStatementOut.Append(KDotSql);
|
sl@0
|
79 |
aStatementOut.Append(curToken);
|
sl@0
|
80 |
aStatementOut.Append(stmtParser.Remainder());
|
sl@0
|
81 |
}
|
sl@0
|
82 |
else
|
sl@0
|
83 |
{
|
sl@0
|
84 |
aStatementOut.Copy(aStatementIn);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
aStatementOut.Append(TChar(0)); // SQLite requires statements to be zero-terminated
|
sl@0
|
87 |
return ETrue;
|
sl@0
|
88 |
}
|