2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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"
|
2018-01-10 01:21:53 +03:00
|
|
|
#include "mozilla/OwningNonNull.h"
|
2012-08-31 04:24:35 +04:00
|
|
|
#include "nsThreadUtils.h"
|
2002-08-21 16:01:05 +04:00
|
|
|
|
2017-12-04 20:44:17 +03:00
|
|
|
class nsPrintJob;
|
2002-08-21 16:01:05 +04:00
|
|
|
|
|
|
|
//---------------------------------------------------
|
|
|
|
//-- Page Timer Class
|
|
|
|
//---------------------------------------------------
|
2020-10-08 00:00:26 +03:00
|
|
|
// Strictly speaking, this actually manages the timing of printing *sheets*
|
|
|
|
// (instances of "PrintedSheetFrame"), each of which may encompass multiple
|
|
|
|
// pages (nsPageFrames) of the document. The use of "Page" in the class name
|
|
|
|
// here is for historical / colloquial purposes.
|
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
|
|
|
|
2017-12-04 20:44:17 +03:00
|
|
|
nsPagePrintTimer(nsPrintJob* aPrintJob,
|
2012-09-06 11:14:49 +04:00
|
|
|
nsIDocumentViewerPrint* aDocViewerPrint,
|
2019-01-02 16:05:23 +03:00
|
|
|
mozilla::dom::Document* aDocument, uint32_t aDelay)
|
2017-03-30 17:49:43 +03:00
|
|
|
: Runnable("nsPagePrintTimer"),
|
2017-12-04 20:44:17 +03:00
|
|
|
mPrintJob(aPrintJob),
|
2020-08-31 13:44:19 +03: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) {
|
2018-01-10 01:21:53 +03:00
|
|
|
MOZ_ASSERT(aDocViewerPrint && aDocument);
|
2018-01-08 19:59:31 +03:00
|
|
|
mDocViewerPrint->IncrementDestroyBlockedCount();
|
2012-09-06 11:14:49 +04:00
|
|
|
}
|
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();
|
|
|
|
|
2020-08-31 13:44:19 +03:00
|
|
|
void Disconnect();
|
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
|
|
|
|
2017-12-04 20:44:17 +03:00
|
|
|
nsPrintJob* mPrintJob;
|
2020-08-31 13:44:19 +03:00
|
|
|
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
|
2019-01-02 16:05:23 +03:00
|
|
|
RefPtr<mozilla::dom::Document> 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;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-10-02 21:42:21 +04:00
|
|
|
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___ */
|