Skip to content
Snippets Groups Projects
search.py 4 KiB
Newer Older
  • Learn to ignore specific revisions
  • #   Copyright ETH 2023 Zürich, Scientific IT Services
    #
    #   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.
    #
    
    from .openbis_command import OpenbisCommand
    from ..command_result import CommandResult
    from ..utils import cd
    from ...scripts.click_util import click_echo
    
    
    class Search(OpenbisCommand):
        """
    
        """
    
        def __init__(self, dm, type_code, space, project, experiment, property_code, property_value,
                     save_path):
            """
            :param dm: data management
            :param type_code: Filter by type code
            :param space: Filter by space path
            :param project: Filter by project path
            :param experiment: Filter by experiment
            :param property_code: Filter by property_code, needs to be set together with property_value
            :param property_value: Filter by property_value, needs to be set together with property_code
            :param save_path: Path to save results. If not set, results will not be saved.
            """
            self.property_value = property_value
            self.property_code = property_code
            self.experiment = experiment
            self.project = project
            self.space = space
            self.type_code = type_code
            self.save_path = save_path
            self.load_global_config(dm)
            super(Search, self).__init__(dm)
    
        def search_samples(self):
            properties = None
            if self.property_code is not None and self.property_value is not None:
                properties = {
                    self.property_code: self.property_value,
                }
    
            search_results = self.openbis.get_samples(
                space=self.space,
                project=self.project,  # Not Supported with Project Samples disabled
                experiment=self.experiment,
                type=self.type_code,
                where=properties,
                props="*"  # Fetch all properties
            )
    
            click_echo(f"Objects found: {len(search_results)}")
    
                click_echo(f"Saving search results in {self.save_path}")
    
                with cd(self.data_mgmt.invocation_path):
                    search_results.df.to_csv(self.save_path, index=False)
            else:
    
                click_echo(f"Search results:\n{search_results}")
    
            return CommandResult(returncode=0, output="Search completed.")
    
        def search_data_sets(self):
            if self.save_path is not None and self.fileservice_url() is None:
                return CommandResult(returncode=-1,
                                     output="Configuration fileservice_url needs to be set for download.")
    
            properties = None
            if self.property_code is not None and self.property_value is not None:
                properties = {
                    self.property_code: self.property_value,
                }
    
    
                space=self.space,
                project=self.project,  # Not Supported with Project Samples disabled
                experiment=self.experiment,
                type=self.type_code,
                where=properties,
    
            click_echo(f"Data sets found: {len(datasets)}")
            if self.save_path is not None:
    
                click_echo(f"Saving search results in {self.save_path}")
    
                with cd(self.data_mgmt.invocation_path):
    
                    datasets.df.to_csv(self.save_path, index=False)
    
            else:
                click_echo(f"Search results:\n{datasets}")
    
    
            return CommandResult(returncode=0, output="Search completed.")