NS_IMETHODIMP nsLDAPChannel::Suspend(void) { NS_NOTYETIMPLEMENTED("nsLDAPChannel::Suspend"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP nsLDAPChannel::Resume(void) { NS_NOTYETIMPLEMENTED("nsLDAPChannel::Resume"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP HttpBaseChannel::SetContentLength(PRInt32 value) { NS_NOTYETIMPLEMENTED("HttpBaseChannel::SetContentLength"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP nsLDAPChannel::IsPending(PRBool *result) { NS_NOTYETIMPLEMENTED("nsLDAPChannel::IsPending"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP FileSystemDataSource::GetAllResources(nsISimpleEnumerator** aCursor) { NS_NOTYETIMPLEMENTED("sorry!"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP IDBCursor::Update(const jsval &aValue, JSContext* aCx, nsIIDBRequest** _retval) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); if (mType != OBJECTSTORE) { NS_NOTYETIMPLEMENTED("Implement me!"); return NS_ERROR_NOT_IMPLEMENTED; } if (!mObjectStore->TransactionIsOpen()) { return NS_ERROR_UNEXPECTED; } if (!mObjectStore->IsWriteAllowed()) { return NS_ERROR_OBJECT_IS_IMMUTABLE; } const Key& key = mData[mDataIndex].key; NS_ASSERTION(!key.IsUnset() && !key.IsNull(), "Bad key!"); JSAutoRequest ar(aCx); js::AutoValueRooter clone(aCx); nsresult rv = nsContentUtils::CreateStructuredClone(aCx, aValue, clone.jsval_addr()); if (NS_FAILED(rv)) { return rv; } if (!mObjectStore->KeyPath().IsEmpty()) { // Make sure the object given has the correct keyPath value set on it or // we will add it. const nsString& keyPath = mObjectStore->KeyPath(); const jschar* keyPathChars = reinterpret_cast<const jschar*>(keyPath.get()); const size_t keyPathLen = keyPath.Length(); js::AutoValueRooter prop(aCx); JSBool ok = JS_GetUCProperty(aCx, JSVAL_TO_OBJECT(clone.jsval_value()), keyPathChars, keyPathLen, prop.jsval_addr()); NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE); if (JSVAL_IS_VOID(prop.jsval_value())) { rv = IDBObjectStore::GetJSValFromKey(key, aCx, prop.jsval_addr()); NS_ENSURE_SUCCESS(rv, rv); ok = JS_DefineUCProperty(aCx, JSVAL_TO_OBJECT(clone.jsval_value()), keyPathChars, keyPathLen, prop.jsval_value(), nsnull, nsnull, JSPROP_ENUMERATE); NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE); } else { Key newKey; rv = IDBObjectStore::GetKeyFromJSVal(prop.jsval_value(), newKey); NS_ENSURE_SUCCESS(rv, rv); if (newKey.IsUnset() || newKey.IsNull() || newKey != key) { return NS_ERROR_INVALID_ARG; } } } nsTArray<IndexUpdateInfo> indexUpdateInfo; rv = IDBObjectStore::GetIndexUpdateInfo(mObjectStore->GetObjectStoreInfo(), aCx, clone.jsval_value(), indexUpdateInfo); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr<nsIJSON> json(new nsJSON()); nsString jsonValue; rv = json->EncodeFromJSVal(clone.jsval_addr(), aCx, jsonValue); NS_ENSURE_SUCCESS(rv, rv); nsRefPtr<IDBRequest> request = GenerateWriteRequest(mTransaction->ScriptContext(), mTransaction->Owner()); NS_ENSURE_TRUE(request, NS_ERROR_FAILURE); nsRefPtr<UpdateHelper> helper = new UpdateHelper(mTransaction, request, mObjectStore->Id(), jsonValue, key, mObjectStore->IsAutoIncrement(), indexUpdateInfo); rv = helper->DispatchToTransactionPool(); NS_ENSURE_SUCCESS(rv, rv); request.forget(_retval); return NS_OK; }
/* readonly attribute nsIDOMSVGAnimatedEnumeration lengthAdjust; */ NS_IMETHODIMP nsSVGTextContentElement::GetLengthAdjust(nsIDOMSVGAnimatedEnumeration * *aLengthAdjust) { NS_NOTYETIMPLEMENTED("nsSVGTextContentElement::GetLengthAdjust"); return NS_ERROR_NOT_IMPLEMENTED; }
// XXX Code copied from nsHTMLContentSink. It should be shared. void nsRDFParserUtils::StripAndConvert(nsString& aResult) { if ( !aResult.IsEmpty() ) { // Strip quotes if present PRUnichar first = aResult.First(); if ((first == '"') || (first == '\'')) { if (aResult.Last() == first) { aResult.Cut(0, 1); PRInt32 pos = aResult.Length() - 1; if (pos >= 0) { aResult.Cut(pos, 1); } } else { // Mismatched quotes - leave them in } } } // Reduce any entities // XXX Note: as coded today, this will only convert well formed // entities. This may not be compatible enough. // XXX there is a table in navigator that translates some numeric entities // should we be doing that? If so then it needs to live in two places (bad) // so we should add a translate numeric entity method from the parser... char cbuf[100]; PRUint32 i = 0; while (i < aResult.Length()) { // If we have the start of an entity (and it's not at the end of // our string) then translate the entity into it's unicode value. if ((aResult.CharAt(i++) == '&') && (i < aResult.Length())) { PRInt32 start = i - 1; PRUnichar e = aResult.CharAt(i); if (e == '#') { // Convert a numeric character reference i++; char* cp = cbuf; char* limit = cp + sizeof(cbuf) - 1; PRBool ok = PR_FALSE; PRUint32 slen = aResult.Length(); while ((i < slen) && (cp < limit)) { PRUnichar f = aResult.CharAt(i); if (f == ';') { i++; ok = PR_TRUE; break; } if ((f >= '0') && (f <= '9')) { *cp++ = char(f); i++; continue; } break; } if (!ok || (cp == cbuf)) { continue; } *cp = '\0'; if (cp - cbuf > 5) { continue; } PRInt32 ch = PRInt32( ::atoi(cbuf) ); if (ch > 65535) { continue; } // Remove entity from string and replace it with the integer // value. aResult.Cut(start, i - start); aResult.Insert(PRUnichar(ch), start); i = start + 1; } else if (((e >= 'A') && (e <= 'Z')) || ((e >= 'a') && (e <= 'z'))) { // Convert a named entity i++; char* cp = cbuf; char* limit = cp + sizeof(cbuf) - 1; *cp++ = char(e); PRBool ok = PR_FALSE; PRUint32 slen = aResult.Length(); while ((i < slen) && (cp < limit)) { PRUnichar f = aResult.CharAt(i); if (f == ';') { i++; ok = PR_TRUE; break; } if (((f >= '0') && (f <= '9')) || ((f >= 'A') && (f <= 'Z')) || ((f >= 'a') && (f <= 'z'))) { *cp++ = char(f); i++; continue; } break; } if (!ok || (cp == cbuf)) { continue; } *cp = '\0'; PRInt32 ch; // XXX Um, here's where we should be converting a // named entity. I removed this to avoid a link-time // dependency on core raptor. ch = EntityToUnicode(cbuf); if (ch < 0) { continue; } // Remove entity from string and replace it with the integer // value. aResult.Cut(start, i - start); aResult.Insert(PRUnichar(ch), start); i = start + 1; } else if (e == '{') { // Convert a script entity // XXX write me! NS_NOTYETIMPLEMENTED("convert a script entity"); } } } }
/* readonly attribute nsIDOMSVGAnimatedLength textLength; */ NS_IMETHODIMP nsSVGTextContentElement::GetTextLength(nsIDOMSVGAnimatedLength * *aTextLength) { NS_NOTYETIMPLEMENTED("nsSVGTextContentElement::GetTextLength"); return NS_ERROR_NOT_IMPLEMENTED; }
/* void selectSubString (in unsigned long charnum, in unsigned long nchars); */ NS_IMETHODIMP nsSVGTextContentElement::SelectSubString(PRUint32 charnum, PRUint32 nchars) { NS_NOTYETIMPLEMENTED("nsSVGTextContentElement::SelectSubString"); return NS_ERROR_NOT_IMPLEMENTED; }
NS_IMETHODIMP nsSVGPoint::GetValueString(nsAString& aValue) { NS_NOTYETIMPLEMENTED("nsSVGPoint::GetValueString"); return NS_ERROR_NOT_IMPLEMENTED; }
/** * \brief Configures the settings to use in order to properly transcode the * media item. */ NS_IMETHODIMP sbTranscodingConfigurator::Configurate(void) { NS_NOTYETIMPLEMENTED("sbTranscodingConfigurator::Configurate"); return NS_ERROR_NOT_IMPLEMENTED; }
/* void determineOutputType (); */ NS_IMETHODIMP sbTranscodingConfigurator::DetermineOutputType() { NS_NOTYETIMPLEMENTED("sbTranscodingConfigurator::DetermineOutputType"); return NS_ERROR_NOT_IMPLEMENTED; }