-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathluxbin_address.py
More file actions
495 lines (388 loc) · 13.2 KB
/
luxbin_address.py
File metadata and controls
495 lines (388 loc) · 13.2 KB
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
"""
LUXBIN Address System
Quantum internet addressing scheme
Address Format:
luxbin://[node_id].[wavelength].[hash]/[resource]
Examples:
luxbin://ibm_fez.637nm.A3F9D2/webpage
luxbin://distributed.400-700nm.B8C4E1/file.txt
luxbin://mywebsite.550nm.XYZ123/index.html
Features:
- Content-addressable (hash-based)
- Wavelength-based routing hints
- Human-readable names (via blockchain DNS)
- Quantum-native addressing
"""
import re
import hashlib
from typing import Dict, Optional, Tuple
from dataclasses import dataclass
from luxbin_light_converter import LuxbinLightConverter
@dataclass
class LUXBINAddressComponents:
"""Parsed LUXBIN address components"""
node_id: str
wavelength: str # e.g., "637nm" or "400-700nm"
content_hash: str
resource: str
full_address: str
def __str__(self):
return self.full_address
def to_dict(self) -> Dict:
"""Convert to dictionary"""
return {
'node_id': self.node_id,
'wavelength': self.wavelength,
'content_hash': self.content_hash,
'resource': self.resource,
'full_address': self.full_address
}
class LUXBINAddress:
"""
LUXBIN address parser and validator
Handles quantum internet addresses with:
- Node identification
- Wavelength-based routing
- Content-addressable hashing
- Resource location
"""
# Address pattern: luxbin://node_id.wavelength.hash/resource
ADDRESS_PATTERN = re.compile(
r'^luxbin://([^.]+)\.([^.]+)\.([^/]+)(?:/(.+))?$'
)
def __init__(self):
self.converter = LuxbinLightConverter()
@classmethod
def parse(cls, address: str) -> Optional[LUXBINAddressComponents]:
"""
Parse LUXBIN address into components
Args:
address: LUXBIN URL string
Returns:
LUXBINAddressComponents or None if invalid
Example:
>>> addr = LUXBINAddress.parse("luxbin://ibm_fez.637nm.ABC123/page.html")
>>> addr.node_id
'ibm_fez'
>>> addr.wavelength
'637nm'
"""
if not address:
return None
# Validate and parse address
match = cls.ADDRESS_PATTERN.match(address)
if not match:
return None
node_id, wavelength, content_hash, resource = match.groups()
# Resource is optional (defaults to root)
if not resource:
resource = "/"
return LUXBINAddressComponents(
node_id=node_id,
wavelength=wavelength,
content_hash=content_hash,
resource=resource,
full_address=address
)
@classmethod
def create(
cls,
node_id: str,
content: bytes,
resource: str = "/",
wavelength: Optional[float] = None
) -> str:
"""
Create LUXBIN address for content
Args:
node_id: Node identifier
content: Content to address (bytes)
resource: Resource path (default: "/")
wavelength: Preferred wavelength in nm (default: auto-detect)
Returns:
Full LUXBIN address string
Example:
>>> addr = LUXBINAddress.create(
... node_id="mynode",
... content=b"Hello World",
... resource="index.html",
... wavelength=550
... )
>>> addr
'luxbin://mynode.550nm.B1F2A3/index.html'
"""
# Generate content hash using LUXBIN encoding
content_hash = cls.luxbin_hash(content)
# Determine wavelength
if wavelength is None:
# Auto-detect from content
wavelength = cls._infer_wavelength_from_content(content)
wavelength_str = f"{int(wavelength)}nm"
# Build address
address = f"luxbin://{node_id}.{wavelength_str}.{content_hash}"
if resource and resource != "/":
# Remove leading slash if present
resource = resource.lstrip("/")
address += f"/{resource}"
return address
@classmethod
def create_name_address(
cls,
name: str,
content: bytes,
wavelength: Optional[float] = None
) -> str:
"""
Create human-readable named address
Args:
name: Human-readable name (e.g., "mywebsite")
content: Content to address
wavelength: Preferred wavelength
Returns:
Named LUXBIN address
Example:
>>> addr = LUXBINAddress.create_name_address(
... name="mywebsite",
... content=b"<html>...</html>",
... wavelength=637
... )
>>> addr
'luxbin://mywebsite.637nm.F3A2B1'
"""
return cls.create(
node_id=name,
content=content,
wavelength=wavelength
)
@classmethod
def luxbin_hash(cls, content: bytes, length: int = 6) -> str:
"""
Generate LUXBIN hash of content
Uses LUXBIN encoding for quantum-native hashing
Args:
content: Content to hash
length: Hash length in LUXBIN characters (default: 6)
Returns:
LUXBIN hash string
Example:
>>> LUXBINAddress.luxbin_hash(b"Hello World")
'A3F9D2'
"""
# SHA-256 hash
sha_hash = hashlib.sha256(content).digest()
# Convert to LUXBIN encoding
converter = LuxbinLightConverter()
luxbin = converter.binary_to_luxbin_chars(sha_hash, chunk_size=6)
# Return first N characters as hash
return luxbin[:length].upper()
@classmethod
def _infer_wavelength_from_content(cls, content: bytes) -> float:
"""
Infer optimal wavelength for content
Uses content hash to distribute across spectrum
Args:
content: Content bytes
Returns:
Wavelength in nm (400-700nm range)
"""
# Hash content
content_hash = hashlib.sha256(content).digest()
# Use first byte to determine wavelength
hash_value = content_hash[0]
# Map 0-255 to 400-700nm
wavelength = 400 + (hash_value / 255) * 300
return round(wavelength)
@classmethod
def validate(cls, address: str) -> Tuple[bool, Optional[str]]:
"""
Validate LUXBIN address
Args:
address: Address to validate
Returns:
(is_valid, error_message)
Example:
>>> LUXBINAddress.validate("luxbin://node.550nm.ABC123/file")
(True, None)
>>> LUXBINAddress.validate("http://example.com")
(False, "Invalid protocol: expected 'luxbin://'")
"""
if not address:
return False, "Address is empty"
# Check protocol
if not address.startswith("luxbin://"):
return False, "Invalid protocol: expected 'luxbin://'"
# Parse address
components = cls.parse(address)
if not components:
return False, "Invalid address format"
# Validate components
if not components.node_id:
return False, "Missing node_id"
if not components.wavelength:
return False, "Missing wavelength"
if not components.content_hash:
return False, "Missing content_hash"
# Validate wavelength format
if not cls._validate_wavelength(components.wavelength):
return False, f"Invalid wavelength format: {components.wavelength}"
return True, None
@classmethod
def _validate_wavelength(cls, wavelength_str: str) -> bool:
"""
Validate wavelength format
Accepts:
- Single wavelength: "550nm", "637nm"
- Range: "400-700nm"
Args:
wavelength_str: Wavelength string
Returns:
True if valid format
"""
# Single wavelength pattern: 400-700nm
single_pattern = re.compile(r'^(\d{3})nm$')
match = single_pattern.match(wavelength_str)
if match:
wavelength = int(match.group(1))
return 400 <= wavelength <= 700
# Range pattern: 400-700nm
range_pattern = re.compile(r'^(\d{3})-(\d{3})nm$')
match = range_pattern.match(wavelength_str)
if match:
min_wl = int(match.group(1))
max_wl = int(match.group(2))
return 400 <= min_wl <= max_wl <= 700
return False
@classmethod
def extract_wavelength(cls, address: str) -> Optional[float]:
"""
Extract wavelength value from address
Args:
address: LUXBIN address
Returns:
Wavelength in nm (or midpoint of range)
Example:
>>> LUXBINAddress.extract_wavelength("luxbin://node.550nm.ABC/file")
550.0
>>> LUXBINAddress.extract_wavelength("luxbin://node.400-700nm.ABC/file")
550.0
"""
components = cls.parse(address)
if not components:
return None
wavelength_str = components.wavelength
# Single wavelength
if '-' not in wavelength_str:
return float(wavelength_str.replace('nm', ''))
# Range: return midpoint
parts = wavelength_str.replace('nm', '').split('-')
min_wl = float(parts[0])
max_wl = float(parts[1])
return (min_wl + max_wl) / 2
@classmethod
def is_compatible_wavelength(
cls,
address: str,
node_wavelength_range: Tuple[float, float],
tolerance: float = 50
) -> bool:
"""
Check if address wavelength is compatible with node's range
Args:
address: LUXBIN address
node_wavelength_range: Node's wavelength specialization (min, max)
tolerance: Acceptable deviation in nm
Returns:
True if compatible
Example:
>>> LUXBINAddress.is_compatible_wavelength(
... "luxbin://node.550nm.ABC/file",
... (500, 600),
... tolerance=50
... )
True
"""
addr_wavelength = cls.extract_wavelength(address)
if addr_wavelength is None:
return False
min_wl, max_wl = node_wavelength_range
# Check if wavelength falls within node's range (with tolerance)
return (min_wl - tolerance) <= addr_wavelength <= (max_wl + tolerance)
def main():
"""Test LUXBIN address system"""
print("=" * 70)
print("LUXBIN ADDRESS SYSTEM TEST")
print("=" * 70)
# Test 1: Create address
print("\n1. Creating LUXBIN addresses:")
print("-" * 70)
content = b"Hello, Quantum Internet!"
addr1 = LUXBINAddress.create(
node_id="ibm_fez",
content=content,
resource="index.html",
wavelength=637
)
print(f"Address 1: {addr1}")
addr2 = LUXBINAddress.create_name_address(
name="mywebsite",
content=content,
wavelength=550
)
print(f"Address 2: {addr2}")
# Test 2: Parse address
print("\n2. Parsing LUXBIN addresses:")
print("-" * 70)
for addr in [addr1, addr2]:
components = LUXBINAddress.parse(addr)
if components:
print(f"\nAddress: {addr}")
print(f" Node ID: {components.node_id}")
print(f" Wavelength: {components.wavelength}")
print(f" Hash: {components.content_hash}")
print(f" Resource: {components.resource}")
# Test 3: Validate addresses
print("\n3. Validating addresses:")
print("-" * 70)
test_addresses = [
"luxbin://ibm_fez.637nm.ABC123/index.html",
"luxbin://mysite.550nm.XYZ789",
"luxbin://node.400-700nm.FULL/spectrum",
"http://example.com", # Invalid
"luxbin://invalid", # Invalid
]
for addr in test_addresses:
is_valid, error = LUXBINAddress.validate(addr)
status = "✅ VALID" if is_valid else f"❌ INVALID: {error}"
print(f"{status:40s} {addr}")
# Test 4: Wavelength extraction
print("\n4. Extracting wavelengths:")
print("-" * 70)
for addr in test_addresses[:3]:
wavelength = LUXBINAddress.extract_wavelength(addr)
if wavelength:
print(f"{wavelength}nm <- {addr}")
# Test 5: Wavelength compatibility
print("\n5. Testing wavelength compatibility:")
print("-" * 70)
node_range = (500, 600) # Green region node
print(f"Node wavelength range: {node_range[0]}-{node_range[1]}nm\n")
for addr in test_addresses[:3]:
compatible = LUXBINAddress.is_compatible_wavelength(addr, node_range)
status = "✅ Compatible" if compatible else "❌ Incompatible"
print(f"{status:20s} {addr}")
# Test 6: LUXBIN hashing
print("\n6. LUXBIN content hashing:")
print("-" * 70)
test_contents = [
b"Hello World",
b"Quantum Internet",
b"LUXBIN Protocol"
]
for content in test_contents:
hash_value = LUXBINAddress.luxbin_hash(content, length=8)
print(f"{hash_value:12s} <- {content.decode()}")
print("\n" + "=" * 70)
print("✅ LUXBIN ADDRESS SYSTEM TEST COMPLETE")
print("=" * 70)
if __name__ == "__main__":
main()