transport: pass correct channel
[abstract.git] / storage / base / aaLoadEntity.cpp
blob0d8904099984e40ab85d9e0eae26049a7673ea02
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2007,2008 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include "xpcom-config.h"
24 #include "nsCOMPtr.h"
25 #include "nsStringAPI.h"
27 /* Unfrozen API */
29 /* Project includes */
30 #include "aaIHandler.h"
31 #include "aaLoadEntity.h"
32 #include "aaISqlFilter.h"
34 #include "aaIColumnNameConverter.h"
35 #include "aaOrderCondition.h"
37 /************************************************************************/
38 class CEntityNameConverter : public aaIColumnNameConverter
40 public:
41 CEntityNameConverter() {}
42 ~CEntityNameConverter() {}
43 public:
44 NS_IMETHOD_(nsCAutoString) convertName(const nsACString& name) const {
45 if (name.Equals(NS_LITERAL_CSTRING("entity.tag"))) {
46 return NS_LITERAL_CSTRING("tag");
48 return nsCAutoString();
51 /************************************************************************/
53 #define AA_LOADENTITY_SELECT_QUERY "SELECT id,tag FROM entity"
54 #define AA_LOADENTITY_SELECT_QUERY_FILTERED \
55 "SELECT id,tag FROM entity" AA_SQL_WHERE_FILTER_MARK AA_SQL_ORDER_MARK
57 static struct aaLoadRequest::ColumnMap map[] = {
58 { "id", 0 }
59 ,{"tag", 1}
60 ,{0, 0}
63 aaLoadEntity::aaLoadEntity()
65 mSql = AA_LOADENTITY_SELECT_QUERY;
66 mSqlFiltered = AA_LOADENTITY_SELECT_QUERY_FILTERED;
67 mMap = &map[0];
70 NS_IMPL_ISUPPORTS_INHERITED0(aaLoadEntity,
71 aaLoadRequest)
73 /* aaISqlRequest */
74 NS_IMETHODIMP
75 aaLoadEntity::GetParams(nsIArray * * aParams)
77 NS_ENSURE_ARG_POINTER(aParams);
78 *aParams = nsnull;
80 return NS_OK;
83 /* aaIDataNode */
84 NS_IMETHODIMP
85 aaLoadEntity::Accept(aaIHandler *aQuery)
87 return aQuery->HandleEntity(nsnull);
90 NS_IMETHODIMP
91 aaLoadEntity::GetCondition(aaICondition* pCondition, nsACString& aSql)
93 nsresult rc = NS_OK;
94 CEntityNameConverter cnvrt;
95 NS_ENSURE_ARG_POINTER(pCondition);
97 aSql.Truncate();
99 pCondition->ToString(&cnvrt, aSql);
101 return rc;