зеркало из https://github.com/mozilla/gecko-dev.git
117 строки
2.8 KiB
C++
117 строки
2.8 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "PlaceInfo.h"
|
|
#include "VisitInfo.h"
|
|
#include "nsIURI.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "nsIXPConnect.h"
|
|
#include "mozilla/Services.h"
|
|
|
|
namespace mozilla {
|
|
namespace places {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// PlaceInfo
|
|
|
|
PlaceInfo::PlaceInfo(PRInt64 aId,
|
|
const nsCString& aGUID,
|
|
already_AddRefed<nsIURI> aURI,
|
|
const nsString& aTitle,
|
|
PRInt64 aFrecency,
|
|
const VisitsArray& aVisits)
|
|
: mId(aId)
|
|
, mGUID(aGUID)
|
|
, mURI(aURI)
|
|
, mTitle(aTitle)
|
|
, mFrecency(aFrecency)
|
|
, mVisits(aVisits)
|
|
{
|
|
NS_PRECONDITION(mURI, "Must provide a non-null uri!");
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// mozIPlaceInfo
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetPlaceId(PRInt64* _placeId)
|
|
{
|
|
*_placeId = mId;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetGuid(nsACString& _guid)
|
|
{
|
|
_guid = mGUID;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetUri(nsIURI** _uri)
|
|
{
|
|
NS_ADDREF(*_uri = mURI);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetTitle(nsAString& _title)
|
|
{
|
|
_title = mTitle;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetFrecency(PRInt64* _frecency)
|
|
{
|
|
*_frecency = mFrecency;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
PlaceInfo::GetVisits(JSContext* aContext,
|
|
jsval* _visits)
|
|
{
|
|
// TODO bug 625913 when we use this in situations that have more than one
|
|
// visit here, we will likely want to make this cache the value.
|
|
JSObject* visits = JS_NewArrayObject(aContext, 0, NULL);
|
|
NS_ENSURE_TRUE(visits, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
JSObject* global = JS_GetGlobalForScopeChain(aContext);
|
|
NS_ENSURE_TRUE(global, NS_ERROR_UNEXPECTED);
|
|
|
|
nsCOMPtr<nsIXPConnect> xpc = mozilla::services::GetXPConnect();
|
|
|
|
for (VisitsArray::size_type idx = 0; idx < mVisits.Length(); idx++) {
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> wrapper;
|
|
nsresult rv = xpc->WrapNative(aContext, global, mVisits[idx],
|
|
NS_GET_IID(mozIVisitInfo),
|
|
getter_AddRefs(wrapper));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
JSObject* jsobj;
|
|
rv = wrapper->GetJSObject(&jsobj);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
jsval wrappedVisit = OBJECT_TO_JSVAL(jsobj);
|
|
|
|
JSBool rc = JS_SetElement(aContext, visits, idx, &wrappedVisit);
|
|
NS_ENSURE_TRUE(rc, NS_ERROR_UNEXPECTED);
|
|
}
|
|
|
|
*_visits = OBJECT_TO_JSVAL(visits);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// nsISupports
|
|
|
|
NS_IMPL_ISUPPORTS1(
|
|
PlaceInfo
|
|
, mozIPlaceInfo
|
|
)
|
|
|
|
} // namespace places
|
|
} // namespace mozilla
|