123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #
- # Copyright 2018-2022 Elyra Authors
- #
- # 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.
- #
- import os
- from jupyter_server.extension.application import ExtensionApp
- from jupyter_server.extension.application import ExtensionAppJinjaMixin
- from elyra._version import __version__
- from elyra.api.handlers import YamlSpecHandler
- from elyra.contents.handlers import ContentHandler
- from elyra.metadata.handlers import MetadataHandler
- from elyra.metadata.handlers import MetadataResourceHandler
- from elyra.metadata.handlers import SchemaHandler
- from elyra.metadata.handlers import SchemaResourceHandler
- from elyra.metadata.handlers import SchemaspaceHandler
- from elyra.metadata.handlers import SchemaspaceResourceHandler
- from elyra.metadata.manager import MetadataManager
- from elyra.metadata.schema import SchemaManager
- from elyra.metadata.storage import FileMetadataCache
- from elyra.pipeline.catalog_connector import ComponentCatalogConnector
- from elyra.pipeline.component_catalog import ComponentCache
- from elyra.pipeline.handlers import ComponentCacheCatalogHandler
- from elyra.pipeline.handlers import ComponentCacheHandler
- from elyra.pipeline.handlers import PipelineComponentHandler
- from elyra.pipeline.handlers import PipelineComponentPropertiesHandler
- from elyra.pipeline.handlers import PipelineExportHandler
- from elyra.pipeline.handlers import PipelinePropertiesHandler
- from elyra.pipeline.handlers import PipelineRuntimeTypesHandler
- from elyra.pipeline.handlers import PipelineSchedulerHandler
- from elyra.pipeline.handlers import PipelineValidationHandler
- from elyra.pipeline.processor import PipelineProcessor
- from elyra.pipeline.processor import PipelineProcessorManager
- from elyra.pipeline.processor import PipelineProcessorRegistry
- from elyra.pipeline.validation import PipelineValidationManager
- DEFAULT_STATIC_FILES_PATH = os.path.join(os.path.dirname(__file__), "static")
- DEFAULT_TEMPLATE_FILES_PATH = os.path.join(os.path.dirname(__file__), "templates")
- class ElyraApp(ExtensionAppJinjaMixin, ExtensionApp):
- # The name of the extension.
- name = "elyra"
- version = __version__
- description = "Elyra Server"
- extension_url = "/lab"
- load_other_extensions = True
- classes = [FileMetadataCache, MetadataManager, PipelineProcessor, ComponentCatalogConnector, ComponentCache]
- # Local path to static files directory.
- static_paths = [
- os.path.join(DEFAULT_STATIC_FILES_PATH, "icons"),
- ]
- # Local path to templates directory.
- # template_paths = [
- # DEFAULT_TEMPLATE_FILES_PATH
- # ]
- # Define ElyraApp configurables here..
- def initialize_handlers(self):
- schemaspace_regex = r"(?P<schemaspace>[\w\.\-]+)"
- resource_regex = r"(?P<resource>[\w\.\-]+)"
- path_regex = r"(?P<path>(?:(?:/[^/]+)+|/?))" # same as jupyter server and will include a leading slash
- processor_regex = r"(?P<runtime_type>[\w]+)"
- component_regex = r"(?P<component_id>[\w\.\-:%]+)"
- catalog_regex = r"(?P<catalog>[\w\.\-:]+)"
- self.handlers.extend(
- [
- # API
- (f"/{self.name}/{YamlSpecHandler.get_resource_metadata()[0]}", YamlSpecHandler),
- # Content
- (f"/{self.name}/contents/properties{path_regex}", ContentHandler),
- # Metadata
- (f"/{self.name}/metadata/{schemaspace_regex}", MetadataHandler),
- (f"/{self.name}/metadata/{schemaspace_regex}/{resource_regex}", MetadataResourceHandler),
- (f"/{self.name}/schema/{schemaspace_regex}", SchemaHandler),
- (f"/{self.name}/schema/{schemaspace_regex}/{resource_regex}", SchemaResourceHandler),
- (f"/{self.name}/schemaspace", SchemaspaceHandler),
- (f"/{self.name}/schemaspace/{schemaspace_regex}", SchemaspaceResourceHandler),
- # Pipeline
- (f"/{self.name}/pipeline/components/cache", ComponentCacheHandler),
- (f"/{self.name}/pipeline/components/cache/{catalog_regex}", ComponentCacheCatalogHandler),
- (f"/{self.name}/pipeline/components/{processor_regex}", PipelineComponentHandler),
- (
- f"/{self.name}/pipeline/components/{processor_regex}/{component_regex}",
- PipelineComponentPropertiesHandler,
- ),
- (
- f"/{self.name}/pipeline/components/{processor_regex}/{component_regex}/properties",
- PipelineComponentPropertiesHandler,
- ),
- (f"/{self.name}/pipeline/export", PipelineExportHandler),
- (f"/{self.name}/pipeline/{processor_regex}/properties", PipelinePropertiesHandler),
- (f"/{self.name}/pipeline/runtimes/types", PipelineRuntimeTypesHandler),
- (f"/{self.name}/pipeline/schedule", PipelineSchedulerHandler),
- (f"/{self.name}/pipeline/validate", PipelineValidationHandler),
- ]
- )
- def initialize_settings(self):
- self.log.info(f"Config {self.config}")
- # Instantiate singletons with appropriate parent to enable configurability, and convey
- # root_dir to PipelineProcessorManager.
- PipelineProcessorRegistry.instance(root_dir=self.settings["server_root_dir"], parent=self)
- PipelineProcessorManager.instance(root_dir=self.settings["server_root_dir"], parent=self)
- PipelineValidationManager.instance(root_dir=self.settings["server_root_dir"], parent=self)
- FileMetadataCache.instance(parent=self)
- ComponentCache.instance(parent=self).load()
- SchemaManager.instance(parent=self)
- def initialize_templates(self):
- pass
- async def stop_extension(self):
- if ComponentCache.initialized():
- ComponentCache.instance(parent=self).cache_manager.stop() # terminate CacheUpdateManager
- launch_instance = ElyraApp.launch_instance
|