Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getObject() and getExternalInfo() load externalInfo #453

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/omero/gateway/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ def _getQueryString(cls, opts=None):
"""
query = ("select obj from %s obj "
"join fetch obj.details.owner as owner "
"left outer join fetch obj.details.externalInfo "
"join fetch obj.details.creationEvent" % cls.OMERO_CLASS)

params = omero.sys.ParametersI()
Expand Down Expand Up @@ -1333,6 +1334,26 @@ def getName(self):
else:
return None

def getExternalInfo(self):
"""
Gets the object's details.externalInfo

:return: omero.model.ExternalInfo object
"""
extinfo = self.getDetails()._externalInfo
if extinfo is not None and not extinfo._loaded:
params = omero.sys.ParametersI()
params.addId(extinfo.id)
query = """
select e from ExternalInfo as e
where e.id = :id
"""
queryService = self._conn.getQueryService()
extinfo = queryService.findByQuery(query, params, {"omero.group": "-1"})
# cache the result
self._obj._details._externalInfo = extinfo
return extinfo

def getDescription(self):
"""
Gets this object description
Expand Down
50 changes: 49 additions & 1 deletion src/omero/plugins/obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,49 @@ def save_and_return(self, ctx):
self.tx_state.set_value(proxy, dest=self.tx_cmd.dest)


class ExtInfoSetTxAction(NonFieldTxAction):

def on_go(self, ctx, args):
# ['ext-info-set', 'Project:302', 'lsid', 'entityType', 'entityId']
argc = len(self.tx_cmd.arg_list)
if argc not in [3, 4, 5]:
ctx.die(345,
"usage: ext-info-set OBJ lsid [entityType] [entityId]")
lsid = self.tx_cmd.arg_list[2]

# lookup externalInfo for default values (NB: it is immutable)
extinfo = None
details = self.obj.getDetails()
if details and details._externalInfo:
extinfo = self.query.get("ExternalInfo",
details._externalInfo._id.val, {"omero.group": "-1"})

entity_id = 3
if argc == 5:
entity_id = int(self.tx_cmd.arg_list[4])
elif extinfo is not None:
entity_id = extinfo.entityId.val

if argc > 3:
entity_type = self.tx_cmd.arg_list[3]
elif extinfo is not None:
entity_type = extinfo.entityType.val
else:
ctx.die(346, "usage: ext-info-set OBJ lsid entityType [entityId]"
" No existing entityType found")

from omero.model import ExternalInfoI
from omero.rtypes import rstring, rlong

extinfo = ExternalInfoI()
setattr(extinfo, "lsid", rstring(lsid))
setattr(extinfo, "entityId", rlong(entity_id))
setattr(extinfo, "entityType", rstring(entity_type))
self.obj.details.externalInfo = extinfo

self.save_and_return(ctx)


class MapSetTxAction(NonFieldTxAction):

def on_go(self, ctx, args):
Expand Down Expand Up @@ -526,6 +569,8 @@ class ObjControl(BaseControl):
$ omero obj list-get MapAnnotation:456 mapValue 0
(foo,bar)

$ omero obj ext-info-set Image:12 myLsid myEntityType

Bash examples:

$ project=$(omero obj new Project name='my Project')
Expand All @@ -546,7 +591,8 @@ def _configure(self, parser):
"command", nargs="?",
choices=("new", "update", "null",
"map-get", "map-set",
"get", "list-get"),
"get", "list-get",
"ext-info-set"),
help="operation to be performed")
parser.add_argument(
"Class", nargs="?",
Expand Down Expand Up @@ -603,6 +649,8 @@ def parse(self, tx_state, arg_list=None, line=None):
return MapSetTxAction(tx_state, tx_cmd)
elif tx_cmd.action == "map-get":
return MapGetTxAction(tx_state, tx_cmd)
elif tx_cmd.action == "ext-info-set":
return ExtInfoSetTxAction(tx_state, tx_cmd)
elif tx_cmd.action == "null":
return NullTxAction(tx_state, tx_cmd)
elif tx_cmd.action == "get":
Expand Down