mrrc 0.7.6

A Rust library for reading, writing, and manipulating MARC bibliographic records in ISO 2709 binary format
Documentation
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
"""
Parallel processing benchmarks for Python MARC readers.

Demonstrates the GIL impact on threading performance and compares
pymrrc vs pymarc in concurrent workloads.

IMPORTANT: These benchmarks test both BytesIO and file-path backends.
- BytesIO tests verify GIL release during parsing (in-memory data)
- File-path tests verify end-to-end threading benefits with realistic I/O
"""

import pytest
import io
import tempfile
import shutil
from pathlib import Path
from concurrent.futures import ThreadPoolExecutor
from mrrc import MARCReader


class TestPythonParallelBenchmarks:
    """Benchmarks for parallel processing with threading and multiprocessing."""
    
    @pytest.mark.benchmark
    def test_sequential_reading_1k(self, benchmark, fixture_1k):
        """Baseline: sequential reading of 1k records."""
        def read_all():
            data = io.BytesIO(fixture_1k)
            reader = MARCReader(data)
            count = 0
            while reader.read_record() is not None:
                count += 1
            return count
        
        result = benchmark(read_all)
        assert result == 1000
    
    @pytest.mark.benchmark
    def test_sequential_2x_reading_1k(self, benchmark, fixture_1k):
        """Baseline: sequential reading of 2x 1k records."""
        def read_twice():
            total = 0
            for _ in range(2):
                data = io.BytesIO(fixture_1k)
                reader = MARCReader(data)
                while reader.read_record() is not None:
                    total += 1
            return total
        
        result = benchmark(read_twice)
        assert result == 2000
    
    @pytest.mark.benchmark
    def test_sequential_4x_reading_1k(self, benchmark, fixture_1k):
        """Baseline: sequential reading of 4x 1k records."""
        def read_4x():
            total = 0
            for _ in range(4):
                data = io.BytesIO(fixture_1k)
                reader = MARCReader(data)
                while reader.read_record() is not None:
                    total += 1
            return total
        
        result = benchmark(read_4x)
        assert result == 4000
    
    @pytest.mark.benchmark
    def test_threaded_reading_1k(self, benchmark, fixture_1k):
        """ThreadPoolExecutor reading of 2x 1k records (pymrrc)."""
        def read_with_threads():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=2) as executor:
                results = list(executor.map(read_single_file, [fixture_1k, fixture_1k]))
            return sum(results)
        
        result = benchmark(read_with_threads)
        assert result == 2000
    
    @pytest.mark.benchmark
    def test_threaded_reading_4x_1k(self, benchmark, fixture_1k):
        """ThreadPoolExecutor reading of 4x 1k records (pymrrc)."""
        def read_with_threads():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(
                    read_single_file, 
                    [fixture_1k] * 4
                ))
            return sum(results)
        
        result = benchmark(read_with_threads)
        assert result == 4000
    
    @pytest.mark.benchmark
    def test_sequential_10k(self, benchmark, fixture_10k):
        """Baseline: sequential reading of 10k records."""
        def read_all():
            data = io.BytesIO(fixture_10k)
            reader = MARCReader(data)
            count = 0
            while reader.read_record() is not None:
                count += 1
            return count
        
        result = benchmark(read_all)
        assert result == 10000
    
    @pytest.mark.benchmark
    def test_sequential_2x_reading_10k(self, benchmark, fixture_10k):
        """Baseline: sequential reading of 2x 10k records."""
        def read_twice():
            total = 0
            for _ in range(2):
                data = io.BytesIO(fixture_10k)
                reader = MARCReader(data)
                while reader.read_record() is not None:
                    total += 1
            return total
        
        result = benchmark(read_twice)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_threaded_reading_2x_10k(self, benchmark, fixture_10k):
        """ThreadPoolExecutor reading of 2x 10k records (pymrrc)."""
        def read_with_threads():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=2) as executor:
                results = list(executor.map(read_single_file, [fixture_10k, fixture_10k]))
            return sum(results)
        
        result = benchmark(read_with_threads)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_threaded_reading_4x_10k(self, benchmark, fixture_10k):
        """ThreadPoolExecutor reading of 4x 10k records (pymrrc)."""
        def read_with_threads():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(
                    read_single_file, 
                    [fixture_10k] * 4
                ))
            return sum(results)
        
        result = benchmark(read_with_threads)
        assert result == 40000


class TestParallelSummary:
    """Summary tests showing GIL impact and speedup metrics."""
    
    @pytest.mark.benchmark
    def test_threading_speedup_2x_10k(self, benchmark, fixture_10k):
        """
        Measure threading speedup on 2x 10k reads.
        
        Expected: ~1.4x speedup (limited by GIL)
        With GIL-release: ~1.9x speedup
        
        This demonstrates the bottleneck that mrrc-gyk will address.
        """
        def threaded_vs_sequential():
            # Threaded version
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=2) as executor:
                results = list(executor.map(read_single_file, [fixture_10k, fixture_10k]))
            return sum(results)
        
        result = benchmark(threaded_vs_sequential)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_threading_speedup_4x_10k(self, benchmark, fixture_10k):
        """
        Measure threading speedup on 4x 10k reads.
        
        Expected: ~1.3-1.4x speedup (GIL contention increases)
        With GIL-release: ~3.0-3.5x speedup
        
        This is the key benchmark showing GIL impact.
        """
        def threaded_4x():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(
                    read_single_file,
                    [fixture_10k] * 4
                ))
            return sum(results)
        
        result = benchmark(threaded_4x)
        assert result == 40000


class TestParallelWithFieldAccess:
    """Parallel benchmarks with realistic field access patterns."""
    
    @pytest.mark.benchmark
    def test_sequential_with_title_extraction_10k(self, benchmark, fixture_10k):
        """Sequential reading with field extraction."""
        def read_with_extraction():
            data = io.BytesIO(fixture_10k)
            reader = MARCReader(data)
            titles = []
            while (record := reader.read_record()) is not None:
                title = record.title or "Unknown"
                titles.append(title)
            return len(titles)

        result = benchmark(read_with_extraction)
        assert result == 10000
    
    @pytest.mark.benchmark
    def test_threaded_with_title_extraction_2x_10k(self, benchmark, fixture_10k):
        """Parallel reading with field extraction."""
        def read_with_extraction():
            def extract_titles(data):
                reader = MARCReader(io.BytesIO(data))
                titles = []
                while (record := reader.read_record()) is not None:
                    title = record.title or "Unknown"
                    titles.append(title)
                return len(titles)

            with ThreadPoolExecutor(max_workers=2) as executor:
                results = list(executor.map(extract_titles, [fixture_10k, fixture_10k]))
            return sum(results)
        
        result = benchmark(read_with_extraction)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_threaded_with_title_extraction_4x_10k(self, benchmark, fixture_10k):
        """Parallel reading with field extraction (4 threads)."""
        def read_with_extraction():
            def extract_titles(data):
                reader = MARCReader(io.BytesIO(data))
                titles = []
                while (record := reader.read_record()) is not None:
                    title = record.title or "Unknown"
                    titles.append(title)
                return len(titles)

            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(
                    extract_titles,
                    [fixture_10k] * 4
                ))
            return sum(results)
        
        result = benchmark(read_with_extraction)
        assert result == 40000


class TestIndividualOperationParallel:
    """Individual operation benchmarks with threading to measure speedup."""
    
    @pytest.mark.benchmark
    def test_parallel_read_4x_1k(self, benchmark, fixture_1k):
        """Parallel reading of 4x 1k records with 4 threads."""
        def read_parallel():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(read_single_file, [fixture_1k] * 4))
            return sum(results)
        
        result = benchmark(read_parallel)
        assert result == 4000
    
    @pytest.mark.benchmark
    def test_parallel_read_with_extract_4x_1k(self, benchmark, fixture_1k):
        """Parallel reading with field extraction of 4x 1k records."""
        def read_parallel_extract():
            def read_and_extract(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while (record := reader.read_record()) is not None:
                    _ = record.title
                    _ = record.get_fields("100")
                    count += 1
                return count

            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(read_and_extract, [fixture_1k] * 4))
            return sum(results)
        
        result = benchmark(read_parallel_extract)
        assert result == 4000
    
    @pytest.mark.benchmark
    def test_parallel_read_4x_10k(self, benchmark, fixture_10k):
        """Parallel reading of 4x 10k records with 4 threads."""
        def read_parallel():
            def read_single_file(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(read_single_file, [fixture_10k] * 4))
            return sum(results)
        
        result = benchmark(read_parallel)
        assert result == 40000
    
    @pytest.mark.benchmark
    def test_parallel_read_with_extract_4x_10k(self, benchmark, fixture_10k):
        """Parallel reading with field extraction of 4x 10k records."""
        def read_parallel_extract():
            def read_and_extract(data):
                reader = MARCReader(io.BytesIO(data))
                count = 0
                while (record := reader.read_record()) is not None:
                    _ = record.title
                    _ = record.get_fields("100")
                    count += 1
                return count

            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(read_and_extract, [fixture_10k] * 4))
            return sum(results)
        
        result = benchmark(read_parallel_extract)
        assert result == 40000


class TestFileBatchParallelBenchmarks:
    """
    File-path based benchmarks showing realistic threading performance.
    
    These benchmarks use actual file paths (not BytesIO), which allows
    the Rust backend to use pure file I/O without Python overhead.
    This tests the ARCHITECTURE.md recommendation: "one reader per thread
    reading from file paths."
    
    Expected: 3.74x speedup on 4 threads, 2.0x on 2 threads.
    """
    
    @pytest.fixture
    def temp_fixtures(self, fixture_10k):
        """Create temporary file copies for parallel read tests."""
        tmpdir = tempfile.mkdtemp()
        file_paths = []
        try:
            for i in range(4):
                filepath = Path(tmpdir) / f"batch_{i}.mrc"
                filepath.write_bytes(fixture_10k)
                file_paths.append(str(filepath))
            yield file_paths
        finally:
            shutil.rmtree(tmpdir)
    
    @pytest.mark.benchmark
    def test_file_sequential_1x_10k(self, benchmark, temp_fixtures):
        """Baseline: sequential file reading of 1x 10k from disk."""
        filepath = temp_fixtures[0]
        
        def read_file():
            reader = MARCReader(filepath)
            count = 0
            while reader.read_record() is not None:
                count += 1
            return count
        
        result = benchmark(read_file)
        assert result == 10000
    
    @pytest.mark.benchmark
    def test_file_sequential_2x_10k(self, benchmark, temp_fixtures):
        """Baseline: sequential file reading of 2x 10k from disk."""
        filepaths = temp_fixtures[:2]
        
        def read_files():
            total = 0
            for filepath in filepaths:
                reader = MARCReader(filepath)
                while reader.read_record() is not None:
                    total += 1
            return total
        
        result = benchmark(read_files)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_file_sequential_4x_10k(self, benchmark, temp_fixtures):
        """Baseline: sequential file reading of 4x 10k from disk."""
        filepaths = temp_fixtures
        
        def read_files():
            total = 0
            for filepath in filepaths:
                reader = MARCReader(filepath)
                while reader.read_record() is not None:
                    total += 1
            return total
        
        result = benchmark(read_files)
        assert result == 40000
    
    @pytest.mark.benchmark
    def test_file_parallel_2x_10k(self, benchmark, temp_fixtures):
        """Parallel file reading of 2x 10k with 2 threads (file-based)."""
        filepaths = temp_fixtures[:2]
        
        def read_parallel():
            def read_file(filepath):
                reader = MARCReader(filepath)
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=2) as executor:
                results = list(executor.map(read_file, filepaths))
            return sum(results)
        
        result = benchmark(read_parallel)
        assert result == 20000
    
    @pytest.mark.benchmark
    def test_file_parallel_4x_10k(self, benchmark, temp_fixtures):
        """Parallel file reading of 4x 10k with 4 threads (file-based).
        
        Expected: ~3.74x speedup vs sequential.
        Key test: Verifies ARCHITECTURE.md claim about file-path threading.
        """
        filepaths = temp_fixtures
        
        def read_parallel():
            def read_file(filepath):
                reader = MARCReader(filepath)
                count = 0
                while reader.read_record() is not None:
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(read_file, filepaths))
            return sum(results)
        
        result = benchmark(read_parallel)
        assert result == 40000
    
    @pytest.mark.benchmark
    def test_file_parallel_4x_10k_with_extraction(self, benchmark, temp_fixtures):
        """Parallel file reading + extraction with 4 threads (file-based).
        
        Realistic workload: read + process fields in parallel.
        """
        filepaths = temp_fixtures
        
        def read_parallel_extract():
            def process_file(filepath):
                reader = MARCReader(filepath)
                count = 0
                while (record := reader.read_record()) is not None:
                    _ = record.title
                    _ = record.get_fields("100")
                    count += 1
                return count
            
            with ThreadPoolExecutor(max_workers=4) as executor:
                results = list(executor.map(process_file, filepaths))
            return sum(results)
        
        result = benchmark(read_parallel_extract)
        assert result == 40000