Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • Lock

Classes

  • Net\Bazzline\Component\Lock\FileHandlerLock
  • Net\Bazzline\Component\Lock\FileNameLock
  • Net\Bazzline\Component\Lock\RuntimeLock

Interfaces

  • Net\Bazzline\Component\Lock\LockAwareInterface
  • Net\Bazzline\Component\Lock\LockDependentInterface
  • Net\Bazzline\Component\Lock\LockInterface
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2013-07-01
 */

namespace Net\Bazzline\Component\Lock;

use InvalidArgumentException;
use RuntimeException;

/**
 * Class RuntimeLock
 *
 * @package Net\Bazzline\Component\Lock
 */
class RuntimeLock implements LockInterface
{
    /** @var string */
    private $name;

    /** @var boolean */
    private $isLocked;

    /**
     * @param string $name
     * @throws InvalidArgumentException
     */
    public function __construct($name = '')
    {
        if (strlen($name) > 0) {
            $this->setResource($name);
        }
    }

    /**
     * @return bool
     */
    public function isLocked()
    {
        return ((!is_null($this->isLocked)) && ($this->isLocked == true));
    }



    /**
     * @throws \RuntimeException
     */
    public function acquire()
    {
        if ($this->isLocked()) {
            throw new RuntimeException(
                'Can not acquire lock, lock already exists.'
            );
        }

        $this->isLocked = true;
    }



    /**
     * @throws \RuntimeException
     */
    public function release()
    {
        if (!$this->isLocked()) {
            throw new RuntimeException(
                'Can not release lock, no lock exists.'
            );
        }

        $this->isLocked = false;
    }

    /**
     * @return mixed|string
     */
    public function getResource()
    {
        return (is_null($this->name)) ? str_replace('\\', '_', get_class($this)) : $this->name;
    }

    /**
     * @param mixed|string $resource
     * @throws InvalidArgumentException
     */
    public function setResource($resource)
    {
        $this->name = (string) $resource;
    }
}
PHP Process Lock Component by bazzline.net API documentation generated by ApiGen