topmark.toml.template_surgery¶
topmark / toml / template_surgery
Presentation-oriented edits for the bundled example TopMark TOML resource.
This module performs text-level edits on the annotated bundled example TopMark
TOML resource (topmark-example.toml) for copy/paste-friendly CLI output.
Supported transformations:
- --root: insert or remove root = true while preserving the documented
layout of the example TOML resource
- validation of the final plain or pyproject-shaped output used by
topmark config init
Design goals: - preserve the resource's original comments and formatting - make edits idempotent (safe to apply repeatedly) - be conservative when removing content - provide a TOML-parse backstop and clear validation hints
Rationale: The bundled example TopMark TOML resource is primarily documentation. Full AST rewriting tends to reorder content and strip formatting, which is undesirable for human-facing output.
TemplateEditResult
dataclass
¶
Result of applying a text edit to the template.
Attributes:
| Name | Type | Description |
|---|---|---|
text |
str
|
Edited TOML text. |
changed |
bool
|
True if the returned text differs from the input. |
ensure_pyproject_header ¶
Ensure the example TOML text contains an explicit [tool.topmark] header.
Source code in src/topmark/toml/template_surgery.py
set_root_flag_in_template_text ¶
Insert or remove root = true in example TOML text under [config].
This function edits the bundled example TOML resource as text (not as a TOML AST) so the surrounding documentation and spacing remain intact.
Placement when enabling root:
1) Preferred: if the appropriate config table already exists, place
root = true inside it, preferring the documented example anchor
# root = true when present.
2) Otherwise, if a commented-out config table anchor exists in the
template, uncomment that header and place root = true inside it,
preferring the documented example anchor # root = true when present.
3) Fallback: add a new config table in the appropriate scope and insert
root = true there.
Scope semantics:
- For plain
topmark.toml, the root flag lives under[config]. - For
pyproject.toml, the root flag lives under[tool.topmark.config].
Idempotency:
- Enabling: if an exact standalone non-comment
root = truealready exists inside the correct config table, no changes are made. - Disabling: only exact standalone non-comment
root = truelines inside the appropriate config table are removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
toml_text
|
str
|
Example TOML document text. |
required |
for_pyproject
|
bool
|
Whether the target scope is pyproject-style
( |
required |
root
|
bool
|
Whether to enable the root flag. |
required |
Returns:
| Type | Description |
|---|---|
TemplateEditResult
|
TemplateEditResult with edited text and a |
Source code in src/topmark/toml/template_surgery.py
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 | |
validate_toml_for_config_init ¶
Validate final TOML output prepared for topmark config init.
This is a defensive backstop for presentation-oriented edits of the bundled example TopMark TOML resource.
Validates
- TOML syntax parses.
- Minimal expected structure for the selected output mode (plain vs pyproject).
- Optional
rootexpectation ([config].rootor[tool.topmark.config].root).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
toml_text
|
str
|
Final TOML document text to validate. |
required |
for_pyproject
|
bool
|
If True, the document is expected to contain a |
required |
root_expected
|
bool
|
If True, the document is expected to contain |
required |
Raises:
| Type | Description |
|---|---|
TemplateValidationError
|
If the generated TOML does not match the expected plain or pyproject shape, or if the produced text is not valid TOML. |
Source code in src/topmark/toml/template_surgery.py
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 407 408 409 410 411 | |