BigPizzaV3/CodexPlusPlus · error · anyhow::Error
不支持的会话文件格式
Error message
不支持的会话文件格式
What it means
Thrown by import_rollout when the payload's kind field is anything other than "codex-rollout". The importer accepts exactly one payload shape; the offending input is the kind field of the JSON handed in by import_shared_session_url or import_rollout_file, and the guard fires before session_id/content are inspected.
Source
Thrown at crates/codex-plus-core/src/session_share.rs:203
let path =
find_rollout(home, session_id).ok_or_else(|| anyhow::anyhow!("找不到原生会话文件"))?;
let bytes = fs::read(&path).with_context(|| format!("读取会话文件失败:{}", path.display()))?;
if bytes.len() > MAX_ROLLOUT_BYTES {
bail!("会话文件超过分享大小限制");
}
let content = String::from_utf8(bytes).context("会话文件不是有效的 UTF-8")?;
Ok(json!({
"status": "ok",
"kind": "codex-rollout",
"session_id": session_id,
"content": content,
"filename": path.file_name().and_then(|value| value.to_str()).unwrap_or("rollout.jsonl"),
}))
}
pub fn import_rollout(home: &Path, payload: &Value) -> anyhow::Result<Value> {
if payload.get("kind").and_then(Value::as_str) != Some("codex-rollout") {
bail!("不支持的会话文件格式");
}
let source_id = payload
.get("session_id")
.and_then(Value::as_str)
.unwrap_or_default();
let content = payload
.get("content")
.and_then(Value::as_str)
.unwrap_or_default();
let title = payload
.get("title")
.and_then(Value::as_str)
.unwrap_or("导入的会话")
.trim();
if source_id.is_empty() || content.is_empty() {
bail!("会话文件内容不完整");
}
if content.len() > MAX_ROLLOUT_BYTES {View on GitHub (pinned to f2074595a2)
Solutions
- 使用 Codex++ 导出的会话文件
Defensive patterns
Strategy: validation
When it happens
Trigger: Thrown at crates/codex-plus-core/src/session_share.rs:203 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of BigPizzaV3/CodexPlusPlus@f2074595a2 (2026-08-23).
Data as JSON: /api/errors/668d8ca2f0301e47.
Report an issue: GitHub.