Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / xul / templates / src / nsXULTemplateResultStorage.cpp
blobd26249d577374c2fa9a5145e358868ecd88e0533
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is Neil Deakin
18 * Portions created by the Initial Developer are Copyright (C) 2005
19 * the Initial Developer. All Rights Reserved.
21 * Contributor(s):
22 * Laurent Jouanneau <laurent.jouanneau@disruptive-innovations.com>
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "nsIServiceManager.h"
39 #include "nsRDFCID.h"
40 #include "nsIRDFService.h"
42 #include "nsXULTemplateResultStorage.h"
44 static NS_DEFINE_CID(kRDFServiceCID, NS_RDFSERVICE_CID);
46 NS_IMPL_ISUPPORTS1(nsXULTemplateResultStorage, nsIXULTemplateResult)
48 nsXULTemplateResultStorage::nsXULTemplateResultStorage(nsXULTemplateResultSetStorage* aResultSet)
50 nsCOMPtr<nsIRDFService> rdfService = do_GetService(kRDFServiceCID);
51 rdfService->GetAnonymousResource(getter_AddRefs(mNode));
52 mResultSet = aResultSet;
53 if (aResultSet) {
54 mResultSet->FillColumnValues(mValues);
58 NS_IMETHODIMP
59 nsXULTemplateResultStorage::GetIsContainer(PRBool* aIsContainer)
61 *aIsContainer = PR_FALSE;
62 return NS_OK;
65 NS_IMETHODIMP
66 nsXULTemplateResultStorage::GetIsEmpty(PRBool* aIsEmpty)
68 *aIsEmpty = PR_TRUE;
69 return NS_OK;
72 NS_IMETHODIMP
73 nsXULTemplateResultStorage::GetMayProcessChildren(PRBool* aMayProcessChildren)
75 *aMayProcessChildren = PR_FALSE;
76 return NS_OK;
79 NS_IMETHODIMP
80 nsXULTemplateResultStorage::GetId(nsAString& aId)
82 const char* uri = nsnull;
83 mNode->GetValueConst(&uri);
85 aId.Assign(NS_ConvertUTF8toUTF16(uri));
87 return NS_OK;
90 NS_IMETHODIMP
91 nsXULTemplateResultStorage::GetResource(nsIRDFResource** aResource)
93 *aResource = mNode;
94 NS_IF_ADDREF(*aResource);
95 return NS_OK;
98 NS_IMETHODIMP
99 nsXULTemplateResultStorage::GetType(nsAString& aType)
101 aType.Truncate();
102 return NS_OK;
106 NS_IMETHODIMP
107 nsXULTemplateResultStorage::GetBindingFor(nsIAtom* aVar, nsAString& aValue)
109 NS_ENSURE_ARG_POINTER(aVar);
111 aValue.Truncate();
112 if (!mResultSet) {
113 return NS_OK;
116 PRInt32 idx = mResultSet->GetColumnIndex(aVar);
117 if (idx < 0) {
118 return NS_OK;
121 nsIVariant * value = mValues[idx];
122 if (value) {
123 value->GetAsAString(aValue);
125 return NS_OK;
128 NS_IMETHODIMP
129 nsXULTemplateResultStorage::GetBindingObjectFor(nsIAtom* aVar, nsISupports** aValue)
131 NS_ENSURE_ARG_POINTER(aVar);
133 if (mResultSet) {
134 PRInt32 idx = mResultSet->GetColumnIndex(aVar);
135 if (idx >= 0) {
136 *aValue = mValues[idx];
137 NS_IF_ADDREF(*aValue);
138 return NS_OK;
141 *aValue = nsnull;
142 return NS_OK;
145 NS_IMETHODIMP
146 nsXULTemplateResultStorage::RuleMatched(nsISupports* aQuery, nsIDOMNode* aRuleNode)
148 return NS_OK;
151 NS_IMETHODIMP
152 nsXULTemplateResultStorage::HasBeenRemoved()
154 return NS_OK;