[constraint] more robust unicity constraint failures reporting for end-users
Postgres or Sqlserver have limits on the index names (around resp. 64
and 128 characters). Because `logilab.database` encodes the `unique
together` constraint rtypes in the index names, we sometimes get
truncated index names, from which it is impossible to retrieve all
rtypes.
In the long run, the way such index are named should be changed.
In the short term, we try to reduce the end-user confusion resulting
from this design flaw:
* in source/native, the regex filtering ``IntegrityError`` message does
not impose an `_idx` suffix, which indeed may be absent (the result being an
UI message that resembles a catastrophic failure),
* also we avoid including a trailing " (double quote) from the error
message
* in entities/adapters, the well-named ``IUserFriendly`` adapter is made a
bit smarter about how to handle missing rtypes.
* the adapter also always produces a global message explaining the
issue (and the fact that sometimes, the user is not shown all the
relevant info)
* i18n is updated
Closes #2793789
# -*- coding: utf-8 -*-# copyright 2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.# contact http://www.logilab.fr -- mailto:contact@logilab.fr## This program is free software: you can redistribute it and/or modify it under# the terms of the GNU Lesser General Public License as published by the Free# Software Foundation, either version 2.1 of the License, or (at your option)# any later version.## This program is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more# details.## You should have received a copy of the GNU Lesser General Public License along# with this program. If not, see <http://www.gnu.org/licenses/>."""cubicweb-diseasome schema"""fromyams.buildobjsimportEntityType,SubjectRelation,String,IntclassDisease(EntityType):"""Disease entity definition. A Disease entity is characterized by several attributes which are defined by URIs: - a name, which we define as a CubicWeb / Yams String object - a label, also defined as a Yams String - a class degree, defined as a Yams Int (that is, an integer) - a degree, also defined as a Yams Int - size, also defined as an Int - classes, defined as a set containing zero, one or several objects identified by their URIs, that is, objects of type ``ExternalUri`` - subtype_of, defined as a set containing zero, one or several objects of type ``Disease`` - associated_genes, defined as a set containing zero, one or several objects of type ``Gene``, that is, of genes associated to the disease - possible_drugs, defined as a set containing zero, one or several objects, identified by their URIs, that is, of type ``ExternalUri`` - omim and omim_page are identifiers in the OMIM (Online Mendelian Inheritance in Man) database, which contains an inventory of "human genes and genetic phenotypes" (see http://http://www.ncbi.nlm.nih.gov/omim). Given that a disease only has unique omim and omim_page identifiers, when it has them, these attributes have been defined through relations such that for each disease there is at most one omim and one omim_page. Each such identifier is defined through an URI, that is, through an ``ExternalUri`` entity. That is, these relations are of cardinality "?*". For optimization purposes, one might be tempted to defined them as inlined, by setting the ``inlined`` keyword argument to ``True``. - chromosomal_location is also defined through a relation of cardinality "?*", since any disease has at most one chromosomal location associated to it. - same_as is also defined through an URI, and hence through a relation having ``ExternalUri`` entities as objects. For more information on this data set and the data set itself, please consult http://datahub.io/dataset/fu-berlin-diseasome. """# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/namename=String(maxsize=256,fulltextindexed=True)# Corresponds to http://www.w3.org/2000/01/rdf-schema#labellabel=String(maxsize=512,fulltextindexed=True)# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/classDegreeclass_degree=Int()# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/degreedegree=Int()# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/sizesize=Int()#Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/classclasses=SubjectRelation('ExternalUri',cardinality='**')# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/diseaseSubtypeOfsubtype_of=SubjectRelation('Disease',cardinality='**')# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/associatedGeneassociated_genes=SubjectRelation('Gene',cardinality='**')#Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/possibleDrugpossible_drugs=SubjectRelation('ExternalUri',cardinality='**')#Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/omimomim=SubjectRelation('ExternalUri',cardinality='?*',inlined=True)#Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/omimPageomim_page=SubjectRelation('ExternalUri',cardinality='?*',inlined=True)#Corresponds to 'http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/chromosomalLocation'chromosomal_location=SubjectRelation('ExternalUri',cardinality='?*',inlined=True)#Corresponds to http://www.w3.org/2002/07/owl#sameAssame_as=SubjectRelation('ExternalUri',cardinality='**')classGene(EntityType):"""Gene entity defintion. A gene is characterized by the following attributes: - label, defined through a Yams String. - bio2rdf_symbol, also defined as a Yams String, since it is just an identifier. - gene_id is an URI identifying a gene, hence it is defined as a relation with an ``ExternalUri`` object. - a pair of unique identifiers in the HUGO Gene Nomenclature Committee (http://http://www.genenames.org/). They are defined as ``ExternalUri`` entities as well. - same_as is also defined through an URI, and hence through a relation having ``ExternalUri`` entities as objects. """# Corresponds to http://www.w3.org/2000/01/rdf-schema#labellabel=String(maxsize=512,fulltextindexed=True)# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/geneIdgene_id=SubjectRelation('ExternalUri',cardinality='**')# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/hgncIdhgnc_id=SubjectRelation('ExternalUri',cardinality='**')# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/hgncIdPagehgnc_page=SubjectRelation('ExternalUri',cardinality='**')# Corresponds to http://www4.wiwiss.fu-berlin.de/diseasome/resource/# diseasome/bio2rdfSymbolbio2rdf_symbol=String(maxsize=64,fulltextindexed=True)#Corresponds to http://www.w3.org/2002/07/owl#sameAssame_as=SubjectRelation('ExternalUri',cardinality='**')