# ========= 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.accessor.postgres import PostgresAccessor from mirage.core.postgres.glob import resolve_glob as _resolve_glob from mirage.resource.base import BaseResource from mirage.resource.postgres.config import PostgresConfig from mirage.resource.postgres.prompt import PROMPT from mirage.types import ResourceName class PostgresResource(BaseResource): name: str = ResourceName.POSTGRES caches_reads: bool = False PROMPT: str = PROMPT def __init__(self, config: PostgresConfig) -> None: super().__init__() self.config = config self.accessor = PostgresAccessor(self.config) from mirage.commands.builtin.postgres import COMMANDS from mirage.ops.postgres import OPS as POSTGRES_VFS_OPS for fn in COMMANDS: self.register(fn) for fn in POSTGRES_VFS_OPS: self.register_op(fn) async def resolve_glob(self, paths, prefix: str = ""): return await _resolve_glob(self.accessor, paths, index=self._index) async def fingerprint(self, path: str) -> str | None: return None def get_state(self) -> dict: return self.config_state(self.config) def load_state(self, state: dict) -> None: pass