/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Mozilla Communicator client code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Chris Waterson * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsRDFConMemberTestNode.h" #include "nsIRDFContainer.h" #include "nsIRDFContainerUtils.h" #include "nsRDFCID.h" #include "nsIServiceManager.h" #include "nsResourceSet.h" #include "nsString.h" #include "prlog.h" #ifdef PR_LOGGING #include "nsXULContentUtils.h" extern PRLogModuleInfo* gXULTemplateLog; #endif nsRDFConMemberTestNode::nsRDFConMemberTestNode(TestNode* aParent, nsXULTemplateQueryProcessorRDF* aProcessor, nsIAtom *aContainerVariable, nsIAtom *aMemberVariable) : nsRDFTestNode(aParent), mProcessor(aProcessor), mContainerVariable(aContainerVariable), mMemberVariable(aMemberVariable) { #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { nsCAutoString props; nsResourceSet& containmentProps = aProcessor->ContainmentProperties(); nsResourceSet::ConstIterator last = containmentProps.Last(); nsResourceSet::ConstIterator first = containmentProps.First(); nsResourceSet::ConstIterator iter; for (iter = first; iter != last; ++iter) { if (iter != first) props += " "; const char* str; iter->GetValueConst(&str); props += str; } nsAutoString cvar(NS_LITERAL_STRING("(none)")); if (mContainerVariable) mContainerVariable->ToString(cvar); nsAutoString mvar(NS_LITERAL_STRING("(none)")); if (mMemberVariable) mMemberVariable->ToString(mvar); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, ("nsRDFConMemberTestNode[%p]: parent=%p member-props=(%s) container-var=%s member-var=%s", this, aParent, props.get(), NS_ConvertUTF16toUTF8(cvar).get(), NS_ConvertUTF16toUTF8(mvar).get())); } #endif } nsresult nsRDFConMemberTestNode::FilterInstantiations(InstantiationSet& aInstantiations, PRBool* aCantHandleYet) const { // XXX Uh, factor me, please! nsresult rv; if (aCantHandleYet) *aCantHandleYet = PR_FALSE; nsCOMPtr rdfc = do_GetService("@mozilla.org/rdf/container-utils;1"); if (! rdfc) return NS_ERROR_FAILURE; nsIRDFDataSource* ds = mProcessor->GetDataSource(); InstantiationSet::Iterator last = aInstantiations.Last(); for (InstantiationSet::Iterator inst = aInstantiations.First(); inst != last; ++inst) { PRBool hasContainerBinding; nsCOMPtr containerValue; hasContainerBinding = inst->mAssignments.GetAssignmentFor(mContainerVariable, getter_AddRefs(containerValue)); nsCOMPtr containerRes = do_QueryInterface(containerValue); nsCOMPtr rdfcontainer; if (hasContainerBinding && containerRes) { // If we have a container assignment, then see if the // container is an RDF container (bag, seq, alt), and if // so, wrap it. PRBool isRDFContainer; rv = rdfc->IsContainer(ds, containerRes, &isRDFContainer); if (NS_FAILED(rv)) return rv; if (isRDFContainer) { rdfcontainer = do_CreateInstance("@mozilla.org/rdf/container;1", &rv); if (NS_FAILED(rv)) return rv; rv = rdfcontainer->Init(ds, containerRes); if (NS_FAILED(rv)) return rv; } } PRBool hasMemberBinding; nsCOMPtr memberValue; hasMemberBinding = inst->mAssignments.GetAssignmentFor(mMemberVariable, getter_AddRefs(memberValue)); #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { const char* container = "(unbound)"; if (hasContainerBinding) containerRes->GetValueConst(&container); nsAutoString member(NS_LITERAL_STRING("(unbound)")); if (hasMemberBinding) nsXULContentUtils::GetTextForNode(memberValue, member); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, ("nsRDFConMemberTestNode[%p]: FilterInstantiations() container=[%s] member=[%s]", this, container, NS_ConvertUTF16toUTF8(member).get())); } #endif if (hasContainerBinding && hasMemberBinding) { // it's a consistency check. see if we have a assignment that is consistent PRBool isconsistent = PR_FALSE; if (rdfcontainer) { // RDF containers are easy. Just use the container API. PRInt32 index; rv = rdfcontainer->IndexOf(memberValue, &index); if (NS_FAILED(rv)) return rv; if (index >= 0) isconsistent = PR_TRUE; } // XXXwaterson oof. if we *are* an RDF container, why do // we still need to grovel through all the containment // properties if the thing we're looking for wasn't there? if (! isconsistent) { // Othewise, we'll need to grovel through the // membership properties to see if we have an // assertion that indicates membership. nsResourceSet& containmentProps = mProcessor->ContainmentProperties(); for (nsResourceSet::ConstIterator property = containmentProps.First(); property != containmentProps.Last(); ++property) { PRBool hasAssertion; rv = ds->HasAssertion(containerRes, *property, memberValue, PR_TRUE, &hasAssertion); if (NS_FAILED(rv)) return rv; if (hasAssertion) { // it's consistent. leave it in the set and we'll // run it up to our parent. isconsistent = PR_TRUE; break; } } } PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, (" consistency check => %s", isconsistent ? "passed" : "failed")); if (isconsistent) { // Add a memory element to our set-of-support. Element* element = nsRDFConMemberTestNode::Element::Create(containerRes, memberValue); if (! element) return NS_ERROR_OUT_OF_MEMORY; inst->AddSupportingElement(element); } else { // it's inconsistent. remove it. aInstantiations.Erase(inst--); } // We're done, go on to the next instantiation continue; } if (hasContainerBinding && rdfcontainer) { // We've got a container assignment, and the container is // bound to an RDF container. Add each member as a new // instantiation. nsCOMPtr elements; rv = rdfcontainer->GetElements(getter_AddRefs(elements)); if (NS_FAILED(rv)) return rv; while (1) { PRBool hasmore; rv = elements->HasMoreElements(&hasmore); if (NS_FAILED(rv)) return rv; if (! hasmore) break; nsCOMPtr isupports; rv = elements->GetNext(getter_AddRefs(isupports)); if (NS_FAILED(rv)) return rv; nsCOMPtr node = do_QueryInterface(isupports); if (! node) return NS_ERROR_UNEXPECTED; #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { nsAutoString member; nsXULContentUtils::GetTextForNode(node, member); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, (" member => %s", NS_ConvertUTF16toUTF8(member).get())); } #endif Instantiation newinst = *inst; newinst.AddAssignment(mMemberVariable, node); Element* element = nsRDFConMemberTestNode::Element::Create(containerRes, node); if (! element) return NS_ERROR_OUT_OF_MEMORY; newinst.AddSupportingElement(element); aInstantiations.Insert(inst, newinst); } } if (hasMemberBinding) { // Oh, this is so nasty. If we have a member assignment, then // grovel through each one of our inbound arcs to see if // any of them are ordinal properties (like an RDF // container might have). If so, walk it backwards to get // the container we're in. nsCOMPtr arcsin; rv = ds->ArcLabelsIn(memberValue, getter_AddRefs(arcsin)); if (NS_FAILED(rv)) return rv; while (1) { nsCOMPtr property; { PRBool hasmore; rv = arcsin->HasMoreElements(&hasmore); if (NS_FAILED(rv)) return rv; if (! hasmore) break; nsCOMPtr isupports; rv = arcsin->GetNext(getter_AddRefs(isupports)); if (NS_FAILED(rv)) return rv; property = do_QueryInterface(isupports); if (! property) return NS_ERROR_UNEXPECTED; } // Ordinal properties automagically indicate container // membership as far as we're concerned. Note that // we're *only* concerned with ordinal properties // here: the next block will worry about the other // membership properties. PRBool isordinal; rv = rdfc->IsOrdinalProperty(property, &isordinal); if (NS_FAILED(rv)) return rv; if (isordinal) { // If we get here, we've found a property that // indicates container membership leading *into* a // member node. Find all the people that point to // it, and call them containers. nsCOMPtr sources; rv = ds->GetSources(property, memberValue, PR_TRUE, getter_AddRefs(sources)); if (NS_FAILED(rv)) return rv; while (1) { PRBool hasmore; rv = sources->HasMoreElements(&hasmore); if (NS_FAILED(rv)) return rv; if (! hasmore) break; nsCOMPtr isupports; rv = sources->GetNext(getter_AddRefs(isupports)); if (NS_FAILED(rv)) return rv; nsCOMPtr source = do_QueryInterface(isupports); if (! source) return NS_ERROR_UNEXPECTED; #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { const char* container; source->GetValueConst(&container); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, (" container => %s", container)); } #endif // Add a new instantiation Instantiation newinst = *inst; newinst.AddAssignment(mContainerVariable, source); Element* element = nsRDFConMemberTestNode::Element::Create(source, memberValue); if (! element) return NS_ERROR_OUT_OF_MEMORY; newinst.AddSupportingElement(element); aInstantiations.Insert(inst, newinst); } } } } if ((hasContainerBinding && ! hasMemberBinding) || (! hasContainerBinding && hasMemberBinding)) { // it's an open ended query on the container or member. go // through our containment properties to see if anything // applies. nsResourceSet& containmentProps = mProcessor->ContainmentProperties(); for (nsResourceSet::ConstIterator property = containmentProps.First(); property != containmentProps.Last(); ++property) { nsCOMPtr results; if (hasContainerBinding) { rv = ds->GetTargets(containerRes, *property, PR_TRUE, getter_AddRefs(results)); } else { rv = ds->GetSources(*property, memberValue, PR_TRUE, getter_AddRefs(results)); } if (NS_FAILED(rv)) return rv; while (1) { PRBool hasmore; rv = results->HasMoreElements(&hasmore); if (NS_FAILED(rv)) return rv; if (! hasmore) break; nsCOMPtr isupports; rv = results->GetNext(getter_AddRefs(isupports)); if (NS_FAILED(rv)) return rv; nsIAtom* variable; nsCOMPtr value; nsCOMPtr valueRes; if (hasContainerBinding) { variable = mMemberVariable; value = do_QueryInterface(isupports); NS_ASSERTION(value != nsnull, "member is not an nsIRDFNode"); if (! value) continue; #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { nsAutoString s; nsXULContentUtils::GetTextForNode(value, s); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, (" member => %s", NS_ConvertUTF16toUTF8(s).get())); } #endif } else { variable = mContainerVariable; valueRes = do_QueryInterface(isupports); NS_ASSERTION(valueRes != nsnull, "container is not an nsIRDFResource"); if (! valueRes) continue; value = valueRes; #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { const char* s; valueRes->GetValueConst(&s); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, (" container => %s", s)); } #endif } // Copy the original instantiation, and add it to the // instantiation set with the new assignment that we've // introduced. Ownership will be transferred to the Instantiation newinst = *inst; newinst.AddAssignment(variable, value); Element* element; if (hasContainerBinding) { element = nsRDFConMemberTestNode::Element::Create(containerRes, value); } else { element = nsRDFConMemberTestNode::Element::Create(valueRes, memberValue); } if (! element) return NS_ERROR_OUT_OF_MEMORY; newinst.AddSupportingElement(element); aInstantiations.Insert(inst, newinst); } } } if (! hasContainerBinding && ! hasMemberBinding) { // Neither container nor member assignment! if (!aCantHandleYet) { return NS_ERROR_UNEXPECTED; } *aCantHandleYet = PR_TRUE; return NS_OK; } // finally, remove the "under specified" instantiation. aInstantiations.Erase(inst--); } return NS_OK; } PRBool nsRDFConMemberTestNode::CanPropagate(nsIRDFResource* aSource, nsIRDFResource* aProperty, nsIRDFNode* aTarget, Instantiation& aInitialBindings) const { nsresult rv; PRBool canpropagate = PR_FALSE; nsCOMPtr rdfc = do_GetService("@mozilla.org/rdf/container-utils;1"); if (! rdfc) return PR_FALSE; // We can certainly propagate ordinal properties rv = rdfc->IsOrdinalProperty(aProperty, &canpropagate); if (NS_FAILED(rv)) return PR_FALSE; if (! canpropagate) { canpropagate = mProcessor->ContainmentProperties().Contains(aProperty); } #ifdef PR_LOGGING if (PR_LOG_TEST(gXULTemplateLog, PR_LOG_DEBUG)) { const char* source; aSource->GetValueConst(&source); const char* property; aProperty->GetValueConst(&property); nsAutoString target; nsXULContentUtils::GetTextForNode(aTarget, target); PR_LOG(gXULTemplateLog, PR_LOG_DEBUG, ("nsRDFConMemberTestNode[%p]: CanPropagate([%s]==[%s]=>[%s]) => %s", this, source, property, NS_ConvertUTF16toUTF8(target).get(), canpropagate ? "true" : "false")); } #endif if (canpropagate) { aInitialBindings.AddAssignment(mContainerVariable, aSource); aInitialBindings.AddAssignment(mMemberVariable, aTarget); return PR_TRUE; } return PR_FALSE; } void nsRDFConMemberTestNode::Retract(nsIRDFResource* aSource, nsIRDFResource* aProperty, nsIRDFNode* aTarget) const { PRBool canretract = PR_FALSE; nsCOMPtr rdfc = do_GetService("@mozilla.org/rdf/container-utils;1"); if (! rdfc) return; // We can certainly retract ordinal properties nsresult rv; rv = rdfc->IsOrdinalProperty(aProperty, &canretract); if (NS_FAILED(rv)) return; if (! canretract) { canretract = mProcessor->ContainmentProperties().Contains(aProperty); } if (canretract) { mProcessor->RetractElement(Element(aSource, aTarget)); } }