chore: import upstream snapshot with attribution
Integ / changes (push) Has been skipped
Pre-commit / pre-commit (push) Failing after 1s
CLI exit codes / changes (push) Has been skipped
Test (Install) / changes (push) Has been skipped
Test (Python) / changes (push) Has been skipped
Test (TypeScript) / changes (push) Has been skipped
CLI exit codes / cli-gate (push) Has been cancelled
Test (Install) / test-install-gate (push) Has been cancelled
Integ / integ-gate (push) Has been cancelled
Test (Python) / test-python-gate (push) Has been cancelled
Test (TypeScript) / test-typescript-gate (push) Has been cancelled
Test (Install) / python-minimal (3.12) (push) Has been cancelled
Test (Install) / python-minimal (3.11) (push) Has been cancelled
Test (Install) / python-extra (agno, mirage.agents.agno) (push) Has been cancelled
Test (Install) / python-extra (chroma, mirage.resource.chroma) (push) Has been cancelled
Test (Install) / python-extra (pdf, mirage.core.filetype.pdf) (push) Has been cancelled
Integ / integ (push) Has been cancelled
Integ / integ-database (push) Has been cancelled
Integ / integ-database-ts (push) Has been cancelled
Integ / integ-data (push) Has been cancelled
Integ / integ-ssh (push) Has been cancelled
Integ / integ-ssh-ts (push) Has been cancelled
Test (Python) / audit (push) Has been cancelled
Test (TypeScript) / test (push) Has been cancelled
Test (TypeScript) / python-fs-shim (push) Has been cancelled
CLI exit codes / Python CLI (push) Has been cancelled
CLI exit codes / TypeScript CLI (push) Has been cancelled
CLI exit codes / Cross-language snapshot interop (push) Has been cancelled
Test (Python) / test (push) Has been cancelled
Test (Python) / import-isolation (deepagents, openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Python) / import-isolation (deepagents, pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Integ / integ-ts (push) Has been cancelled
Integ / integ-fuse (push) Has been cancelled
Test (Install) / python-extra (databricks, mirage.resource.databricks_volume) (push) Has been cancelled
Test (Install) / python-extra (deepagents, mirage.agents.langchain) (push) Has been cancelled
Test (Install) / python-extra (email, mirage.resource.email) (push) Has been cancelled
Test (Install) / python-extra (fuse, mirage.fuse.mount) (push) Has been cancelled
Test (Install) / python-extra (hdf5, mirage.core.filetype.hdf5) (push) Has been cancelled
Test (Install) / python-extra (hf, mirage.resource.hf_buckets) (push) Has been cancelled
Test (Install) / python-extra (lancedb, mirage.resource.lancedb) (push) Has been cancelled
Test (Install) / python-extra (langfuse, mirage.resource.langfuse) (push) Has been cancelled
Test (Install) / python-extra (mongodb, mirage.resource.mongodb) (push) Has been cancelled
Test (Install) / python-extra (nextcloud, mirage.resource.nextcloud) (push) Has been cancelled
Test (Install) / python-extra (openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Install) / python-extra (openhands, mirage.agents.openhands, 3.12) (push) Has been cancelled
Test (Install) / python-extra (parquet, mirage.core.filetype.parquet) (push) Has been cancelled
Test (Install) / python-extra (postgres, mirage.resource.postgres) (push) Has been cancelled
Test (Install) / python-extra (pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Test (Install) / python-extra (qdrant, mirage.resource.qdrant) (push) Has been cancelled
Test (Install) / python-extra (redis, mirage.resource.redis) (push) Has been cancelled
Test (Install) / python-extra (s3, mirage.resource.s3) (push) Has been cancelled
Test (Install) / python-extra (ssh, mirage.resource.ssh) (push) Has been cancelled
Test (Install) / ts-minimal (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:30:44 +08:00
commit bcbd1bdb22
5748 changed files with 562488 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from mirage.cache.index.config import (IndexConfig, IndexEntry, ListResult,
LookupResult, LookupStatus,
RedisIndexConfig, ResourceType)
from mirage.cache.index.ram import RAMIndexCacheStore
from mirage.cache.index.store import IndexCacheStore
__all__ = [
"IndexCacheStore",
"IndexEntry",
"ListResult",
"LookupResult",
"LookupStatus",
"IndexConfig",
"RAMIndexCacheStore",
"RedisIndexCacheStore",
"RedisIndexConfig",
"ResourceType",
]
def __getattr__(name: str):
if name == "RedisIndexCacheStore":
from mirage.cache.index.redis import RedisIndexCacheStore
return RedisIndexCacheStore
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
+61
View File
@@ -0,0 +1,61 @@
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from enum import Enum
from pydantic import BaseModel, Field
from mirage.types import IndexType
class ResourceType(str, Enum):
FILE = "file"
FOLDER = "folder"
class LookupStatus(str, Enum):
EXPIRED = "expired"
NOT_FOUND = "not_found"
class IndexEntry(BaseModel):
id: str
name: str
resource_type: str
remote_time: str = ""
index_time: str = ""
vfs_name: str = ""
size: int | None = None
extra: dict = Field(default_factory=dict)
class LookupResult(BaseModel):
entry: IndexEntry | None = None
status: LookupStatus | None = None
class ListResult(BaseModel):
entries: list[str] | None = None
status: LookupStatus | None = None
class IndexConfig(BaseModel):
type: IndexType = IndexType.RAM
ttl: float = 600
class RedisIndexConfig(IndexConfig):
type: IndexType = IndexType.REDIS
url: str = "redis://localhost:6379/0"
key_prefix: str = "mirage:index:"
+89
View File
@@ -0,0 +1,89 @@
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from datetime import datetime, timedelta, timezone
from mirage.cache.index.config import (IndexEntry, ListResult, LookupResult,
LookupStatus)
from mirage.cache.index.store import IndexCacheStore
from mirage.cache.lock import KeyLockMixin
from mirage.core.timeutil import to_iso_z
class RAMIndexCacheStore(IndexCacheStore, KeyLockMixin):
"""In-memory index cache using plain dicts + asyncio locks."""
def __init__(self, ttl: float = 600) -> None:
super().__init__()
self._ttl = ttl
self._entries: dict[str, IndexEntry] = {}
self._children: dict[str, list[str]] = {}
self._expiry: dict[str, datetime] = {}
async def get(self, resource_path: str) -> LookupResult:
entry = self._entries.get(resource_path)
if entry is None:
return LookupResult(status=LookupStatus.NOT_FOUND)
return LookupResult(entry=entry)
async def put(self, resource_path: str, entry: IndexEntry) -> None:
async with self._lock_for(resource_path):
if not entry.index_time:
entry = entry.model_copy(
update={
"index_time": to_iso_z(datetime.now(timezone.utc))
})
self._entries[resource_path] = entry
async def list_dir(self, resource_path: str) -> ListResult:
exp = self._expiry.get(resource_path)
if exp is None:
return ListResult(status=LookupStatus.NOT_FOUND)
if datetime.now(timezone.utc) > exp:
return ListResult(status=LookupStatus.EXPIRED)
children = self._children.get(resource_path)
return ListResult(entries=children or [])
async def set_dir(
self,
resource_path: str,
entries: list[tuple[str, IndexEntry]],
expired_at: datetime | None = None,
) -> None:
async with self._lock_for(resource_path):
now = datetime.now(timezone.utc)
exp = expired_at or (now + timedelta(seconds=self._ttl))
now_iso = to_iso_z(now)
prefix = "/" if resource_path == "/" else resource_path + "/"
child_keys: list[str] = []
for name, entry in entries:
full_path = prefix + name
if not entry.index_time:
entry = entry.model_copy(update={"index_time": now_iso})
self._entries[full_path] = entry
child_keys.append(full_path)
self._children[resource_path] = child_keys
self._expiry[resource_path] = exp
async def invalidate_dir(self, resource_path: str) -> None:
for child in self._children.get(resource_path, []):
self._entries.pop(child, None)
self._expiry.pop(resource_path, None)
self._children.pop(resource_path, None)
async def clear(self) -> None:
self._entries.clear()
self._children.clear()
self._expiry.clear()
self._clear_locks()
+161
View File
@@ -0,0 +1,161 @@
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from datetime import datetime, timezone
try:
from redis.asyncio import Redis
except ImportError as _err:
raise ImportError("RedisIndexCacheStore requires the 'redis' extra. "
"Install with: pip install mirage-ai[redis]") from _err
from mirage.cache.index.config import (IndexEntry, ListResult, LookupResult,
LookupStatus)
from mirage.cache.index.store import IndexCacheStore
from mirage.core.timeutil import to_iso_z
ENTRY_PREFIX = "mirage:idx:entry:"
CHILDREN_PREFIX = "mirage:idx:children:"
class RedisIndexCacheStore(IndexCacheStore):
"""Redis-backed index cache for remote resource metadata.
Stores IndexEntry objects as JSON strings and directory children as
Redis lists. Directory TTL is managed via native Redis key expiration.
All writes within set_dir are batched in a single pipeline for efficiency.
Multiple stores can share one Redis server by using distinct key_prefix
values (e.g. "gdrive:", "s3:"). The full key layout is::
{key_prefix}mirage:idx:entry:{resource_path} -> JSON string
{key_prefix}mirage:idx:children:{resource_path} -> Redis list
Args:
ttl (float): Default time-to-live in seconds for directory listings.
url (str): Redis connection URL, used when *client* is not provided.
client (Redis | None): Pre-existing async Redis client. When given,
the store will not close it on ``close()``.
key_prefix (str): Namespace prefix prepended to every Redis key,
allowing multiple stores to coexist on the same server.
"""
def __init__(
self,
ttl: float = 600,
url: str = "redis://localhost:6379/0",
client: Redis | None = None,
key_prefix: str = "",
) -> None:
super().__init__()
self._ttl = ttl
self._client = client or Redis.from_url(url, decode_responses=True)
self._owns_client = client is None
p = key_prefix or ""
self._entry_prefix = f"{p}{ENTRY_PREFIX}"
self._children_prefix = f"{p}{CHILDREN_PREFIX}"
def _entry_key(self, resource_path: str) -> str:
return f"{self._entry_prefix}{resource_path}"
def _children_key(self, resource_path: str) -> str:
return f"{self._children_prefix}{resource_path}"
async def get(self, resource_path: str) -> LookupResult:
raw = await self._client.get(self._entry_key(resource_path))
if raw is None:
return LookupResult(status=LookupStatus.NOT_FOUND)
entry = IndexEntry.model_validate_json(raw)
return LookupResult(entry=entry)
async def put(self, resource_path: str, entry: IndexEntry) -> None:
if not entry.index_time:
entry = entry.model_copy(
update={"index_time": to_iso_z(datetime.now(timezone.utc))})
await self._client.set(self._entry_key(resource_path),
entry.model_dump_json())
async def list_dir(self, resource_path: str) -> ListResult:
key = self._children_key(resource_path)
exists = await self._client.exists(key)
if not exists:
return ListResult(status=LookupStatus.NOT_FOUND)
ttl_remaining = await self._client.ttl(key)
if ttl_remaining == -2:
return ListResult(status=LookupStatus.EXPIRED)
raw = await self._client.lrange(key, 0, -1)
return ListResult(entries=raw)
async def set_dir(
self,
resource_path: str,
entries: list[tuple[str, IndexEntry]],
expired_at: datetime | None = None,
) -> None:
now = datetime.now(timezone.utc)
now_iso = to_iso_z(now)
prefix = "/" if resource_path == "/" else resource_path + "/"
pipe = self._client.pipeline()
child_keys: list[str] = []
for name, entry in entries:
full_path = prefix + name
if not entry.index_time:
entry = entry.model_copy(update={"index_time": now_iso})
pipe.set(self._entry_key(full_path), entry.model_dump_json())
child_keys.append(full_path)
children_key = self._children_key(resource_path)
pipe.delete(children_key)
if child_keys:
pipe.rpush(children_key, *child_keys)
if expired_at:
ttl_seconds = max(1, int((expired_at - now).total_seconds()))
else:
ttl_seconds = max(1, int(self._ttl))
pipe.expire(children_key, ttl_seconds)
await pipe.execute()
async def invalidate_dir(self, resource_path: str) -> None:
children_key = f"{self._children_prefix}{resource_path}"
child_paths = await self._client.lrange(children_key, 0, -1)
pipe = self._client.pipeline()
for child in child_paths:
pipe.delete(self._entry_key(child))
pipe.delete(children_key)
await pipe.execute()
async def clear(self) -> None:
cursor = 0
while True:
cursor, keys = await self._client.scan(
cursor, match=f"{self._entry_prefix}*", count=500)
if keys:
await self._client.delete(*keys)
if cursor == 0:
break
cursor = 0
while True:
cursor, keys = await self._client.scan(
cursor, match=f"{self._children_prefix}*", count=500)
if keys:
await self._client.delete(*keys)
if cursor == 0:
break
async def close(self) -> None:
if self._owns_client:
await self._client.aclose()
+48
View File
@@ -0,0 +1,48 @@
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from datetime import datetime
from mirage.cache.index.config import IndexEntry, ListResult, LookupResult
class IndexCacheStore:
"""Per-resource metadata index for remote resources.
Abstract base. Maps resource paths to IndexEntry metadata.
Subclasses implement storage and concurrency.
"""
async def get(self, resource_path: str) -> LookupResult:
raise NotImplementedError
async def put(self, resource_path: str, entry: IndexEntry) -> None:
raise NotImplementedError
async def list_dir(self, resource_path: str) -> ListResult:
raise NotImplementedError
async def set_dir(
self,
resource_path: str,
entries: list[tuple[str, IndexEntry]],
expired_at: datetime | None = None,
) -> None:
raise NotImplementedError
async def invalidate_dir(self, resource_path: str) -> None:
raise NotImplementedError
async def clear(self) -> None:
raise NotImplementedError