зеркало из https://github.com/mozilla/gecko-dev.git
119 строки
2.4 KiB
C++
119 строки
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_MetadataHelper_h
|
|
#define mozilla_dom_MetadataHelper_h
|
|
|
|
#include "FileHelper.h"
|
|
#include "js/TypeDecls.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/AsyncHelper.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class MetadataHelper;
|
|
|
|
class MetadataParameters final
|
|
{
|
|
friend class MetadataHelper;
|
|
|
|
public:
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(MetadataParameters)
|
|
|
|
MetadataParameters(bool aSizeRequested, bool aLastModifiedRequested)
|
|
: mSizeRequested(aSizeRequested)
|
|
, mLastModifiedRequested(aLastModifiedRequested)
|
|
{
|
|
}
|
|
|
|
bool
|
|
IsConfigured() const
|
|
{
|
|
return mSizeRequested || mLastModifiedRequested;
|
|
}
|
|
|
|
bool
|
|
SizeRequested() const
|
|
{
|
|
return mSizeRequested;
|
|
}
|
|
|
|
bool
|
|
LastModifiedRequested() const
|
|
{
|
|
return mLastModifiedRequested;
|
|
}
|
|
|
|
uint64_t
|
|
Size() const
|
|
{
|
|
return mSize;
|
|
}
|
|
|
|
int64_t
|
|
LastModified() const
|
|
{
|
|
return mLastModified;
|
|
}
|
|
|
|
private:
|
|
// Private destructor, to discourage deletion outside of Release():
|
|
~MetadataParameters()
|
|
{
|
|
}
|
|
|
|
uint64_t mSize;
|
|
int64_t mLastModified;
|
|
bool mSizeRequested;
|
|
bool mLastModifiedRequested;
|
|
};
|
|
|
|
class MetadataHelper : public FileHelper
|
|
{
|
|
public:
|
|
MetadataHelper(FileHandleBase* aFileHandle,
|
|
FileRequestBase* aFileRequest,
|
|
MetadataParameters* aParams)
|
|
: FileHelper(aFileHandle, aFileRequest),
|
|
mParams(aParams)
|
|
{ }
|
|
|
|
nsresult
|
|
DoAsyncRun(nsISupports* aStream) override;
|
|
|
|
nsresult
|
|
GetSuccessResult(JSContext* aCx,
|
|
JS::MutableHandle<JS::Value> aVal) override;
|
|
|
|
protected:
|
|
class AsyncMetadataGetter : public AsyncHelper
|
|
{
|
|
public:
|
|
AsyncMetadataGetter(nsISupports* aStream, MetadataParameters* aParams,
|
|
bool aReadWrite)
|
|
: AsyncHelper(aStream),
|
|
mParams(aParams), mReadWrite(aReadWrite)
|
|
{ }
|
|
|
|
protected:
|
|
nsresult
|
|
DoStreamWork(nsISupports* aStream) override;
|
|
|
|
private:
|
|
nsRefPtr<MetadataParameters> mParams;
|
|
bool mReadWrite;
|
|
};
|
|
|
|
nsRefPtr<MetadataParameters> mParams;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_MetadataHelper_h
|