定制 akeneo/measure-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

akeneo/measure-bundle

Composer 安装命令:

composer require akeneo/measure-bundle

包简介

Akeneo Measure Bundle

README 文档

README

Akeneo Measure Bundle : manage measure units in families and conversions from a unit to another

Allows to :

  • Convert a value from a unit to another
  • Add more unit to a family (group of measure units)
  • Create new families

Scrutinizer Quality Score Code Coverage Build Status

Akeneo PIM

Originally written to be used in Akeneo PIM.

This extraction aims to make it usable outside of the Akeneo PIM project.

Please consider that this process is still in a very experimental stage.

We don't have all the tests and automation which could ensure that this component will work smoothly outside of the Akeneo PIM full stack.

Documentation

Documentation is available on docs.akeneo.com

General operation

This bundle to convert a value from a unit to another. Some families and units are already defined but it's possible to add others families and units to convert anything.

Converter converts a value from a unit to a standard unit (sort of reference unit) then from standard unit to asked unit. This allows to define just one list of operations to convert each unit.

Operations are defined to convert from the unit to the standard unit. Converter convert to standard unit with default operations order but reverse order and do the opposite operation (addition <=> substraction and multiplication <=> division). We used strings to define operations. 'add', 'sub', mul', 'div' are allowed.

You can add more operations extending bundle.

Classes and files

In MeasureBundle :

  • Convert/ contains the converter service.
  • DependencyInjection/
  • Configuration : define how to check configuration measure files
  • AkeneoMeasureExtension : define the recovery of the configuration (config files browse and merge configuration).
  • Exception/ contains the exception classes used in converter.
  • Family/ contains a list of family measure interfaces. Each define a family and must contains a constant named FAMILY.
  • Resources/config/
  • measure.yml : define measure configuration with a list of families. Each family define a standard unit measure and a list of unit measures. Each measure of this list is defined by a constant then by a conversion rule (list of ordered operations from unit to standard) and a symbol to display.
  • services.yml : define measure converter service
parameters:
    akeneo_measure.measures_config: ~

services:
    akeneo_measure.measure_converter:
        class: Akeneo\Bundle\MeasureBundle\Convert\MeasureConverter
        arguments: [%akeneo_measure.measures_config%]

Configuration file can be seen https://github.com/akeneo/MeasureBundle/blob/master/Resources/config/measure.yml

Install and run unit tests

To run tests :

$ php composer.phar update --dev

$ phpunit --coverage-html=cov/

Convert a value

A service is defined to use converter. You must call it and define the family to use before convert a value. In the example below, we convert a value in kilometers to miles.

$converter = $this->container->get('akeneo_measure.measure_converter');
$converter->setFamily(LengthFamilyInterface::FAMILY);
$result = $converter->convert(LengthFamilyInterface::KILOMETER, LengthFamilyInterface::MILE, 1);

Get the whole list of families and units

$this->container->getParameter('akeneo_measure.measures_config');

Add unit to an existing family

To define a new unit in an existing family, it's just necessary to define it and their units in a new config file named measure.yml in your own bundle. For example, in our demo bundle, we add the below code :

measures_config:
    Length:
        standard: METER
        units:
            DONG:
                convert: [{'mul': 7},{'div': 300}]
                symbol: dong

Here, we just had "Dong" unit with his conversion rules from it to standard unit. To have equivalent to 1 dong in meters, you must multiply by 7 and divide by 300. A symbol is required too to define unit format to display. Optionally but recommended, a new class extending family class can be created. It allows to use converter with constants instead of strings. Contants represent config values. Here we created "MyLengthMeasure" new class extending LengthMeasure to add "Dong" unit constant.

use Akeneo\Bundle\MeasureBundle\Family\LengthFamilyInterface;

/**
 * Override LengthFamily interface to add Dong measure constant
 */
class MyLengthFamilyInterface extends LengthFamilyInterface
{

    /**
     * @staticvar string
     */
    const DONG = 'DONG';

}

Then, you can call a conversion to your new unit like this :

$converter = $this->container->get('akeneo_measure.measure_converter');
$converter->setFamily(LengthFamilyInterface::FAMILY);
$result = $converter->convert(LengthFamilyInterface::KILOMETER, MyLengthFamilyInterface::DONG, 1);

Create a new family

To create a new family, it's like to add a unit to an existing family. It's necessary to add configuration in measure.yml file of your bundle and optionally a class defining constants to be used instead of strings.

measures_config:
    Capacitance:
        standard: FARAD
        units:
            FARAD:
                convert: [{'mul': 1}]
                symbol: F
            KILOFARAD:
                convert: [{'mul': 1000}]
                symbol: kF
            MEGAFARAD:
                convert: [{'mul': 1000000}]
                symbol: MF
/**
 * Capacitance measures constants
 */
class CapacitanceFamilyInterface
{

    /**
     * Family measure name
     * @staticvar string
     */
    const FAMILY = 'Capacitance';

    /**
     * @staticvar string
     */
    const FARAD     = 'FARAD';

    /**
     * @staticvar string
     */
    const KILOFARAD = 'KILOFARAD';

    /**
     * @staticvar string
     */
    const MEGAFARAD = 'MEGAFARAD';

}

Exceptions thrown

Exceptions are thrown if we encountered problems during conversion.

  • UnknownFamilyMeasureException if you try to use an unexistent or undefined family.
  • UnknownMeasureException if you try to convert an unexistent or undefined unit for the family used.
  • UnknownOperatorException if you try to use an unexistent operation (authorized add, sub, mul and div)

Divisions by zero don't throw exceptions but are ignored.

Extend converter

This bundle is extensible and we can imaginate config recovering from database or services or use converter for currencies for example.

Issues & Contributing

This bundle is developed in our main repository.

If you encounter any bug, please check if it's already known before to create a new issue.

If you want to contribute (and we will be pleased if you do!), you'll find more information on this page.

About versioning, the version 0.6.x is developed in akeneo/pim-community-dev 1.6.x.

For older versions,

  • akeneo/pim-community-dev 1.1.x uses akeneo/measure-bundle 0.1.x
  • akeneo/pim-community-dev 1.2.x uses akeneo/measure-bundle 0.2.x
  • akeneo/pim-community-dev 1.3.x uses akeneo/measure-bundle 0.3.x
  • akeneo/pim-community-dev 1.4.x uses akeneo/measure-bundle 0.4.x
  • akeneo/pim-community-dev 1.5.x uses akeneo/measure-bundle 0.5.x
  • akeneo/pim-community-dev 1.6.x re-integrates this bundle in our main repository

OSL Licence

Licence can be found Here.

akeneo/measure-bundle 适用场景与选型建议

akeneo/measure-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 461.47k 次下载、GitHub Stars 达 27, 最近一次更新时间为 2014 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「convert」 「measure」 「akeneo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 akeneo/measure-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 akeneo/measure-bundle 我们能提供哪些服务?
定制开发 / 二次开发

基于 akeneo/measure-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 461.47k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 29
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 27
  • Watchers: 50
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-02-07