1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
// sphinxcontrib_rust - Sphinx extension for the Rust programming language
// Copyright (C) 2024 Munir Contractor
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//! Library for the docextractor executable.
//!
//! It consists of functions to extract content from the AST and
//! to write the content to an RST or MD file. The crate is tested on itself,
//! so all the documentation in the crate is in RST. The tests for Markdown
//! are done on the dependencies.
mod directives;
mod formats;
mod nodes;
use std::fs::{create_dir_all, read_to_string, File};
use std::io::Write;
use std::path::{Path, PathBuf};
use serde::Deserialize;
use crate::directives::{
CrateDirective,
Directive,
DirectiveVisibility,
ExecutableDirective,
ModuleDirective,
};
use crate::formats::Format;
#[derive(Debug, Deserialize)]
pub struct Configuration {
crate_name: String,
src_dir: PathBuf,
doc_dir: PathBuf,
#[serde(default)]
force: bool,
#[serde(default)]
format: Format,
#[serde(default)]
visibility: DirectiveVisibility,
}
impl Configuration {
// noinspection RsLiveness
/// Canonicalize the source and documents directory.
///
/// The method checks that the directories exist and have proper permissions
/// before updating them with their canonical paths.
///
/// Panics:
///
/// * If the source directory is not a directory or cannot be accessed.
/// * If the documents directory cannot be created.
fn canonicalize(&mut self) -> &mut Self {
if !self.src_dir.is_dir() {
panic!("{} is not a directory", self.src_dir.to_str().unwrap());
}
// Check if it ends with src, and convert to owned value
if !self.src_dir.ends_with("src") {
self.src_dir = self.src_dir.join("src");
}
// Canonicalize, which also checks that it exists.
self.src_dir = match self.src_dir.canonicalize() {
Ok(d) => d,
Err(e) => panic!("Could not find crate source directory: {e}"),
};
// Check if the output directory ends with the crate name
if !self.doc_dir.ends_with(&self.crate_name) {
self.doc_dir = self.doc_dir.join(&self.crate_name);
}
// Create output directory and canonicalize it.
// Canonicalize fails if the output_dir doesn't exist, so it is also a
// good check for permissions.
create_dir_all(&self.doc_dir).unwrap();
self.doc_dir = match self.doc_dir.canonicalize() {
Ok(d) => d,
Err(e) => panic!("Could not create the output directory: {e}"),
};
self
}
fn get_doc_file_name(&self, file_name: &Path) -> String {
let rel_path = file_name.strip_prefix(&self.src_dir).unwrap_or(file_name);
// For mod.rs files, the output file name is the parent directory name.
// Otherwise, it is same as the file name.
let doc_file_name = if rel_path.ends_with("mod.rs") {
rel_path.parent().unwrap().to_owned()
}
else {
rel_path
.parent()
.unwrap()
.join(rel_path.file_stem().unwrap())
};
// Convert to absolute path and add the extension.
// Cannot use canonicalize here since it will error.
let doc_file_name = self
.doc_dir
.join(doc_file_name)
.to_str()
.unwrap()
.to_string()
+ self.format.extension();
// Create the parent directory if required
create_dir_all(self.doc_dir.join(&doc_file_name).parent().unwrap()).unwrap();
doc_file_name
}
}
/// Find the file for the module under the parent directory.
///
/// The module's source code file in this case can be ``parent_dir/modname.rs``
/// or ``parent_dir/modname/mod.rs``.
///
/// Args:
/// :parent_dir: The directory under which to find the module's file.
/// :module_directive: The directive for the module.
///
/// Returns:
/// The path for the module's source code file.
///
/// Panics:
/// If neither ``parent_dir/modname.rs`` nor ``parent_dir/modname/mod.rs``
/// exist.
fn find_mod_file_under(parent_dir: &Path, module_directive: &ModuleDirective) -> PathBuf {
// Check modname.rs under the same directory as crate.
let mut mod_file = parent_dir.join(format!("{}.rs", &module_directive.ident));
// Check modname/mod.rs under the crate's directory
if !mod_file.is_file() {
mod_file = parent_dir.join(&module_directive.ident).join("mod.rs");
}
// Panic if still not found.
if !mod_file.is_file() {
panic!(
"Could not locate file for module {}",
&module_directive.ident
);
}
mod_file
}
/// Find the file for the module from provided parent path.
///
/// If the parent path is a directory, this calls
/// :rust:fn:`~sphinx-rustdocgen::find_mod_file_under` to locate the module's
/// file. If the parent path is a file name, it is assumed to be the path to
/// the module's parent module's file. If the file name is ``mod.rs``, the
/// module's file is searched under the same directory. Otherwise, it is
/// searched under the directory with the same name as the parent module.
///
/// Args:
/// :parent_path: The path to the file for the parent module of the current
/// module.
/// :module_directive: The directive for the module.
///
/// Returns:
/// The path for the module's source code file.
///
/// Panics:
/// If the module's file cannot be determined.
fn find_mod_file(parent_path: &Path, module_directive: &ModuleDirective) -> PathBuf {
if parent_path.is_dir() {
find_mod_file_under(parent_path, module_directive)
}
else {
// Parent is a file. Remove the extension from it.
if parent_path.ends_with("mod.rs") {
find_mod_file_under(parent_path.parent().unwrap(), module_directive)
}
else {
find_mod_file_under(
&parent_path
.parent()
.unwrap()
.join(parent_path.file_stem().unwrap()),
module_directive,
)
}
}
}
/// The different types of files that can be encountered.
/// For each file, the name of the item within it is captured.
enum FileType {
/// A binary executable's source file.
Bin(String),
/// The crate's library file.
Lib(String),
/// All other module files.
Mod(String),
}
/// Macro to push the module files to the files vec for processing
///
/// Args:
/// :files: The files list to push the files to.
/// :parent: The parent path of the module or crate's file.
/// :directive: The directive for the module or crate.
macro_rules! push_module_files {
($files:expr, $parent:expr, $directive:expr) => {
for directive in &$directive.items {
if let Directive::Module(m) = directive {
if m.items.is_empty() {
// Push the file to the vec
$files.push((
find_mod_file($parent, &m),
FileType::Mod(m.name.clone()),
Some(m.visibility.clone()),
));
}
}
}
};
}
/// Traverse the crate and extract the docstrings for the items.
///
/// Args:
/// :config: The configuration for the crate.
pub fn traverse_crate(mut config: Configuration) {
config.canonicalize();
log::debug!(
"Extracting docs for crate {} from {}",
&config.crate_name,
config.src_dir.to_str().unwrap()
);
log::debug!(
"Generated docs will be stored in {}",
config.doc_dir.to_str().unwrap()
);
// Vec of files that we need to process
let mut files = vec![];
// Add the main file if it exists.
// TODO: Make configurable
let main = config.src_dir.join("main.rs");
if main.is_file() {
files.push((main, FileType::Bin(config.crate_name.clone()), None));
}
// Check src/bin for other executables
let bin_dir = config.src_dir.join("bin");
if bin_dir.is_dir() {
for path in bin_dir.read_dir().unwrap() {
let path = path.unwrap().path();
if path.is_dir() {
let executable = path
.components()
.last()
.unwrap()
.as_os_str()
.to_str()
.unwrap()
.to_string();
files.push((path.join("main.rs"), FileType::Bin(executable), None));
}
else if path.extension() == Some("rs".as_ref()) {
let executable = path.file_stem().unwrap().to_str().unwrap().to_string();
files.push((path, FileType::Bin(executable), None));
}
}
}
// Add the lib file if it exists.
// TODO: Make configurable
let lib = config.src_dir.join("lib.rs");
if lib.is_file() {
files.push((lib, FileType::Lib(config.crate_name.to_string()), None));
}
while let Some((path, file, vis)) = files.pop() {
log::debug!("Processing file {}", path.to_str().unwrap());
let ast = syn::parse_file(&read_to_string(&path).unwrap()).unwrap();
let text = match file {
FileType::Bin(exe_name) => {
let exe_directive = ExecutableDirective::new(&exe_name, &ast);
push_module_files!(files, path.parent().unwrap(), exe_directive);
let mut text = config.format.make_title(&exe_name);
text.extend(
config
.format
.format_directive(Directive::Executable(exe_directive), &config.visibility),
);
text
}
FileType::Lib(crate_name) => {
let crate_directive = CrateDirective::new(&crate_name, &ast);
push_module_files!(files, path.parent().unwrap(), crate_directive);
let mut text = config.format.make_title(&format!(
"Crate {}",
config.format.make_inline_code(&crate_name)
));
text.extend(
config
.format
.format_directive(Directive::Crate(crate_directive), &config.visibility),
);
text
}
FileType::Mod(module) => {
let module_directive = ModuleDirective::new(&module, &ast, vis.unwrap());
push_module_files!(files, &path, module_directive);
let mut text = config.format.make_title(
&config
.format
.make_inline_code(&format!("mod {}", module_directive.ident)),
);
text.extend(
config
.format
.format_directive(Directive::Module(module_directive), &config.visibility),
);
text
}
};
let doc_file_name = config.get_doc_file_name(&path);
let doc_file = Path::new(&doc_file_name);
// If file doesn't exist or the module file has been modified since the
// last modification of the doc file, create/truncate it and rebuild the
// documentation.
if config.force
|| !doc_file.exists()
|| doc_file.metadata().unwrap().modified().unwrap()
< path.metadata().unwrap().modified().unwrap()
{
let mut doc_file = File::create(doc_file).unwrap();
log::debug!("Writing docs to file {doc_file_name}");
for line in text {
writeln!(&mut doc_file, "{line}").unwrap();
}
}
else {
log::debug!("Docs are up to date")
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_foo() {
println!("{}", bool::default())
}
#[test]
fn test_self() {
// Test just extracts the documents for the current crate. This avoids
// creating unnecessary test files when the source code itself can be
// used.
traverse_crate(Configuration {
crate_name: String::from("sphinx-rustdocgen"),
src_dir: Path::new(".").to_owned(),
doc_dir: Path::new("../docs/crates").to_owned(),
format: Format::Rst,
visibility: DirectiveVisibility::Pvt,
force: true,
})
}
#[test]
fn test_markdown() {
traverse_crate(Configuration {
crate_name: String::from("test_crate"),
src_dir: Path::new("../tests/test_crate").to_owned(),
doc_dir: Path::new("../tests/test_crate/docs/crates").to_owned(),
format: Format::Md,
visibility: DirectiveVisibility::Pvt,
force: true,
})
}
}