OS X: Use autoreleasepool blocks in Objective-C(++) code

And get rid of the helper class from utils.
All supported platforms support this.

Change-Id: Ic4307a42fc55ac4673438ea4325bca14ed33849b
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
This commit is contained in:
Eike Ziller
2015-11-09 10:39:08 +01:00
parent d8f119c8a2
commit 09417c56bd
5 changed files with 240 additions and 270 deletions

View File

@@ -1,51 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms and
** conditions see http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
#ifndef AUTORELEASEPOOL_H
#define AUTORELEASEPOOL_H
#import <Foundation/NSAutoreleasePool.h>
namespace Utils {
class AutoreleasePool
{
public:
AutoreleasePool() { pool = [[NSAutoreleasePool alloc] init]; }
~AutoreleasePool() { [pool release]; }
private:
NSAutoreleasePool *pool;
};
} // Utils
#endif // AUTORELEASEPOOL_H

View File

@@ -30,7 +30,6 @@
#include "fileutils_mac.h" #include "fileutils_mac.h"
#include "autoreleasepool.h"
#include "qtcassert.h" #include "qtcassert.h"
#include <QDir> #include <QDir>
@@ -44,18 +43,19 @@ namespace Internal {
QUrl filePathUrl(const QUrl &url) QUrl filePathUrl(const QUrl &url)
{ {
Utils::AutoreleasePool pool; Q_UNUSED(pool)
QUrl ret = url; QUrl ret = url;
@autoreleasepool {
NSURL *nsurl = url.toNSURL(); NSURL *nsurl = url.toNSURL();
if ([nsurl isFileReferenceURL]) if ([nsurl isFileReferenceURL])
ret = QUrl::fromNSURL([nsurl filePathURL]); ret = QUrl::fromNSURL([nsurl filePathURL]);
}
return ret; return ret;
} }
QString normalizePathName(const QString &filePath) QString normalizePathName(const QString &filePath)
{ {
AutoreleasePool pool; Q_UNUSED(pool) QString result;
@autoreleasepool {
// NSURL getResourceValue returns values based on the cleaned path so we need to work on that. // NSURL getResourceValue returns values based on the cleaned path so we need to work on that.
// It also returns the disk name for "/" and "/.." and errors on "" and relative paths, // It also returns the disk name for "/" and "/.." and errors on "" and relative paths,
// so avoid that // so avoid that
@@ -64,7 +64,6 @@ QString normalizePathName(const QString &filePath)
if (QFileInfo(filePath).isRelative()) if (QFileInfo(filePath).isRelative())
return filePath; return filePath;
QString result;
QString path = QDir::cleanPath(filePath); QString path = QDir::cleanPath(filePath);
// avoid empty paths and paths like "/../foo" or "/.." // avoid empty paths and paths like "/../foo" or "/.."
if (path.isEmpty() || path.contains(QLatin1String("/../")) || path.endsWith(QLatin1String("/.."))) if (path.isEmpty() || path.contains(QLatin1String("/../")) || path.endsWith(QLatin1String("/..")))
@@ -83,6 +82,7 @@ QString normalizePathName(const QString &filePath)
path = info.path(); path = info.path();
} }
QTC_ASSERT(path == QLatin1String("/"), return filePath); QTC_ASSERT(path == QLatin1String("/"), return filePath);
}
return result; return result;
} }

View File

@@ -208,7 +208,7 @@ FORMS += $$PWD/filewizardpage.ui \
RESOURCES += $$PWD/utils.qrc RESOURCES += $$PWD/utils.qrc
osx { osx {
HEADERS += $$PWD/autoreleasepool.h \ HEADERS += \
$$PWD/fileutils_mac.h $$PWD/fileutils_mac.h
OBJECTIVE_SOURCES += \ OBJECTIVE_SOURCES += \
$$PWD/fileutils_mac.mm $$PWD/fileutils_mac.mm

View File

@@ -30,7 +30,6 @@
#include "spotlightlocatorfilter.h" #include "spotlightlocatorfilter.h"
#include <utils/autoreleasepool.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <QMutex> #include <QMutex>
@@ -38,7 +37,6 @@
#include <QWaitCondition> #include <QWaitCondition>
#include <Foundation/NSArray.h> #include <Foundation/NSArray.h>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSDictionary.h> #include <Foundation/NSDictionary.h>
#include <Foundation/NSMetadata.h> #include <Foundation/NSMetadata.h>
#include <Foundation/NSNotification.h> #include <Foundation/NSNotification.h>
@@ -85,7 +83,7 @@ SpotlightIterator::SpotlightIterator(const QString &expression)
m_queueIndex(-1), m_queueIndex(-1),
m_finished(false) m_finished(false)
{ {
Utils::AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
NSPredicate *predicate = [NSPredicate predicateWithFormat:expression.toNSString()]; NSPredicate *predicate = [NSPredicate predicateWithFormat:expression.toNSString()];
m_query = [[NSMetadataQuery alloc] init]; m_query = [[NSMetadataQuery alloc] init];
m_query.predicate = predicate; m_query.predicate = predicate;
@@ -113,6 +111,7 @@ SpotlightIterator::SpotlightIterator(const QString &expression)
}] retain]; }] retain];
[m_query startQuery]; [m_query startQuery];
} }
}
SpotlightIterator::~SpotlightIterator() SpotlightIterator::~SpotlightIterator()
{ {
@@ -163,7 +162,7 @@ void SpotlightIterator::ensureNext()
return; return;
if (m_index >= 10000) // limit the amount of data that is passed on if (m_index >= 10000) // limit the amount of data that is passed on
return; return;
Utils::AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
// check if there are items in the queue, otherwise wait for some // check if there are items in the queue, otherwise wait for some
m_mutex.lock(); m_mutex.lock();
bool itemAvailable = (m_queueIndex + 1 < m_queue.count); bool itemAvailable = (m_queueIndex + 1 < m_queue.count);
@@ -180,6 +179,7 @@ void SpotlightIterator::ensureNext()
} }
m_mutex.unlock(); m_mutex.unlock();
} }
}
// #pragma mark -- SpotlightLocatorFilter // #pragma mark -- SpotlightLocatorFilter

View File

@@ -34,7 +34,6 @@
#include "openpagesmanager.h" #include "openpagesmanager.h"
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <utils/autoreleasepool.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <QApplication> #include <QApplication>
@@ -437,7 +436,7 @@ MacWebKitHelpWidget::MacWebKitHelpWidget(MacWebKitHelpViewer *parent)
{ {
d->m_toolTipTimer.setSingleShot(true); d->m_toolTipTimer.setSingleShot(true);
connect(&d->m_toolTipTimer, &QTimer::timeout, this, &MacWebKitHelpWidget::showToolTip); connect(&d->m_toolTipTimer, &QTimer::timeout, this, &MacWebKitHelpWidget::showToolTip);
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
d->m_webView = [[MyWebView alloc] init]; d->m_webView = [[MyWebView alloc] init];
// Turn layered rendering on. // Turn layered rendering on.
// Otherwise the WebView will render empty after any QQuickWidget was shown. // Otherwise the WebView will render empty after any QQuickWidget was shown.
@@ -450,6 +449,7 @@ MacWebKitHelpWidget::MacWebKitHelpWidget(MacWebKitHelpViewer *parent)
setCocoaView(d->m_webView); setCocoaView(d->m_webView);
} }
}
MacWebKitHelpWidget::~MacWebKitHelpWidget() MacWebKitHelpWidget::~MacWebKitHelpWidget()
{ {
@@ -507,12 +507,13 @@ MacWebKitHelpViewer::MacWebKitHelpViewer(QWidget *parent)
new MacResponderHack(qApp); new MacResponderHack(qApp);
} }
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
QVBoxLayout *layout = new QVBoxLayout; QVBoxLayout *layout = new QVBoxLayout;
setLayout(layout); setLayout(layout);
layout->setContentsMargins(0, 0, 0, 0); layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(m_widget, 10); layout->addWidget(m_widget, 10);
} }
}
MacWebKitHelpViewer::~MacWebKitHelpViewer() MacWebKitHelpViewer::~MacWebKitHelpViewer()
{ {
@@ -521,44 +522,50 @@ MacWebKitHelpViewer::~MacWebKitHelpViewer()
QFont MacWebKitHelpViewer::viewerFont() const QFont MacWebKitHelpViewer::viewerFont() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
WebPreferences *preferences = m_widget->webView().preferences; WebPreferences *preferences = m_widget->webView().preferences;
QString family = QString::fromNSString([preferences standardFontFamily]); QString family = QString::fromNSString([preferences standardFontFamily]);
int size = [preferences defaultFontSize]; int size = [preferences defaultFontSize];
return QFont(family, size); return QFont(family, size);
} }
}
void MacWebKitHelpViewer::setViewerFont(const QFont &font) void MacWebKitHelpViewer::setViewerFont(const QFont &font)
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
WebPreferences *preferences = m_widget->webView().preferences; WebPreferences *preferences = m_widget->webView().preferences;
[preferences setStandardFontFamily:font.family().toNSString()]; [preferences setStandardFontFamily:font.family().toNSString()];
[preferences setDefaultFontSize:font.pointSize()]; [preferences setDefaultFontSize:font.pointSize()];
} }
}
void MacWebKitHelpViewer::scaleUp() void MacWebKitHelpViewer::scaleUp()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
m_widget->webView().textSizeMultiplier += 0.1; m_widget->webView().textSizeMultiplier += 0.1;
} }
}
void MacWebKitHelpViewer::scaleDown() void MacWebKitHelpViewer::scaleDown()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
m_widget->webView().textSizeMultiplier = qMax(0.1, m_widget->webView().textSizeMultiplier - 0.1); m_widget->webView().textSizeMultiplier = qMax(0.1, m_widget->webView().textSizeMultiplier - 0.1);
} }
}
void MacWebKitHelpViewer::resetScale() void MacWebKitHelpViewer::resetScale()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
m_widget->webView().textSizeMultiplier = 1.0; m_widget->webView().textSizeMultiplier = 1.0;
} }
}
qreal MacWebKitHelpViewer::scale() const qreal MacWebKitHelpViewer::scale() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
return m_widget->webView().textSizeMultiplier; return m_widget->webView().textSizeMultiplier;
} }
}
void MacWebKitHelpViewer::setScale(qreal scale) void MacWebKitHelpViewer::setScale(qreal scale)
{ {
@@ -567,25 +574,28 @@ void MacWebKitHelpViewer::setScale(qreal scale)
QString MacWebKitHelpViewer::title() const QString MacWebKitHelpViewer::title() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
return QString::fromNSString(m_widget->webView().mainFrameTitle); return QString::fromNSString(m_widget->webView().mainFrameTitle);
} }
}
QUrl MacWebKitHelpViewer::source() const QUrl MacWebKitHelpViewer::source() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
WebDataSource *dataSource = m_widget->webView().mainFrame.dataSource; WebDataSource *dataSource = m_widget->webView().mainFrame.dataSource;
if (!dataSource) if (!dataSource)
dataSource = m_widget->webView().mainFrame.provisionalDataSource; dataSource = m_widget->webView().mainFrame.provisionalDataSource;
return QUrl::fromNSURL(dataSource.request.URL); return QUrl::fromNSURL(dataSource.request.URL);
} }
}
void MacWebKitHelpViewer::setSource(const QUrl &url) void MacWebKitHelpViewer::setSource(const QUrl &url)
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
ensureProtocolHandler(); ensureProtocolHandler();
[m_widget->webView().mainFrame loadRequest:[NSURLRequest requestWithURL:url.toNSURL()]]; [m_widget->webView().mainFrame loadRequest:[NSURLRequest requestWithURL:url.toNSURL()]];
} }
}
void MacWebKitHelpViewer::scrollToAnchor(const QString &anchor) void MacWebKitHelpViewer::scrollToAnchor(const QString &anchor)
{ {
@@ -596,33 +606,37 @@ void MacWebKitHelpViewer::scrollToAnchor(const QString &anchor)
void MacWebKitHelpViewer::setHtml(const QString &html) void MacWebKitHelpViewer::setHtml(const QString &html)
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
[m_widget->webView().mainFrame [m_widget->webView().mainFrame
loadHTMLString:html.toNSString() loadHTMLString:html.toNSString()
baseURL:[NSURL fileURLWithPath:Core::ICore::resourcePath().toNSString()]]; baseURL:[NSURL fileURLWithPath:Core::ICore::resourcePath().toNSString()]];
} }
}
QString MacWebKitHelpViewer::selectedText() const QString MacWebKitHelpViewer::selectedText() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
return QString::fromNSString(m_widget->webView().selectedDOMRange.text); return QString::fromNSString(m_widget->webView().selectedDOMRange.text);
} }
}
bool MacWebKitHelpViewer::isForwardAvailable() const bool MacWebKitHelpViewer::isForwardAvailable() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
return m_widget->webView().canGoForward; return m_widget->webView().canGoForward;
} }
}
bool MacWebKitHelpViewer::isBackwardAvailable() const bool MacWebKitHelpViewer::isBackwardAvailable() const
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
return m_widget->webView().canGoBack; return m_widget->webView().canGoBack;
} }
}
void MacWebKitHelpViewer::addBackHistoryItems(QMenu *backMenu) void MacWebKitHelpViewer::addBackHistoryItems(QMenu *backMenu)
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
WebBackForwardList *list = m_widget->webView().backForwardList; WebBackForwardList *list = m_widget->webView().backForwardList;
int backListCount = list.backListCount; int backListCount = list.backListCount;
for (int i = 0; i < backListCount; ++i) { for (int i = 0; i < backListCount; ++i) {
@@ -634,10 +648,11 @@ void MacWebKitHelpViewer::addBackHistoryItems(QMenu *backMenu)
backMenu->addAction(action); backMenu->addAction(action);
} }
} }
}
void MacWebKitHelpViewer::addForwardHistoryItems(QMenu *forwardMenu) void MacWebKitHelpViewer::addForwardHistoryItems(QMenu *forwardMenu)
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
WebBackForwardList *list = m_widget->webView().backForwardList; WebBackForwardList *list = m_widget->webView().backForwardList;
int forwardListCount = list.forwardListCount; int forwardListCount = list.forwardListCount;
for (int i = 0; i < forwardListCount; ++i) { for (int i = 0; i < forwardListCount; ++i) {
@@ -649,6 +664,7 @@ void MacWebKitHelpViewer::addForwardHistoryItems(QMenu *forwardMenu)
forwardMenu->addAction(action); forwardMenu->addAction(action);
} }
} }
}
void MacWebKitHelpViewer::setOpenInNewPageActionVisible(bool visible) void MacWebKitHelpViewer::setOpenInNewPageActionVisible(bool visible)
{ {
@@ -728,7 +744,7 @@ bool MacWebKitHelpViewer::findText(const QString &text, Core::FindFlags flags, b
{ {
Q_UNUSED(incremental); Q_UNUSED(incremental);
Q_UNUSED(fromSearch); Q_UNUSED(fromSearch);
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
if (wrapped) if (wrapped)
*wrapped = false; *wrapped = false;
bool forward = !(flags & Core::FindBackward); bool forward = !(flags & Core::FindBackward);
@@ -778,6 +794,7 @@ bool MacWebKitHelpViewer::findText(const QString &text, Core::FindFlags flags, b
[newSelection.startContainer.parentElement scrollIntoViewIfNeeded:YES]; [newSelection.startContainer.parentElement scrollIntoViewIfNeeded:YES];
return true; return true;
} }
}
return false; return false;
} }
@@ -793,19 +810,21 @@ void MacWebKitHelpViewer::stop()
void MacWebKitHelpViewer::forward() void MacWebKitHelpViewer::forward()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
[m_widget->webView() goForward]; [m_widget->webView() goForward];
emit forwardAvailable(isForwardAvailable()); emit forwardAvailable(isForwardAvailable());
emit backwardAvailable(isBackwardAvailable()); emit backwardAvailable(isBackwardAvailable());
} }
}
void MacWebKitHelpViewer::backward() void MacWebKitHelpViewer::backward()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
[m_widget->webView() goBack]; [m_widget->webView() goBack];
emit forwardAvailable(isForwardAvailable()); emit forwardAvailable(isForwardAvailable());
emit backwardAvailable(isBackwardAvailable()); emit backwardAvailable(isBackwardAvailable());
} }
}
void MacWebKitHelpViewer::print(QPrinter *printer) void MacWebKitHelpViewer::print(QPrinter *printer)
{ {
@@ -826,7 +845,7 @@ void MacWebKitHelpViewer::slotLoadFinished()
void MacWebKitHelpViewer::goToHistoryItem() void MacWebKitHelpViewer::goToHistoryItem()
{ {
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
QAction *action = qobject_cast<QAction *>(sender()); QAction *action = qobject_cast<QAction *>(sender());
QTC_ASSERT(action, return); QTC_ASSERT(action, return);
bool ok = false; bool ok = false;
@@ -839,6 +858,7 @@ void MacWebKitHelpViewer::goToHistoryItem()
emit forwardAvailable(isForwardAvailable()); emit forwardAvailable(isForwardAvailable());
emit backwardAvailable(isBackwardAvailable()); emit backwardAvailable(isBackwardAvailable());
} }
}
// #pragma mark -- MacResponderHack // #pragma mark -- MacResponderHack
@@ -858,7 +878,7 @@ void MacResponderHack::responderHack(QWidget *old, QWidget *now)
Q_UNUSED(old) Q_UNUSED(old)
if (!now) if (!now)
return; return;
AutoreleasePool pool; Q_UNUSED(pool) @autoreleasepool {
NSView *view; NSView *view;
if (QMacCocoaViewContainer *viewContainer = qobject_cast<QMacCocoaViewContainer *>(now)) if (QMacCocoaViewContainer *viewContainer = qobject_cast<QMacCocoaViewContainer *>(now))
view = viewContainer->cocoaView(); view = viewContainer->cocoaView();
@@ -866,6 +886,7 @@ void MacResponderHack::responderHack(QWidget *old, QWidget *now)
view = (NSView *)now->effectiveWinId(); view = (NSView *)now->effectiveWinId();
[view.window makeFirstResponder:view]; [view.window makeFirstResponder:view];
} }
}
} // Internal } // Internal
} // Help } // Help