2002-08-21 16:01:05 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2002-08-21 16:01:05 +04:00
|
|
|
#ifndef nsPagePrintTimer_h___
|
|
|
|
#define nsPagePrintTimer_h___
|
|
|
|
|
|
|
|
// Timer Includes
|
|
|
|
#include "nsITimer.h"
|
|
|
|
|
|
|
|
#include "nsIDocumentViewerPrint.h"
|
|
|
|
#include "nsPrintObject.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-31 04:24:35 +04:00
|
|
|
#include "nsThreadUtils.h"
|
2002-08-21 16:01:05 +04:00
|
|
|
|
|
|
|
class nsPrintEngine;
|
2017-03-30 17:49:43 +03:00
|
|
|
class nsIDocument;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
|
|
|
//---------------------------------------------------
|
|
|
|
//-- Page Timer Class
|
|
|
|
//---------------------------------------------------
|
2016-04-26 03:23:21 +03:00
|
|
|
class nsPagePrintTimer final : public mozilla::Runnable,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsITimerCallback
|
2002-08-21 16:01:05 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-07-14 23:21:34 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2012-09-06 11:14:49 +04:00
|
|
|
nsPagePrintTimer(nsPrintEngine* aPrintEngine,
|
|
|
|
nsIDocumentViewerPrint* aDocViewerPrint,
|
2017-03-30 17:49:43 +03:00
|
|
|
nsIDocument* aDocument,
|
2012-09-06 11:14:49 +04:00
|
|
|
uint32_t aDelay)
|
2017-03-30 17:49:43 +03:00
|
|
|
: Runnable("nsPagePrintTimer")
|
|
|
|
, mPrintEngine(aPrintEngine)
|
2012-09-06 11:14:49 +04:00
|
|
|
, mDocViewerPrint(aDocViewerPrint)
|
2017-03-30 17:49:43 +03:00
|
|
|
, mDocument(aDocument)
|
2012-09-06 11:14:49 +04:00
|
|
|
, mDelay(aDelay)
|
|
|
|
, mFiringCount(0)
|
|
|
|
, mPrintObj(nullptr)
|
2012-10-02 21:42:21 +04:00
|
|
|
, mWatchDogCount(0)
|
|
|
|
, mDone(false)
|
2012-09-06 11:14:49 +04:00
|
|
|
{
|
2017-03-30 17:49:43 +03:00
|
|
|
MOZ_ASSERT(aDocument);
|
2012-09-06 11:14:49 +04:00
|
|
|
mDocViewerPrint->IncrementDestroyRefCount();
|
|
|
|
}
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2002-09-07 09:38:16 +04:00
|
|
|
NS_DECL_NSITIMERCALLBACK
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2006-12-10 11:05:05 +03:00
|
|
|
nsresult Start(nsPrintObject* aPO);
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Run() override;
|
2012-08-31 04:24:35 +04:00
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
void Stop();
|
2006-12-10 11:05:05 +03:00
|
|
|
|
2016-01-05 13:08:57 +03:00
|
|
|
void WaitForRemotePrint();
|
|
|
|
void RemotePrintFinished();
|
|
|
|
|
2017-04-27 11:17:20 +03:00
|
|
|
void Disconnect()
|
|
|
|
{
|
|
|
|
mPrintEngine = nullptr;
|
|
|
|
mPrintObj = nullptr;
|
|
|
|
}
|
2017-01-03 14:10:11 +03:00
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
private:
|
2014-07-09 01:23:18 +04:00
|
|
|
~nsPagePrintTimer();
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsresult StartTimer(bool aUseDelay);
|
2012-10-02 21:42:21 +04:00
|
|
|
nsresult StartWatchDogTimer();
|
|
|
|
void StopWatchDogTimer();
|
|
|
|
void Fail();
|
2006-12-10 11:05:05 +03:00
|
|
|
|
2002-08-21 16:01:05 +04:00
|
|
|
nsPrintEngine* mPrintEngine;
|
|
|
|
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
|
2017-03-30 17:49:43 +03:00
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
2002-08-21 16:01:05 +04:00
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
2012-10-02 21:42:21 +04:00
|
|
|
nsCOMPtr<nsITimer> mWatchDogTimer;
|
2016-01-05 13:08:57 +03:00
|
|
|
nsCOMPtr<nsITimer> mWaitingForRemotePrint;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mDelay;
|
|
|
|
uint32_t mFiringCount;
|
2002-08-21 16:01:05 +04:00
|
|
|
nsPrintObject * mPrintObj;
|
2012-10-02 21:42:21 +04:00
|
|
|
uint32_t mWatchDogCount;
|
|
|
|
bool mDone;
|
|
|
|
|
|
|
|
static const uint32_t WATCH_DOG_INTERVAL = 1000;
|
2016-12-19 13:12:39 +03:00
|
|
|
static const uint32_t WATCH_DOG_MAX_COUNT =
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Debug builds are very slow (on Mac at least) and can need extra time
|
|
|
|
30
|
|
|
|
#else
|
|
|
|
10
|
|
|
|
#endif
|
|
|
|
;
|
2002-08-21 16:01:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsPagePrintTimer_h___ */
|