Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memory collection expires #4

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor/
/build/
.phpunit*
.phpunit*
.idea/
46 changes: 46 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
FROM php:7.3-apache

RUN buildDeps=" \
libbz2-dev \
libmemcached-dev \
default-libmysqlclient-dev \
libsasl2-dev \
" \
runtimeDeps=" \
libzip-dev \
zip \
curl \
git \
libfreetype6-dev \
libicu-dev \
libjpeg-dev \
libmcrypt-dev \
libmemcachedutil2 \
libpng-dev \
libpq-dev \
libxml2-dev \
libc-client-dev \
libkrb5-dev \
libcurl3-gnutls \
apt-transport-https \
ca-certificates \
" \
&& apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y $buildDeps $runtimeDeps \
&& docker-php-ext-configure zip --with-libzip \
&& docker-php-ext-install zip \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install gd \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& docker-php-ext-install bcmath json ftp bz2 calendar iconv intl mbstring mysqli opcache pdo_mysql pdo_pgsql pgsql soap fileinfo sockets \
&& apt-get purge -y --auto-remove $buildDeps \
&& a2enmod rewrite \
&& apt-get install -y --no-install-recommends libfontconfig1-dev

#correcao data e hora SP / Brasil
RUN echo "America/Sao_Paulo" > /etc/timezone
RUN dpkg-reconfigure -f noninteractive tzdata

ENV COMPOSER_HOME /root/composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
ENV PATH $COMPOSER_HOME/vendor/bin:$PATH
8 changes: 4 additions & 4 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Para executar os testes, utilize o comando, na raiz do projeto:
$ composer test
```

[icon-travisci]: https://img.shields.io/travis/liveecommerce/php-test.svg?style=flat-square
[icon-codecov]: https://img.shields.io/codecov/c/github/liveecommerce/php-test.svg?style=flat-square
[icon-travisci]: https://img.shields.io/travis/diegosilva19/php-test.svg?style=flat-square
[icon-codecov]: https://img.shields.io/codecov/c/github/diegosilva19/php-test.svg?style=flat-square

[link-travisci]: https://travis-ci.org/liveecommerce/php-test
[link-codecov]: https://codecov.io/gh/liveecommerce/php-test
[link-travisci]: https://travis-ci.org/diegosilva19/php-test.svg?branch=master
[link-codecov]: https://codecov.io/gh/diegosilva19/php-test
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: '2'
services:
phpTrade:
image: diegosilva19/phptest
container_name: phptest
ports:
- "80:80"
volumes:
- ".:/var/www/html"
1 change: 1 addition & 0 deletions files/test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NewStringTest
Empty file added files/test2.txt
Empty file.
Empty file added files/test3.txt
Empty file.
12 changes: 2 additions & 10 deletions src/CollectionInterface.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ public function get(string $index, $defaultValue = null);
*
* @param string $index
* @param mixed $value
* @param int $secondsToExpire
* @return void
*/
public function set(string $index, $value);
public function set(string $index, $value, int $secondsToExpire = 5);

/**
* Checks whether the collection has the given index
Expand All @@ -41,13 +42,4 @@ public function has(string $index);
* @return integer
*/
public function count(): int;

/**
* Cleans the collection
*
* Estou aqui para testar sua atenção. Remova-me.
*
* @return void
*/
public function clean();
}
125 changes: 125 additions & 0 deletions src/FileCollection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
<?php

namespace Live\Collection;

use Exception;

/**
* File collection
*
* @package Live\Collection
*/
class FileCollection implements CollectionInterface
{
/**
* Collection files
*
* @var array
*/
protected $files;

/**
* Constructor
*/
public function __construct(string $completePath, string $index, int $secondsToExpire = 5)
{
if (file_exists($completePath) !== false && is_writable($completePath) && is_readable($completePath)) {
$this->files[$index] = ['value'=> $completePath, 'expires'=> time() + $secondsToExpire];
} else {
throw new Exception('File Not Exists : ');
}
}

/**
* Open file when specifies the index of collection
* @param string $index
* @param string $mode the same mode using fopen
* @return resource If $index is not found,
* open will throw Exception.
* @throws Exception if not found index
*/
public function open(string $index, string $mode = 'r')
{
if ($this->has($index)) {
$fileResource = $this->get($index);
return is_string($fileResource) ? fopen($fileResource, $mode) : $fileResource;
}
throw new Exception('FileAccessException : do not have permission to open this file, check permissions');
}

/**
* Read a file in collection
* @param string $index
* @param string $mode the same mode using fopen
* @return string contains all contents of file
* @throws Exception if not found index or file is not readable
*/
public function read($index) : string
{
$fileResource = $this->open($index, 'r');
$allFileContent= '';
while (($line = fgets($fileResource)) !== false) {
$allFileContent.= $line;
}
return $allFileContent;
}

/**
* Read a file in collection
* @param string $index
* @param string $mode the same mode using fopen
* @return string contains all contents of file
* @throws Exception if not found index or file is not readable
*/
public function write($index, $stringToWrite) : bool
{
$fileResource = $this->open($index, 'w');
fwrite($fileResource, $stringToWrite);
fclose($fileResource);
return true;
}

/**
* {@inheritDoc}
*/
public function get(string $index, $defaultValue = null)
{
if (!$this->has($index)) {
return $defaultValue;
}

return $this->files[$index]['value'];
}

/**
* {@inheritDoc}
*/
public function set(string $completePath, $index, $secondsToExpire = 5)
{
$this->files[$index] = ['value'=> $completePath, 'expires'=> $secondsToExpire ];
}

/**
* {@inheritDoc}
*/
public function has(string $index)
{
return array_key_exists($index, $this->files) && time() <= $this->files[$index]['expires'];
}

/**
* {@inheritDoc}
*/
public function count(): int
{
return count($this->files);
}

/**
* {@inheritDoc}
*/
public function clean()
{
$this->files = [];
}
}
11 changes: 6 additions & 5 deletions src/MemoryCollection.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,32 @@ public function get(string $index, $defaultValue = null)
return $defaultValue;
}

return $this->data[$index];
return $this->data[$index]['value'];
}

/**
* {@inheritDoc}
*/
public function set(string $index, $value)
public function set(string $index, $value, $secondsToExpire = 5)
{
$this->data[$index] = $value;

$this->data[$index] = ['value'=> $value, 'expires'=> time() + $secondsToExpire ];
}

/**
* {@inheritDoc}
*/
public function has(string $index)
{
return array_key_exists($index, $this->data);
return array_key_exists($index, $this->data) && time() <= $this->data[$index]['expires'];
}

/**
* {@inheritDoc}
*/
public function count(): int
{
return count($this->data) + 1;
return count($this->data);
}

/**
Expand Down
Loading