blob: c6fed86def9a5df34c9238762df37d1517d8d29c [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Licensed 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Author: jmaessen@google.com (Jan Maessen)
#ifndef PAGESPEED_KERNEL_THREAD_SCHEDULER_BASED_ABSTRACT_LOCK_H_
#define PAGESPEED_KERNEL_THREAD_SCHEDULER_BASED_ABSTRACT_LOCK_H_
#include "pagespeed/kernel/base/basictypes.h"
#include "pagespeed/kernel/base/named_lock_manager.h"
namespace net_instaweb {
class Function;
class Scheduler;
// A SchedulerBasedAbstractLock implements a Lock by blocking using the
// scheduler, using exponential sleep time backoff and polling the lock on
// wakeup. The total time blocked on a long-held lock will be about 1.5 times
// the time between the initial call to the lock routine attempt and the time
// the lock is unlocked (ie we might wait for an extra amount of time equal to
// half the time we were forced to wait).
//
// Note that the NamedLock API is strictly non-blocking, but this class
// adds blocking APIs which should only be used by blocking implementations
// and their tests.
class SchedulerBasedAbstractLock : public NamedLock {
public:
virtual ~SchedulerBasedAbstractLock();
virtual bool LockTimedWait(int64 wait_ms);
virtual void LockTimedWait(int64 wait_ms, Function* callback);
virtual bool LockTimedWaitStealOld(int64 wait_ms, int64 steal_ms);
virtual void LockTimedWaitStealOld(
int64 wait_ms, int64 steal_ms, Function* callback);
protected:
friend class SharedMemLockManagerTestBase;
friend class FileSystemLockManagerTest;
// If lock is held, return false, otherwise lock and return true.
// Non-blocking. Note that implementations of this and other similar 'try'
// routines are permitted to return false conservatively. TryLock must
// *eventually* succeed if called repeatedly on an unheld lock, however.
virtual bool TryLock() = 0;
// TryLockStealOld immediately attempts to lock the lock, succeeding and
// returning true if the lock is unlocked or the lock can be stolen from the
// current holder. Otherwise return false. cf TryLock() for other caveats.
// Non-blocking.
virtual bool TryLockStealOld(int64 steal_ms) = 0;
virtual Scheduler* scheduler() const = 0;
private:
typedef bool (SchedulerBasedAbstractLock::*TryLockMethod)(int64 steal_ms);
bool TryLockIgnoreSteal(int64 steal_ignored);
bool BusySpin(TryLockMethod try_lock, int64 steal_ms);
void PollAndCallback(TryLockMethod try_lock, int64 steal_ms,
int64 wait_ms, Function* callback);
};
} // namespace net_instaweb
#endif // PAGESPEED_KERNEL_THREAD_SCHEDULER_BASED_ABSTRACT_LOCK_H_