summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-06-27 20:34:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-06-28 11:08:49 +0200
commit0f11f30ea96fcec8d7c648089fc223a6fbed6aef (patch)
tree2e4d4023005b7c8ac5753bc5a4a35b37021c4a15 /salhelper
parent8122fdb0d391f07be4a35ca87ed641745a9e4dc9 (diff)
Remove unused header files
Those are unused too. Change-Id: I09c9dbcdbc68131c7c54bf0762a23f1280e6e22a
Diffstat (limited to 'salhelper')
-rw-r--r--salhelper/Package_inc.mk1
-rw-r--r--salhelper/inc/salhelper/monitor.hxx282
2 files changed, 0 insertions, 283 deletions
diff --git a/salhelper/Package_inc.mk b/salhelper/Package_inc.mk
index 37c3da5fc3a4..4950c69d7311 100644
--- a/salhelper/Package_inc.mk
+++ b/salhelper/Package_inc.mk
@@ -33,7 +33,6 @@ $(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/dynload.hxx,dynloa
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/future.hxx,future.hxx))
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/futurequeue.hxx,futurequeue.hxx))
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/linkhelper.hxx,linkhelper.hxx))
-$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/monitor.hxx,monitor.hxx))
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/queue.hxx,queue.hxx))
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/refobj.hxx,refobj.hxx))
$(eval $(call gb_Package_add_file,salhelper_inc,inc/salhelper/simplereferenceobject.hxx,simplereferenceobject.hxx))
diff --git a/salhelper/inc/salhelper/monitor.hxx b/salhelper/inc/salhelper/monitor.hxx
deleted file mode 100644
index 5f0c7e134c16..000000000000
--- a/salhelper/inc/salhelper/monitor.hxx
+++ /dev/null
@@ -1,282 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * 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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef _SALHELPER_MONITOR_HXX_
-#define _SALHELPER_MONITOR_HXX_
-
-#include <sal/types.h>
-#include <osl/conditn.hxx>
-#include <osl/diagnose.h>
-#include <osl/interlck.h>
-#include <rtl/ref.hxx>
-#include <salhelper/refobj.hxx>
-#include <salhelper/future.hxx>
-#include <salhelper/futurequeue.hxx>
-
-namespace salhelper
-{
-
-//----------------------------------------------------------------------------
-
-#ifndef SALHELPER_COPYCTOR_API
-#define SALHELPER_COPYCTOR_API(C) C (const C&); C& operator= (const C&)
-#endif
-
-//----------------------------------------------------------------------------
-
-class MonitorCondition : protected osl::Condition
-{
- /** Representation.
- */
- oslInterlockedCount m_nReferenceCount;
-
- /** Not implemented.
- */
- SALHELPER_COPYCTOR_API(MonitorCondition);
-
-public:
- /** Construction.
- */
- inline MonitorCondition() SAL_THROW(()) : m_nReferenceCount (0)
- {
- Condition::set();
- }
-
- /** Destruction.
- */
- inline ~MonitorCondition() SAL_THROW(())
- {
- OSL_ASSERT(m_nReferenceCount == 0);
- }
-
- /** Acquire or enter the monitor.
- */
- inline void acquire() SAL_THROW(())
- {
- if (osl_incrementInterlockedCount (&m_nReferenceCount) == 1)
- {
- Condition::reset();
- }
- }
-
- /** Release or leave the monitor.
- */
- inline void release() SAL_THROW(())
- {
- if (osl_decrementInterlockedCount (&m_nReferenceCount) == 0)
- {
- Condition::set();
- }
- }
-
- /** Wait until all references are released.
- */
- inline void wait() SAL_THROW(())
- {
- Condition::wait();
- }
-};
-
-//----------------------------------------------------------------------------
-
-class QueuedReaderWriterMonitor : public salhelper::ReferenceObject
-{
- /** Representation.
- */
- typedef salhelper::Future<sal_Int32> future_type;
-
- salhelper::FutureQueue<sal_Int32> m_aQueue;
- salhelper::MonitorCondition m_aMonitor;
-
- /** Not implemented.
- */
- SALHELPER_COPYCTOR_API(QueuedReaderWriterMonitor);
-
-public:
- /** Construction.
- */
- inline QueuedReaderWriterMonitor()
- {
- // Insert the token.
- m_aQueue.put(0);
- }
-
- /** Acquire read access.
- */
- inline void acquireReader()
- {
- // Obtain the token.
- rtl::Reference<future_type> xFuture (m_aQueue.get());
- xFuture->get();
-
- // Enter the monitor.
- m_aMonitor.acquire();
-
- // Push back the token.
- m_aQueue.put(0);
- }
-
- /** Release read access.
- */
- inline void releaseReader()
- {
- // Leave the monitor.
- m_aMonitor.release();
- }
-
- /** Acquire write access.
- */
- inline void acquireWriter()
- {
- // Obtain the token.
- rtl::Reference<future_type> xFuture (m_aQueue.get());
- xFuture->get();
-
- // Wait until all readers have left.
- m_aMonitor.wait();
- }
-
- /** Release write access.
- */
- inline void releaseWriter()
- {
- // Push back the token.
- m_aQueue.put(0);
- }
-
-protected:
- /** Destruction.
- */
- virtual ~QueuedReaderWriterMonitor()
- {}
-};
-
-//----------------------------------------------------------------------------
-
-template<class monitor_type>
-class ReaderGuard
-{
- /** Representation.
- */
- monitor_type *m_pMonitor;
-
- /** Not implemented.
- */
- SALHELPER_COPYCTOR_API(ReaderGuard<monitor_type>);
-
-public:
- /** Construction. Acquire monitor read access.
- */
- inline ReaderGuard (monitor_type & rMonitor) : m_pMonitor (&rMonitor)
- {
- m_pMonitor->acquireReader();
- }
-
- /** Construction. Acquire monitor read access.
- */
- inline ReaderGuard (monitor_type * pMonitor) : m_pMonitor (pMonitor)
- {
- OSL_PRECOND(m_pMonitor, "ReaderGuard::ReaderGuard(): No Monitor");
- m_pMonitor->acquireReader();
- }
-
- /** Destruction. Release monitor read access.
- */
- inline ~ReaderGuard()
- {
- if (m_pMonitor)
- m_pMonitor->releaseReader();
- }
-
- /** Release monitor read access.
- */
- inline void clear()
- {
- if (m_pMonitor)
- {
- m_pMonitor->releaseReader();
- m_pMonitor = 0;
- }
- }
-};
-
-//----------------------------------------------------------------------------
-
-typedef ReaderGuard<QueuedReaderWriterMonitor> QueuedReaderGuard;
-
-//----------------------------------------------------------------------------
-
-template<class monitor_type>
-class WriterGuard
-{
- /** Representation.
- */
- monitor_type *m_pMonitor;
-
- /** Not implemented.
- */
- SALHELPER_COPYCTOR_API(WriterGuard<monitor_type>);
-
-public:
- /** Construction. Acquire monitor write access.
- */
- inline WriterGuard (monitor_type & rMonitor) : m_pMonitor (&rMonitor)
- {
- m_pMonitor->acquireWriter();
- }
-
- /** Construction. Acquire monitor write access.
- */
- inline WriterGuard (monitor_type * pMonitor) : m_pMonitor (pMonitor)
- {
- OSL_PRECOND(m_pMonitor, "WriterGuard::WriterGuard(): No Monitor");
- m_pMonitor->acquireWriter();
- }
-
- /** Destruction. Release monitor write access.
- */
- inline ~WriterGuard()
- {
- if (m_pMonitor)
- m_pMonitor->releaseWriter();
- }
-
- /** Release monitor write access.
- */
- inline void clear()
- {
- if (m_pMonitor)
- {
- m_pMonitor->releaseWriter();
- m_pMonitor = 0;
- }
- }
-};
-
-//----------------------------------------------------------------------------
-
-typedef WriterGuard<QueuedReaderWriterMonitor> QueuedWriterGuard;
-
-//----------------------------------------------------------------------------
-
-} // namespace salhelper
-
-#endif /* !_SALHELPER_MONITOR_HXX_ */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */