Giter VIP home page Giter VIP logo

php_component_lock's Introduction

Process Lock Component

The build status of the current master branch is tracked by Travis CI: Build Status

Latest stable

The scrutinizer status is: code quality

The versioneye status is: Dependency Status

Minimum PHP version is: Minimum PHP Version

Take a look on openhub.net.

General

This component provides the LockInterface as well as an LockAwareInterface. It comes with two implementations of the LockInterface.

You can use this interface to lock classes or processes to prevent changes in an object (so you freeze/lock the class for property setting) or lock an existing process (like a cronjob) to prevent double execution.

This component was created by splitting up the PHP_Bazzline_Utility repository.

Implementations

Two implementations exists. The FileNameLock and the RuntimeLock.

RuntimeLock

The RuntimeLock can be used to lock an instance from modification. If you implement an check in each setter method, you can easily create a instance (by a factory for example) and lock it afterwards to prevent modifications.

FileNameLock

The FileNameLock can be used to lock an class from instantiated multiple times. This is useful if you implement this in cronjobs or business processes that should run alone.

FileHandlerLock

The FileHandlerLock can be used to lock file with php`s flock functionality.

Future Improvements

  • implement "wait" like implemented here.
  • take a look to the semaphore project to see if thing can be merged
  • take a look if all projects can work together
  • take a look to havvg/lock

History

  • upcomming
    • @todo
  • 2.3.0 - released 2017-01-26
    • updated minimum requirements to php 5.6
  • 2.2.1 - released 2016-06-29
    • added integrationtest for php 7.0
    • added links to:
      • latest stable build
      • scrutinizer code quality
      • versioneye dependency status
    • migrated to psr-4 autoloading
    • removed integrationtest for php 5.3.3
  • 2.2.0 - released 2016-06-28
    • added phpunit 5.4 as dependency (if php version is fitting)
    • added process id into the lock file as requested as feature
    • updated dependencies
  • 2.1.0 - released 2015-09-10
    • implemented support for SplFileObject in FileHandlerLock
  • 2.0.1 - released 2015-09-09
    • stabalized dependencies
  • 2.0.0 - released 2015-09-08
    • added FileHandlerLock
    • renamed FileLock to FileNameLock
    • renamed "getName" to "getResource" and "setName" to "setResource" in "LockInterface"
  • 1.0.3
    • added LockDependentInterface
  • 1.0.2
    • added constructor with optional parameter $name for FileNameLock and RuntimeLock
  • 1.0.1
    • switched to LGPLv3
  • 1.0.0
    • added implementation for FileLock and RuntimeLock
    • covered implementations with unittest
    • finished LockInterface and LockAwareInterface

Final Words

Star it if you like it :-). Add issues if you need it. Pull patches if you enjoy it. Write a blog entry if you use it. Donate something if you love it :-].

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.