from__future__importannotationsimportitertoolsimporttypingimportwarningsfromcollections.abcimportIterablefromfunctoolsimportcached_propertyfromtypingimportTYPE_CHECKING,Optional,Unionimportnumpyasnpfromnapari.components.dimsimportRangeTuplefromnapari.layersimportLayerfromnapari.layers.utils.layer_utilsimportExtentfromnapari.utils.events.containersimportSelectableEventedListfromnapari.utils.namingimportinc_name_countfromnapari.utils.translationsimporttransifTYPE_CHECKING:fromnpe2.manifest.ioimportWriterContributionfromtyping_extensionsimportSelfdefget_name(layer:Layer)->str:"""Return the name of a layer."""returnlayer.name
[docs]classLayerList(SelectableEventedList[Layer]):"""List-like layer collection with built-in reordering and callback hooks. Parameters ---------- data : iterable Iterable of napari.layer.Layer Events ------ inserting : (index: int) emitted before an item is inserted at ``index`` inserted : (index: int, value: T) emitted after ``value`` is inserted at ``index`` removing : (index: int) emitted before an item is removed at ``index`` removed : (index: int, value: T) emitted after ``value`` is removed at ``index`` moving : (index: int, new_index: int) emitted before an item is moved from ``index`` to ``new_index`` moved : (index: int, new_index: int, value: T) emitted after ``value`` is moved from ``index`` to ``new_index`` changed : (index: int, old_value: T, value: T) emitted when item at ``index`` is changed from ``old_value`` to ``value`` changed <OVERLOAD> : (index: slice, old_value: List[_T], value: List[_T]) emitted when item at ``index`` is changed from ``old_value`` to ``value`` reordered : (value: self) emitted when the list is reordered (eg. moved/reversed). selection.events.changed : (added: Set[_T], removed: Set[_T]) emitted when the set changes, includes item(s) that have been added and/or removed from the set. selection.events.active : (value: _T) emitted when the current item has changed. selection.events._current : (value: _T) emitted when the current item has changed. (Private event) """def__init__(self,data=())->None:super().__init__(data=data,basetype=Layer,lookup={str:get_name},)self._create_contexts()def_create_contexts(self):"""Create contexts to manage enabled/visible action/menu states. Connects LayerList and Selection[Layer] to their context keys to allow actions and menu items (in the GUI) to be dynamically enabled/disabled and visible/hidden based on the state of layers in the list. """# TODO: figure out how to move this context creation bit.# Ideally, the app should be aware of the layerlist, but not vice versa.# This could probably be done by having the layerlist emit events that# the app connects to, then the `_ctx` object would live on the app,# (not here)fromnapari._app_model.contextimportcreate_contextfromnapari._app_model.context._layerlist_contextimport(LayerListContextKeys,LayerListSelectionContextKeys,)self._ctx=create_context(self)ifself._ctxisnotNone:# happens during Viewer type creationself._ctx_keys=LayerListContextKeys(self._ctx)self.events.inserted.connect(self._ctx_keys.update)self.events.removed.connect(self._ctx_keys.update)self._selection_ctx_keys=LayerListSelectionContextKeys(self._ctx)self.selection.events.changed.connect(self._selection_ctx_keys.update)def_process_delete_item(self,item:Layer):super()._process_delete_item(item)item.events.extent.disconnect(self._clean_cache)item.events._extent_augmented.disconnect(self._clean_cache)self._clean_cache()def_clean_cache(self):cached_properties=('extent','_extent_world','_extent_world_augmented','_step_size',)[self.__dict__.pop(p,None)forpincached_properties]def__newlike__(self,data):returnLayerList(data)def_coerce_name(self,name,layer=None):"""Coerce a name into a unique equivalent. Parameters ---------- name : str Original name. layer : napari.layers.Layer, optional Layer for which name is generated. Returns ------- new_name : str Coerced, unique name. """existing_layers={x.nameforxinselfifxisnotlayer}for_inrange(len(self)):ifnameinexisting_layers:name=inc_name_count(name)returnnamedef_update_name(self,event):"""Coerce name of the layer in `event.layer`."""layer=event.sourcelayer.name=self._coerce_name(layer.name,layer)def_ensure_unique(self,values,allow=()):bad=set(self._list)-set(allow)values=tuple(values)ifisinstance(values,Iterable)else(values,)forvinvalues:ifvinbad:raiseValueError(trans._("Layer '{v}' is already present in layer list",deferred=True,v=v,))returnvalues@typing.overloaddef__getitem__(self,item:Union[int,str])->Layer:...@typing.overloaddef__getitem__(self,item:slice)->Self:...def__getitem__(self,item):returnsuper().__getitem__(item)def__setitem__(self,key,value):old=self._list[key]ifisinstance(key,slice):value=self._ensure_unique(value,old)elifisinstance(key,int):(value,)=self._ensure_unique((value,),(old,))super().__setitem__(key,value)
[docs]definsert(self,index:int,value:Layer):"""Insert ``value`` before index."""(value,)=self._ensure_unique((value,))new_layer=self._type_check(value)new_layer.name=self._coerce_name(new_layer.name)self._clean_cache()new_layer.events.extent.connect(self._clean_cache)new_layer.events._extent_augmented.connect(self._clean_cache)super().insert(index,new_layer)
[docs]defremove_selected(self):"""Remove selected layers from LayerList, but first unlink them."""ifnotself.selection:returnself.unlink_layers(self.selection)super().remove_selected()
[docs]deftoggle_selected_visibility(self):"""Toggle visibility of selected layers"""forlayerinself.selection:layer.visible=notlayer.visible
@cached_propertydef_extent_world(self)->np.ndarray:"""Extent of layers in world coordinates. Default to 2D with (-0.5, 511.5) min/ max values if no data is present. Corresponds to pixels centered at [0, ..., 511]. Returns ------- extent_world : array, shape (2, D) """returnself._get_extent_world([layer.extentforlayerinself])@cached_propertydef_extent_world_augmented(self)->np.ndarray:"""Extent of layers in world coordinates. Default to 2D with (-0.5, 511.5) min/ max values if no data is present. Corresponds to pixels centered at [0, ..., 511]. Returns ------- extent_world : array, shape (2, D) """returnself._get_extent_world([layer._extent_augmentedforlayerinself],augmented=True,)def_get_min_and_max(self,mins_list,maxes_list):# Reverse dimensions since it is the last dimensions that are# displayed.mins_list=[mins[::-1]forminsinmins_list]maxes_list=[maxes[::-1]formaxesinmaxes_list]withwarnings.catch_warnings():# Taking the nanmin and nanmax of an axis of all nan# raises a warning and returns nan for that axis# as we have do an explicit nan_to_num below this# behaviour is acceptable and we can filter the# warningwarnings.filterwarnings('ignore',message=str(trans._('All-NaN axis encountered',deferred=True)),)min_v=np.nanmin(list(itertools.zip_longest(*mins_list,fillvalue=np.nan)),axis=1,)max_v=np.nanmax(list(itertools.zip_longest(*maxes_list,fillvalue=np.nan)),axis=1,)# 512 element default extent as documented in `_get_extent_world`min_v=np.nan_to_num(min_v,nan=-0.5)max_v=np.nan_to_num(max_v,nan=511.5)# switch back to original orderreturnmin_v[::-1],max_v[::-1]def_get_extent_world(self,layer_extent_list,augmented=False):"""Extent of layers in world coordinates. Default to 2D image-like with (0, 511) min/ max values if no data is present. Corresponds to image with 512 pixels in each dimension. Returns ------- extent_world : array, shape (2, D) """iflen(self)==0:min_v=np.zeros(self.ndim)max_v=np.full(self.ndim,511.0)# image-like augmented extent is actually expanded by 0.5ifaugmented:min_v-=0.5max_v+=0.5else:extrema=[extent.worldforextentinlayer_extent_list]mins=[e[0]foreinextrema]maxs=[e[1]foreinextrema]min_v,max_v=self._get_min_and_max(mins,maxs)returnnp.vstack([min_v,max_v])@cached_propertydef_step_size(self)->np.ndarray:"""Ideal step size between planes in world coordinates. Computes the best step size that allows all data planes to be sampled if moving through the full range of world coordinates. The current implementation just takes the minimum scale. Returns ------- step_size : array, shape (D,) """returnself._get_step_size([layer.extentforlayerinself])def_step_size_from_scales(self,scales):# Reverse order so last axes of scale with different ndim are alignedscales=[scale[::-1]forscaleinscales]full_scales=list(np.array(list(itertools.zip_longest(*scales,fillvalue=np.nan))))# restore original orderreturnnp.nanmin(full_scales,axis=1)[::-1]def_get_step_size(self,layer_extent_list):iflen(self)==0:returnnp.ones(self.ndim)scales=[extent.stepforextentinlayer_extent_list]returnself._step_size_from_scales(scales)
[docs]defget_extent(self,layers:Iterable[Layer])->Extent:""" Return extent for a given layer list. Extent bounds are inclusive. This function is useful for calculating the extent of a subset of layers when preparing and updating some supplementary layers. For example see the cross Vectors layer in the `multiple_viewer_widget` example. Parameters ---------- layers : list of Layer list of layers for which extent should be calculated Returns ------- extent : Extent extent for selected layers """extent_list=[layer.extentforlayerinlayers]returnExtent(data=None,world=self._get_extent_world(extent_list),step=self._get_step_size(extent_list),)
@cached_propertydefextent(self)->Extent:""" Extent of layers in data and world coordinates. Extent bounds are inclusive. See Layer.extent for a detailed explanation of how extents are calculated. """returnself.get_extent(list(self))@propertydef_ranges(self)->tuple[RangeTuple,...]:"""Get ranges for Dims.range in world coordinates."""ext=self.extentreturntuple(RangeTuple(*x)forxinzip(ext.world[0],ext.world[1],ext.step))@propertydefndim(self)->int:"""Maximum dimensionality of layers. Defaults to 2 if no data is present. Returns ------- ndim : int """returnmax((layer.ndimforlayerinself),default=2)def_link_layers(self,method:str,layers:Optional[Iterable[Union[str,Layer]]]=None,attributes:Iterable[str]=(),):# adding this method here allows us to emit an event when# layers in this group are linked/unlinked. Which is necessary# for updating contextfromnapari.layers.utilsimport_link_layersiflayersisnotNone:layers=[self[x]ifisinstance(x,str)elsexforxinlayers]# type: ignoreelse:layers=selfgetattr(_link_layers,method)(layers,attributes)self.selection.events.changed(added={},removed={})deflink_layers(self,layers:Optional[Iterable[Union[str,Layer]]]=None,attributes:Iterable[str]=(),):returnself._link_layers('link_layers',layers,attributes)defunlink_layers(self,layers:Optional[Iterable[Union[str,Layer]]]=None,attributes:Iterable[str]=(),):returnself._link_layers('unlink_layers',layers,attributes)
[docs]defsave(self,path:str,*,selected:bool=False,plugin:Optional[str]=None,_writer:Optional[WriterContribution]=None,)->list[str]:"""Save all or only selected layers to a path using writer plugins. If ``plugin`` is not provided and only one layer is targeted, then we directly call the corresponding``napari_write_<layer_type>`` hook (see :ref:`single layer writer hookspecs <write-single-layer-hookspecs>`) which will loop through implementations and stop when the first one returns a non-``None`` result. The order in which implementations are called can be changed with the Plugin sorter in the GUI or with the corresponding hook's :meth:`~napari.plugins._hook_callers._HookCaller.bring_to_front` method. If ``plugin`` is not provided and multiple layers are targeted, then we call :meth:`~napari.plugins.hook_specifications.napari_get_writer` which loops through plugins to find the first one that knows how to handle the combination of layers and is able to write the file. If no plugins offer :meth:`~napari.plugins.hook_specifications.napari_get_writer` for that combination of layers then the default :meth:`~napari.plugins.hook_specifications.napari_get_writer` will create a folder and call ``napari_write_<layer_type>`` for each layer using the ``Layer.name`` variable to modify the path such that the layers are written to unique files in the folder. If ``plugin`` is provided and a single layer is targeted, then we call the ``napari_write_<layer_type>`` for that plugin, and if it fails we error. If ``plugin`` is provided and multiple layers are targeted, then we call we call :meth:`~napari.plugins.hook_specifications.napari_get_writer` for that plugin, and if it doesn`t return a ``WriterFunction`` we error, otherwise we call it and if that fails if it we error. Parameters ---------- path : str A filepath, directory, or URL to open. Extensions may be used to specify output format (provided a plugin is available for the requested format). selected : bool Optional flag to only save selected layers. False by default. plugin : str, optional Name of the plugin to use for saving. If None then all plugins corresponding to appropriate hook specification will be looped through to find the first one that can save the data. _writer : WriterContribution, optional private: npe2 specific writer override. Returns ------- list of str File paths of any files that were written. """fromnapari.plugins.ioimportsave_layerslayers=([xforxinselfifxinself.selection]ifselectedelselist(self))ifselected:msg=trans._('No layers selected',deferred=True)else:msg=trans._('No layers to save',deferred=True)ifnotlayers:warnings.warn(msg)return[]returnsave_layers(path,layers,plugin=plugin,_writer=_writer)