notify_ready

Crates.ionotify_ready
lib.rsnotify_ready
version0.1.3
created_at2025-12-12 09:43:19.623261+00
updated_at2025-12-12 09:47:05.216709+00
descriptionsystemd ready notification library | systemd 就绪通知库
homepagehttps://github.com/js0/rust/tree/main/notify_ready
repositoryhttps://github.com/js0/rust.git
max_upload_size
id1981262
size41,313
i18n.site (i18nsite)

documentation

README

English | 中文


notify_ready : Simple systemd ready notification

Table of Contents

Project Overview

notify_ready is a Rust library for sending ready notifications to systemd. It wraps the sd-notify protocol, enabling services to notify systemd that they have completed initialization and are ready to accept requests.

Features

  • Cross-platform support: Uses sd-notify on Linux, graceful degradation on other platforms
  • Zero configuration: Ready to use without additional setup
  • Lightweight: Minimal dependencies, focused on core functionality
  • Simple API: Single function interface, easy to integrate

Quick Start

Add the following dependency to your Cargo.toml:

[dependencies]
notify_ready = "0.1.1"

API Documentation

send() -> bool

Sends a ready notification to systemd.

Return Value:

  • true - Notification sent successfully or non-Linux platform
  • false - Notification send failed (Linux platform only)

Platform Behavior:

  • Linux: Uses sd-notify to send NotifyState::Ready
  • Other platforms: Returns true directly, performs no operation

Usage Examples

use notify_ready;

fn main() {
    // Execute service initialization logic
    println!("Service initializing...");
    
    // Send ready notification
    if notify_ready::send() {
        println!("Ready notification sent successfully");
    } else {
        println!("Failed to send ready notification");
    }
    
    // Service main loop
    println!("Service is running");
}

Design Philosophy

notify_ready follows the principle of simplicity, providing standard integration with systemd for Rust services.

graph TD
    A[Service Start] --> B[Initialize Resources]
    B --> C[Call notify_ready::send]
    C --> D{Running Platform}
    D -->|Linux| E[Send sd-notify Notification]
    D -->|Other Platforms| F[Return true]
    E --> G[systemd Receives Notification]
    F --> H[Service Continues Running]
    G --> H
    H --> I[Service Ready]

Core design principles of the library:

  1. Platform Abstraction: Provides unified cross-platform interface
  2. Graceful Degradation: Silent handling on non-Linux environments
  3. Zero Cost: Minimizes runtime overhead
  4. Standard Compliance: Fully follows sd-notify protocol specifications

Tech Stack

  • Core Language: Rust 2024 Edition
  • System Integration: sd-notify (Linux-specific)
  • Testing Framework: Built-in Rust testing toolchain
  • Documentation Generation: rustdoc with docs.rs configuration

Directory Structure

notify_ready/
├── src/
│   └── lib.rs          # Core library implementation
├── readme/
│   ├── en.md           # English documentation
│   └── zh.md           # Chinese documentation
├── Cargo.toml          # Project configuration
├── README.mdt          # Documentation template
└── test.sh             # Test script

Background

systemd's notification mechanism originated from the need to improve traditional Unix service management. In traditional SysVinit systems, service startup was a synchronous process where the init system waited for the service process to exit before considering startup complete. This approach couldn't handle modern daemon patterns where service processes immediately fork to the background and the parent process exits.

systemd introduced the sd-notify protocol to solve this problem. Services send status notifications to systemd through Unix sockets, including:

  • READY=1 - Service is ready to accept requests
  • STATUS=processing - Custom status information
  • WATCHDOG=1 - Watchdog heartbeat

This mechanism enables systemd to accurately track service status, achieving more precise dependency management and parallel startup optimization. The notify_ready project brings this mechanism to the Rust ecosystem, providing Rust service developers with a standardized system integration solution.


About

This project is an open-source component of js0.site ⋅ Refactoring the Internet Plan.

We are redefining the development paradigm of the Internet in a componentized way. Welcome to follow us:


notify_ready : 简洁的 systemd 就绪通知库

目录

项目简介

notify_ready 是用于向 systemd 发送准备就绪通知的 Rust 库。它封装了 sd-notify 协议,使服务能够通知 systemd 它们已完成初始化并准备好接收请求。

功能特性

  • 跨平台支持:Linux 上使用 sd-notify,其他平台优雅降级
  • 零配置:无需额外设置即可使用
  • 轻量级:最小依赖,专注核心功能
  • 简单 API:单一函数接口,易于集成

快速开始

将以下依赖添加到 Cargo.toml

[dependencies]
notify_ready = "0.1.1"

API 文档

send() -> bool

发送准备就绪通知到 systemd。

返回值:

  • true - 通知发送成功或非 Linux 平台
  • false - 通知发送失败(仅限 Linux 平台)

平台行为:

  • Linux:使用 sd-notify 发送 NotifyState::Ready
  • 其他平台:直接返回 true,不执行任何操作

使用示例

use notify_ready;

fn main() {
    // 执行服务初始化逻辑
    println!("服务初始化中...");
    
    // 发送准备就绪通知
    if notify_ready::send() {
        println!("就绪通知发送成功");
    } else {
        println!("就绪通知发送失败");
    }
    
    // 服务主循环
    println!("服务运行中");
}

设计思路

notify_ready 的设计遵循简洁原则,为 Rust 服务提供与 systemd 的标准集成方式。

graph TD
    A[服务启动] --> B[初始化资源]
    B --> C[调用 notify_ready::send]
    C --> D{运行平台}
    D -->|Linux| E[发送 sd-notify 通知]
    D -->|其他平台| F[返回 true]
    E --> G[systemd 接收通知]
    F --> H[服务继续运行]
    G --> H
    H --> I[服务就绪]

库的核心设计理念:

  1. 平台抽象:提供统一的跨平台接口
  2. 优雅降级:非 Linux 环境下静默处理
  3. 零成本:最小化运行时开销
  4. 标准兼容:完全遵循 sd-notify 协议规范

技术堆栈

  • 核心语言:Rust 2024 Edition
  • 系统集成:sd-notify(Linux 特有)
  • 测试框架:内置 Rust 测试工具链
  • 文档生成:rustdoc with docs.rs 配置

目录结构

notify_ready/
├── src/
│   └── lib.rs          # 核心库实现
├── readme/
│   ├── en.md           # 英文文档
│   └── zh.md           # 中文文档
├── Cargo.toml          # 项目配置
├── README.mdt          # 文档模板
└── test.sh             # 测试脚本

相关历史

systemd 的通知机制源于对传统 Unix 服务管理的改进需求。在传统的 SysVinit 系统中,服务启动是同步过程,init 系统等待服务进程退出后认为启动完成。这种方式无法处理现代的守护进程模式,即服务进程会立即 fork 后台运行而父进程退出。

systemd 引入了 sd-notify 协议来解决这一问题。服务通过 Unix 套接字向 systemd 发送状态通知,包括:

  • READY=1 - 服务已准备好接收请求
  • STATUS=processing - 自定义状态信息
  • WATCHDOG=1 - 看门狗心跳

这种机制使 systemd 能够准确跟踪服务状态,实现更精确的依赖管理和并行启动优化。notify_ready 项目将这一机制带到 Rust 生态系统中,为 Rust 服务开发者提供标准化的系统集成方案。


关于

本项目为 js0.site ⋅ 重构互联网计划 的开源组件。

我们正在以组件化的方式重新定义互联网的开发范式,欢迎关注:

Commit count: 0

cargo fmt