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
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.
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"
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
;
54 mResultSet
->FillColumnValues(mValues
);
59 nsXULTemplateResultStorage::GetIsContainer(PRBool
* aIsContainer
)
61 *aIsContainer
= PR_FALSE
;
66 nsXULTemplateResultStorage::GetIsEmpty(PRBool
* aIsEmpty
)
73 nsXULTemplateResultStorage::GetMayProcessChildren(PRBool
* aMayProcessChildren
)
75 *aMayProcessChildren
= PR_FALSE
;
80 nsXULTemplateResultStorage::GetId(nsAString
& aId
)
82 const char* uri
= nsnull
;
83 mNode
->GetValueConst(&uri
);
85 aId
.Assign(NS_ConvertUTF8toUTF16(uri
));
91 nsXULTemplateResultStorage::GetResource(nsIRDFResource
** aResource
)
94 NS_IF_ADDREF(*aResource
);
99 nsXULTemplateResultStorage::GetType(nsAString
& aType
)
107 nsXULTemplateResultStorage::GetBindingFor(nsIAtom
* aVar
, nsAString
& aValue
)
109 NS_ENSURE_ARG_POINTER(aVar
);
116 PRInt32 idx
= mResultSet
->GetColumnIndex(aVar
);
121 nsIVariant
* value
= mValues
[idx
];
123 value
->GetAsAString(aValue
);
129 nsXULTemplateResultStorage::GetBindingObjectFor(nsIAtom
* aVar
, nsISupports
** aValue
)
131 NS_ENSURE_ARG_POINTER(aVar
);
134 PRInt32 idx
= mResultSet
->GetColumnIndex(aVar
);
136 *aValue
= mValues
[idx
];
137 NS_IF_ADDREF(*aValue
);
146 nsXULTemplateResultStorage::RuleMatched(nsISupports
* aQuery
, nsIDOMNode
* aRuleNode
)
152 nsXULTemplateResultStorage::HasBeenRemoved()