chemstrucml/csml-parser 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

chemstrucml/csml-parser

Composer 安装命令:

composer require chemstrucml/csml-parser

包简介

PHP parser and SVG renderer for Chemical Structure Markup Language (CSML)

README 文档

README

A PHP 8.4+ package that parses Chemical Structure Markup Language (CSML) documents and renders them as SVG images.

CSML is an XML-based markup language for describing molecular structures with full topological, geometric, and repeating-unit information. This package provides the reference PHP implementation for parsing and visualizing CSML documents.

Installation

composer require chemstrucml/csml-parser

Requirements

  • PHP 8.4 or higher
  • ext-simplexml
  • ext-dom
  • ext-libxml

Quick Start

use ChemStrucML\Csml\CsmlRenderer;

$renderer = new CsmlRenderer();

// Render from a file
$svg = $renderer->renderFile('benzene.csml');

// Render from a string
$svg = $renderer->renderString('<csml version="0.1">
  <molecule id="water" name="Water">
    <atom id="O1" element="O" />
    <atom id="H1" element="H" />
    <atom id="H2" element="H" />
    <bond from="O1" to="H1" order="single" />
    <bond from="O1" to="H2" order="single" />
  </molecule>
</csml>');

// Save to file
file_put_contents('molecule.svg', $svg);

Usage

Parse and Render Separately

use ChemStrucML\Csml\CsmlRenderer;

$renderer = new CsmlRenderer();

// Parse to inspect the document model
$document = $renderer->parse($csmlString);

echo $document->version;                    // "0.1"
echo $document->molecules[0]->name;         // "Benzene"
echo count($document->molecules[0]->atoms); // 6

// Render to SVG
$svg = $renderer->render($document);

Custom Rendering Configuration

use ChemStrucML\Csml\CsmlRenderer;
use ChemStrucML\Csml\Config\RenderConfig;

$config = new RenderConfig(
    bondLength: 80.0,           // Bond length in SVG pixels (default: 60.0)
    bondWidth: 2.0,             // Stroke width (default: 1.5)
    fontSize: 16.0,             // Atom label font size (default: 14.0)
    fontFamily: 'monospace',    // Font family (default: 'Arial, Helvetica, sans-serif')
    padding: 30.0,              // SVG padding (default: 20.0)
    showAllCarbons: false,      // Show carbon labels in skeletal mode (default: false)
    showImplicitHydrogens: true, // Show implicit H labels (default: true)
    useColoredAtoms: true,      // CPK coloring for atoms (default: true)
    backgroundColor: 'white',   // SVG background (default: 'transparent')
);

$renderer = new CsmlRenderer(config: $config);
$svg = $renderer->renderFile('molecule.csml');

Using the Parser Directly

use ChemStrucML\Csml\Parser\XmlParser;

$parser = new XmlParser();
$document = $parser->parseFile('molecule.csml');

foreach ($document->molecules as $molecule) {
    echo "Molecule: {$molecule->name}\n";
    echo "  Atoms: " . count($molecule->atoms) . "\n";
    echo "  Bonds: " . count($molecule->bonds) . "\n";
    echo "  Rings: " . count($molecule->rings) . "\n";
}

Supported CSML Features

Feature Elements Status
Atoms <atom>, <atom-list> Supported
Bonds <bond>, <bond-chain> Supported
Ring systems <ring>, <fused-ring> Supported
Groups & fragments <group>, <group-ref>, <anchor>, <attach> Supported
Repeat units <repeat>, <connector>, <cap> Supported
Branching <branch> Supported
Copolymers <copolymer> Supported
Coordinates <coordinates>, <point> Supported
Metadata <meta> Supported
Implicit hydrogens implicit-h="auto" Supported
Stereochemistry chirality, stereo attributes Parsed
Geometry constraints <angle>, <torsion>, <length> Parsed

Bond Rendering Styles

  • Single, double, triple bonds with proper parallel line offset
  • Aromatic rings with inscribed circle
  • Wedge bonds (filled triangle for stereo-up)
  • Hatch bonds (dashed lines for stereo-down)
  • Dashed bonds (hydrogen bonds, partial bonds)

Atom Rendering

The renderer follows skeletal formula conventions by default:

  • Carbon atoms are not labeled (unless they carry a charge, isotope, or explicit label)
  • Non-carbon atoms display their element symbol with CPK coloring (O = red, N = blue, S = yellow, etc.)
  • Implicit hydrogens are shown as subscripts (e.g. NH, OH, NH₂)
  • Charges are rendered as superscripts (e.g. O⁻, NH₃⁺)

CSML Examples

Benzene

<csml version="0.1">
  <molecule id="benzene" name="Benzene">
    <atom-list element="C" prefix="C" from="1" to="6" />
    <ring id="benz" size="6" aromatic="true">
      <member atom="C1" /><member atom="C2" /><member atom="C3" />
      <member atom="C4" /><member atom="C5" /><member atom="C6" />
    </ring>
  </molecule>
</csml>

1-Hexanol

<csml version="0.1">
  <molecule id="1-hexanol" name="1-Hexanol">
    <atom-list element="C" prefix="C" from="1" to="6" />
    <atom id="O1" element="O" />
    <bond-chain atoms="C1 C2 C3 C4 C5 C6" order="single" />
    <bond from="C6" to="O1" order="single" />
  </molecule>
</csml>

Naphthalene (Fused Rings)

<csml version="0.1">
  <molecule id="naphthalene" name="Naphthalene">
    <atom-list element="C" prefix="C" from="1" to="10" />
    <ring id="ring_a" size="6" aromatic="true">
      <member atom="C1" /><member atom="C2" /><member atom="C3" />
      <member atom="C4" /><member atom="C5" /><member atom="C6" />
    </ring>
    <ring id="ring_b" size="6" aromatic="true">
      <member atom="C5" /><member atom="C6" /><member atom="C7" />
      <member atom="C8" /><member atom="C9" /><member atom="C10" />
    </ring>
    <fused-ring rings="ring_a ring_b" shared-atoms="C5 C6" />
  </molecule>
</csml>

Why CSML?

Feature CSML SMILES MOL/SDF CML InChI
Human-readable Yes Yes No Yes No
Polymer repeat units Yes No Partial No No
Copolymer patterns Yes No No No No
Reusable fragments Yes No No Partial No
Extensible (namespaces) Yes No No Yes No
End-group specification Yes No No No No

CSML separates topology (what is connected to what) from geometry (angles, lengths) and from presentation (how to draw it), making it uniquely suited for polymer science, materials engineering, and structural chemistry applications where existing formats fall short.

License

MIT

chemstrucml/csml-parser 适用场景与选型建议

chemstrucml/csml-parser 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 11 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 chemstrucml/csml-parser 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-11