Diffs & Sequences
knowledgecomplex.diff — Complex diffs and sequences for time-varying complexes.
A ComplexDiff records element additions and removals. It can be applied
to a KnowledgeComplex to mutate it, exported to a SPARQL UPDATE string
for interoperability with RDF-native systems (e.g. flexo MMS), or imported
from a SPARQL UPDATE string received from a remote system.
A ComplexSequence wraps a base complex and an ordered list of diffs,
representing a time series of complex states. Element ID sets at each step
are computed by applying diffs cumulatively.
Example::
diff = ComplexDiff()
diff.add_vertex("eve", type="Person")
diff.add_edge("e-ae", type="Link", vertices={"alice", "eve"})
diff.remove("old-edge")
diff.apply(kc) # mutate the complex
sparql = diff.to_sparql(kc) # export as SPARQL UPDATE
# Import a diff from a remote system
remote_diff = ComplexDiff.from_sparql(sparql, kc)
remote_diff.apply(kc2)
ComplexDiff
A set of element additions and removals that transform a complex.
Build a diff by chaining add_vertex, add_edge, add_face,
and remove calls. Then apply it to a KnowledgeComplex via
:meth:apply, or export it to a SPARQL UPDATE string via :meth:to_sparql.
Source code in knowledgecomplex/diff.py
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 | |
additions
property
Element additions: list of dicts with id, type, kind, boundary, attrs.
removals
property
Element removals: list of element IDs.
add_vertex(id, type, uri=None, **attrs)
Record a vertex addition.
Source code in knowledgecomplex/diff.py
63 64 65 66 67 68 69 70 71 | |
add_edge(id, type, vertices, uri=None, **attrs)
Record an edge addition.
Source code in knowledgecomplex/diff.py
73 74 75 76 77 78 79 80 81 82 | |
add_face(id, type, boundary, uri=None, **attrs)
Record a face addition.
Source code in knowledgecomplex/diff.py
84 85 86 87 88 89 90 91 92 93 | |
remove(id)
Record an element removal.
Source code in knowledgecomplex/diff.py
95 96 97 98 | |
apply(kc, validate=True)
Apply this diff to a KnowledgeComplex.
Removals are processed first (highest dimension first to avoid boundary-closure violations), then additions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
kc
|
KnowledgeComplex
|
|
required |
validate
|
bool
|
If True (default), run SHACL validation after all changes.
Raises |
True
|
Source code in knowledgecomplex/diff.py
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 | |
to_sparql(kc)
Export this diff as a SPARQL UPDATE string.
Generates DELETE DATA blocks for removals and INSERT DATA
blocks for additions, using the KC's namespace for IRI construction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
kc
|
KnowledgeComplex
|
Used to read existing triples for removals and to resolve namespaces. |
required |
Returns:
| Type | Description |
|---|---|
str
|
A SPARQL UPDATE string. |
Source code in knowledgecomplex/diff.py
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 | |
from_sparql(sparql, kc)
classmethod
Parse a SPARQL UPDATE string into a ComplexDiff.
Extracts INSERT DATA and DELETE DATA blocks, parses their
triple content, and reconstructs element additions and removals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sparql
|
str
|
SPARQL UPDATE string (as produced by :meth: |
required |
kc
|
KnowledgeComplex
|
Used to resolve namespaces and determine element kinds. |
required |
Returns:
| Type | Description |
|---|---|
ComplexDiff
|
|
Source code in knowledgecomplex/diff.py
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 | |
ComplexSequence
A base complex + ordered list of diffs, representing a time series.
Computes element ID sets at each step by applying diffs cumulatively
to the base complex's element set. This is a lightweight representation
that does not reconstruct full KnowledgeComplex instances at each step.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
kc
|
KnowledgeComplex
|
The base complex (state at step -1, before any diffs). |
required |
diffs
|
list[ComplexDiff]
|
Ordered sequence of diffs to apply. |
required |
Source code in knowledgecomplex/diff.py
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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
complex
property
The base KnowledgeComplex.
diffs
property
The ordered list of diffs.
__getitem__(index)
Element IDs present at step index.
Source code in knowledgecomplex/diff.py
404 405 406 | |
new_at(index)
Elements added at step index (not present in previous step).
Source code in knowledgecomplex/diff.py
412 413 414 415 416 417 418 | |
removed_at(index)
Elements removed at step index (present in previous, absent now).
Source code in knowledgecomplex/diff.py
420 421 422 423 424 425 426 | |