• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  * Copyright (C) 2010 University of Szeged. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24  * THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include "config.h"
28 #include "LayoutTestController.h"
29 
30 #include "InjectedBundle.h"
31 #include <QDir>
32 #include <QObject>
33 
34 namespace WTR {
35 
36 class WatchdogTimerHelper : public QObject {
37     Q_OBJECT
38 
39 public:
instance()40     static WatchdogTimerHelper* instance()
41     {
42         static WatchdogTimerHelper* theInstance = new WatchdogTimerHelper;
43         return theInstance;
44     }
45 
46 public slots:
timerFired()47     void timerFired()
48     {
49         InjectedBundle::shared().layoutTestController()->waitToDumpWatchdogTimerFired();
50     }
51 
52 private:
WatchdogTimerHelper()53     WatchdogTimerHelper() {}
54 };
55 
platformInitialize()56 void LayoutTestController::platformInitialize()
57 {
58     QObject::connect(&m_waitToDumpWatchdogTimer, SIGNAL(timeout()), WatchdogTimerHelper::instance(), SLOT(timerFired()));
59 }
60 
invalidateWaitToDumpWatchdogTimer()61 void LayoutTestController::invalidateWaitToDumpWatchdogTimer()
62 {
63     m_waitToDumpWatchdogTimer.stop();
64 }
65 
initializeWaitToDumpWatchdogTimerIfNeeded()66 void LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded()
67 {
68     if (m_waitToDumpWatchdogTimer.isActive())
69         return;
70 
71     m_waitToDumpWatchdogTimer.start(waitToDumpWatchdogTimerInterval * 1000);
72 }
73 
pathToLocalResource(JSStringRef url)74 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url)
75 {
76     QString path = QDir::toNativeSeparators(QString(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url)));
77     return JSStringCreateWithCharacters(reinterpret_cast<const JSChar*>(path.constData()), path.length());
78 }
79 
80 } // namespace WTR
81 
82 #include "LayoutTestControllerQt.moc"
83