-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathnode.py
1319 lines (1024 loc) · 54 KB
/
node.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=too-many-lines
"""Package for node ORM classes."""
import copy
import importlib
import warnings
from aiida.common import exceptions
from aiida.common.escaping import sql_string_match
from aiida.common.hashing import make_hash, _HASH_EXTRA_KEY
from aiida.common.lang import classproperty, type_check
from aiida.common.links import LinkType
from aiida.common.warnings import AiidaDeprecationWarning
from aiida.manage.manager import get_manager
from aiida.orm.utils.links import LinkManager, LinkTriple
from aiida.orm.utils.repository import Repository
from aiida.orm.utils.node import AbstractNodeMeta, validate_attribute_extra_key
from ..comments import Comment
from ..computers import Computer
from ..entities import Entity
from ..entities import Collection as EntityCollection
from ..querybuilder import QueryBuilder
from ..users import User
__all__ = ('Node',)
_NO_DEFAULT = tuple()
class Node(Entity, metaclass=AbstractNodeMeta):
"""
Base class for all nodes in AiiDA.
Stores attributes starting with an underscore.
Caches files and attributes before the first save, and saves everything
only on store(). After the call to store(), attributes cannot be changed.
Only after storing (or upon loading from uuid) extras can be modified
and in this case they are directly set on the db.
In the plugin, also set the _plugin_type_string, to be set in the DB in
the 'type' field.
"""
# pylint: disable=too-many-public-methods
class Collection(EntityCollection):
"""The collection of AuthInfo entries."""
def delete(self, node_id):
"""Delete a `Node` from the collection with the given id
:param node_id: the node id
"""
node = self.get(id=node_id)
if not node.is_stored:
return
if node.get_outgoing().all():
raise exceptions.InvalidOperation('cannot delete Node<{}> because it has output links'.format(node.pk))
repository = node._repository # pylint: disable=protected-access
self._backend.nodes.delete(node_id)
repository.erase(force=True)
# This will be set by the metaclass call
_logger = None
# A tuple of attribute names that can be updated even after node is stored
# Requires Sealable mixin, but needs empty tuple for base class
_updatable_attributes = tuple()
# A tuple of attribute names that will be ignored when creating the hash.
_hash_ignored_attributes = tuple()
# Flag that determines whether the class can be cached.
_cachable = True
# Base path within the repository where to put objects by default
_repository_base_path = 'path'
# Flag that determines whether the class can be stored.
_storable = False
_unstorable_message = 'only Data, WorkflowNode, CalculationNode or their subclasses can be stored'
# These are to be initialized in the `initialization` method
_incoming_cache = None
_repository = None
@classmethod
def from_backend_entity(cls, backend_entity):
entity = super().from_backend_entity(backend_entity)
return entity
def __init__(self, backend=None, user=None, computer=None, **kwargs):
backend = backend or get_manager().get_backend()
if computer and not computer.is_stored:
raise ValueError('the computer is not stored')
computer = computer.backend_entity if computer else None
user = user.backend_entity if user else User.objects(backend).get_default()
if user is None:
raise ValueError('the user cannot be None')
backend_entity = backend.nodes.create(
node_type=self.class_node_type, user=user.backend_entity, computer=computer, **kwargs
)
super().__init__(backend_entity)
def __repr__(self):
return '<{}: {}>'.format(self.__class__.__name__, str(self))
def __str__(self):
if not self.is_stored:
return 'uuid: {} (unstored)'.format(self.uuid)
return 'uuid: {} (pk: {})'.format(self.uuid, self.pk)
def __copy__(self):
"""Copying a Node is not supported in general, but only for the Data sub class."""
raise exceptions.InvalidOperation('copying a base Node is not supported')
def __deepcopy__(self, memo):
"""Deep copying a Node is not supported in general, but only for the Data sub class."""
raise exceptions.InvalidOperation('deep copying a base Node is not supported')
def initialize(self):
"""
Initialize internal variables for the backend node
This needs to be called explicitly in each specific subclass implementation of the init.
"""
super().initialize()
# A cache of incoming links represented as a list of LinkTriples instances
self._incoming_cache = list()
# Calls the initialisation from the RepositoryMixin
self._repository = Repository(uuid=self.uuid, is_stored=self.is_stored, base_path=self._repository_base_path)
def _validate(self):
"""Check if the attributes and files retrieved from the database are valid.
Must be able to work even before storing: therefore, use the `get_attr` and similar methods that automatically
read either from the DB or from the internal attribute cache.
For the base class, this is always valid. Subclasses will reimplement this.
In the subclass, always call the super()._validate() method first!
"""
# pylint: disable=no-self-use
return True
@classproperty
def class_node_type(cls):
"""Returns the node type of this node (sub) class."""
# pylint: disable=no-self-argument,no-member
return cls._plugin_type_string
@property
def logger(self):
"""Return the logger configured for this Node.
:return: Logger object
"""
return self._logger
@property
def uuid(self):
"""Return the node UUID.
:return: the string representation of the UUID
:rtype: str
"""
return self.backend_entity.uuid
@property
def node_type(self):
"""Return the node type.
:return: the node type
"""
return self.backend_entity.node_type
@property
def process_type(self):
"""Return the node process type.
:return: the process type
"""
return self.backend_entity.process_type
@process_type.setter
def process_type(self, value):
"""Set the node process type.
:param value: the new value to set
"""
self.backend_entity.process_type = value
@property
def label(self):
"""Return the node label.
:return: the label
"""
return self.backend_entity.label
@label.setter
def label(self, value):
"""Set the label.
:param value: the new value to set
"""
self.backend_entity.label = value
@property
def description(self):
"""Return the node description.
:return: the description
"""
return self.backend_entity.description
@description.setter
def description(self, value):
"""Set the description.
:param value: the new value to set
"""
self.backend_entity.description = value
@property
def computer(self):
"""Return the computer of this node.
:return: the computer or None
:rtype: `Computer` or None
"""
if self.backend_entity.computer:
return Computer.from_backend_entity(self.backend_entity.computer)
return None
@computer.setter
def computer(self, computer):
"""Set the computer of this node.
:param computer: a `Computer`
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('cannot set the computer on a stored node')
type_check(computer, Computer, allow_none=True)
if computer is not None:
computer = computer.backend_entity
self.backend_entity.computer = computer
@property
def user(self):
"""Return the user of this node.
:return: the user
:rtype: `User`
"""
return User.from_backend_entity(self.backend_entity.user)
@user.setter
def user(self, user):
"""Set the user of this node.
:param user: a `User`
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('cannot set the user on a stored node')
type_check(user, User)
self.backend_entity.user = user.backend_entity
@property
def ctime(self):
"""Return the node ctime.
:return: the ctime
"""
return self.backend_entity.ctime
@property
def mtime(self):
"""Return the node mtime.
:return: the mtime
"""
return self.backend_entity.mtime
@property
def attributes(self):
"""Return the complete attributes dictionary.
.. warning:: While the node is unstored, this will return references of the attributes on the database model,
meaning that changes on the returned values (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned
attributes will be a deep copy and mutations of the database attributes will have to go through the
appropriate set methods. Therefore, once stored, retrieving a deep copy can be a heavy operation. If you
only need the keys or some values, use the iterators `attributes_keys` and `attributes_items`, or the
getters `get_attribute` and `get_attribute_many` instead.
:return: the attributes as a dictionary
"""
attributes = self.backend_entity.attributes
if self.is_stored:
attributes = copy.deepcopy(attributes)
return attributes
def get_attribute(self, key, default=_NO_DEFAULT):
"""Return the value of an attribute.
.. warning:: While the node is unstored, this will return a reference of the attribute on the database model,
meaning that changes on the returned value (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned
attribute will be a deep copy and mutations of the database attributes will have to go through the
appropriate set methods.
:param key: name of the attribute
:param default: return this value instead of raising if the attribute does not exist
:return: the value of the attribute
:raises AttributeError: if the attribute does not exist and no default is specified
"""
try:
attribute = self.backend_entity.get_attribute(key)
except AttributeError:
if default is _NO_DEFAULT:
raise
attribute = default
if self.is_stored:
attribute = copy.deepcopy(attribute)
return attribute
def get_attribute_many(self, keys):
"""Return the values of multiple attributes.
.. warning:: While the node is unstored, this will return references of the attributes on the database model,
meaning that changes on the returned values (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned
attributes will be a deep copy and mutations of the database attributes will have to go through the
appropriate set methods. Therefore, once stored, retrieving a deep copy can be a heavy operation. If you
only need the keys or some values, use the iterators `attributes_keys` and `attributes_items`, or the
getters `get_attribute` and `get_attribute_many` instead.
:param keys: a list of attribute names
:return: a list of attribute values
:raises AttributeError: if at least one attribute does not exist
"""
attributes = self.backend_entity.get_attribute_many(keys)
if self.is_stored:
attributes = copy.deepcopy(attributes)
return attributes
def set_attribute(self, key, value):
"""Set an attribute to the given value.
:param key: name of the attribute
:param value: value of the attribute
:raise aiida.common.ValidationError: if the key is invalid, i.e. contains periods
:raise aiida.common.ModificationNotAllowed: if the node is stored
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
validate_attribute_extra_key(key)
self.backend_entity.set_attribute(key, value)
def set_attribute_many(self, attributes):
"""Set multiple attributes.
.. note:: This will override any existing attributes that are present in the new dictionary.
:param attributes: a dictionary with the attributes to set
:raise aiida.common.ValidationError: if any of the keys are invalid, i.e. contain periods
:raise aiida.common.ModificationNotAllowed: if the node is stored
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
for key in attributes:
validate_attribute_extra_key(key)
self.backend_entity.set_attribute_many(attributes)
def reset_attributes(self, attributes):
"""Reset the attributes.
.. note:: This will completely clear any existing attributes and replace them with the new dictionary.
:param attributes: a dictionary with the attributes to set
:raise aiida.common.ValidationError: if any of the keys are invalid, i.e. contain periods
:raise aiida.common.ModificationNotAllowed: if the node is stored
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
for key in attributes:
validate_attribute_extra_key(key)
self.backend_entity.reset_attributes(attributes)
def delete_attribute(self, key):
"""Delete an attribute.
:param key: name of the attribute
:raises AttributeError: if the attribute does not exist
:raise aiida.common.ModificationNotAllowed: if the node is stored
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
self.backend_entity.delete_attribute(key)
def delete_attribute_many(self, keys):
"""Delete multiple attributes.
:param keys: names of the attributes to delete
:raises AttributeError: if at least one of the attribute does not exist
:raise aiida.common.ModificationNotAllowed: if the node is stored
"""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
self.backend_entity.delete_attribute_many(keys)
def clear_attributes(self):
"""Delete all attributes."""
if self.is_stored:
raise exceptions.ModificationNotAllowed('the attributes of a stored node are immutable')
self.backend_entity.clear_attributes()
def attributes_items(self):
"""Return an iterator over the attributes.
:return: an iterator with attribute key value pairs
"""
return self.backend_entity.attributes_items()
def attributes_keys(self):
"""Return an iterator over the attribute keys.
:return: an iterator with attribute keys
"""
return self.backend_entity.attributes_keys()
@property
def extras(self):
"""Return the complete extras dictionary.
.. warning:: While the node is unstored, this will return references of the extras on the database model,
meaning that changes on the returned values (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned extras
will be a deep copy and mutations of the database extras will have to go through the appropriate set
methods. Therefore, once stored, retrieving a deep copy can be a heavy operation. If you only need the keys
or some values, use the iterators `extras_keys` and `extras_items`, or the getters `get_extra` and
`get_extra_many` instead.
:return: the extras as a dictionary
"""
extras = self.backend_entity.extras
if self.is_stored:
extras = copy.deepcopy(extras)
return extras
def get_extra(self, key, default=_NO_DEFAULT):
"""Return the value of an extra.
.. warning:: While the node is unstored, this will return a reference of the extra on the database model,
meaning that changes on the returned value (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned extra
will be a deep copy and mutations of the database extras will have to go through the appropriate set
methods.
:param key: name of the extra
:param default: return this value instead of raising if the attribute does not exist
:return: the value of the extra
:raises AttributeError: if the extra does not exist and no default is specified
"""
try:
extra = self.backend_entity.get_extra(key)
except AttributeError:
if default is _NO_DEFAULT:
raise
extra = default
if self.is_stored:
extra = copy.deepcopy(extra)
return extra
def get_extra_many(self, keys):
"""Return the values of multiple extras.
.. warning:: While the node is unstored, this will return references of the extras on the database model,
meaning that changes on the returned values (if they are mutable themselves, e.g. a list or dictionary) will
automatically be reflected on the database model as well. As soon as the node is stored, the returned extras
will be a deep copy and mutations of the database extras will have to go through the appropriate set
methods. Therefore, once stored, retrieving a deep copy can be a heavy operation. If you only need the keys
or some values, use the iterators `extras_keys` and `extras_items`, or the getters `get_extra` and
`get_extra_many` instead.
:param keys: a list of extra names
:return: a list of extra values
:raises AttributeError: if at least one extra does not exist
"""
extras = self.backend_entity.get_extra_many(keys)
if self.is_stored:
extras = copy.deepcopy(extras)
return extras
def set_extra(self, key, value):
"""Set an extra to the given value.
:param key: name of the extra
:param value: value of the extra
:raise aiida.common.ValidationError: if the key is invalid, i.e. contains periods
"""
validate_attribute_extra_key(key)
self.backend_entity.set_extra(key, value)
def set_extra_many(self, extras):
"""Set multiple extras.
.. note:: This will override any existing extras that are present in the new dictionary.
:param extras: a dictionary with the extras to set
:raise aiida.common.ValidationError: if any of the keys are invalid, i.e. contain periods
"""
for key in extras:
validate_attribute_extra_key(key)
self.backend_entity.set_extra_many(extras)
def reset_extras(self, extras):
"""Reset the extras.
.. note:: This will completely clear any existing extras and replace them with the new dictionary.
:param extras: a dictionary with the extras to set
:raise aiida.common.ValidationError: if any of the keys are invalid, i.e. contain periods
"""
for key in extras:
validate_attribute_extra_key(key)
self.backend_entity.reset_extras(extras)
def delete_extra(self, key):
"""Delete an extra.
:param key: name of the extra
:raises AttributeError: if the extra does not exist
"""
self.backend_entity.delete_extra(key)
def delete_extra_many(self, keys):
"""Delete multiple extras.
:param keys: names of the extras to delete
:raises AttributeError: if at least one of the extra does not exist
"""
self.backend_entity.delete_extra_many(keys)
def clear_extras(self):
"""Delete all extras."""
self.backend_entity.clear_extras()
def extras_items(self):
"""Return an iterator over the extras.
:return: an iterator with extra key value pairs
"""
return self.backend_entity.extras_items()
def extras_keys(self):
"""Return an iterator over the extra keys.
:return: an iterator with extra keys
"""
return self.backend_entity.extras_keys()
def list_objects(self, key=None):
"""Return a list of the objects contained in this repository, optionally in the given sub directory.
:param key: fully qualified identifier for the object within the repository
:return: a list of `File` named tuples representing the objects present in directory with the given key
"""
return self._repository.list_objects(key)
def list_object_names(self, key=None):
"""Return a list of the object names contained in this repository, optionally in the given sub directory.
:param key: fully qualified identifier for the object within the repository
:return: a list of `File` named tuples representing the objects present in directory with the given key
"""
return self._repository.list_object_names(key)
def open(self, key, mode='r'):
"""Open a file handle to an object stored under the given key.
:param key: fully qualified identifier for the object within the repository
:param mode: the mode under which to open the handle
"""
return self._repository.open(key, mode)
def get_object(self, key):
"""Return the object identified by key.
:param key: fully qualified identifier for the object within the repository
:return: a `File` named tuple representing the object located at key
"""
return self._repository.get_object(key)
def get_object_content(self, key, mode='r'):
"""Return the content of a object identified by key.
:param key: fully qualified identifier for the object within the repository
"""
return self._repository.get_object_content(key, mode)
def put_object_from_tree(self, path, key=None, contents_only=True, force=False):
"""Store a new object under `key` with the contents of the directory located at `path` on this file system.
.. warning:: If the repository belongs to a stored node, a `ModificationNotAllowed` exception will be raised.
This check can be avoided by using the `force` flag, but this should be used with extreme caution!
:param path: absolute path of directory whose contents to copy to the repository
:param key: fully qualified identifier for the object within the repository
:param contents_only: boolean, if True, omit the top level directory of the path and only copy its contents.
:param force: boolean, if True, will skip the mutability check
:raises aiida.common.ModificationNotAllowed: if repository is immutable and `force=False`
"""
self._repository.put_object_from_tree(path, key, contents_only, force)
def put_object_from_file(self, path, key, mode=None, encoding=None, force=False):
"""Store a new object under `key` with contents of the file located at `path` on this file system.
.. warning:: If the repository belongs to a stored node, a `ModificationNotAllowed` exception will be raised.
This check can be avoided by using the `force` flag, but this should be used with extreme caution!
:param path: absolute path of file whose contents to copy to the repository
:param key: fully qualified identifier for the object within the repository
:param mode: the file mode with which the object will be written
Deprecated: will be removed in `v2.0.0`
:param encoding: the file encoding with which the object will be written
Deprecated: will be removed in `v2.0.0`
:param force: boolean, if True, will skip the mutability check
:raises aiida.common.ModificationNotAllowed: if repository is immutable and `force=False`
"""
# Note that the defaults of `mode` and `encoding` had to be change to `None` from `w` and `utf-8` resptively, in
# order to detect when they were being passed such that the deprecation warning can be emitted. The defaults did
# not make sense and so ignoring them is justified, since the side-effect of this function, a file being copied,
# will continue working the same.
if mode is not None:
warnings.warn('the `mode` argument is deprecated and will be removed in `v2.0.0`', AiidaDeprecationWarning) # pylint: disable=no-member
if encoding is not None:
warnings.warn( # pylint: disable=no-member
'the `encoding` argument is deprecated and will be removed in `v2.0.0`', AiidaDeprecationWarning
)
self._repository.put_object_from_file(path, key, mode, encoding, force)
def put_object_from_filelike(self, handle, key, mode='w', encoding='utf8', force=False):
"""Store a new object under `key` with contents of filelike object `handle`.
.. warning:: If the repository belongs to a stored node, a `ModificationNotAllowed` exception will be raised.
This check can be avoided by using the `force` flag, but this should be used with extreme caution!
:param handle: filelike object with the content to be stored
:param key: fully qualified identifier for the object within the repository
:param mode: the file mode with which the object will be written
:param encoding: the file encoding with which the object will be written
:param force: boolean, if True, will skip the mutability check
:raises aiida.common.ModificationNotAllowed: if repository is immutable and `force=False`
"""
self._repository.put_object_from_filelike(handle, key, mode, encoding, force)
def delete_object(self, key, force=False):
"""Delete the object from the repository.
.. warning:: If the repository belongs to a stored node, a `ModificationNotAllowed` exception will be raised.
This check can be avoided by using the `force` flag, but this should be used with extreme caution!
:param key: fully qualified identifier for the object within the repository
:param force: boolean, if True, will skip the mutability check
:raises aiida.common.ModificationNotAllowed: if repository is immutable and `force=False`
"""
self._repository.delete_object(key, force)
def add_comment(self, content, user=None):
"""Add a new comment.
:param content: string with comment
:param user: the user to associate with the comment, will use default if not supplied
:return: the newly created comment
"""
user = user or User.objects.get_default()
return Comment(node=self, user=user, content=content).store()
def get_comment(self, identifier):
"""Return a comment corresponding to the given identifier.
:param identifier: the comment pk
:raise aiida.common.NotExistent: if the comment with the given id does not exist
:raise aiida.common.MultipleObjectsError: if the id cannot be uniquely resolved to a comment
:return: the comment
"""
return Comment.objects.get(dbnode_id=self.pk, pk=identifier)
def get_comments(self):
"""Return a sorted list of comments for this node.
:return: the list of comments, sorted by pk
"""
return Comment.objects.find(filters={'dbnode_id': self.pk}, order_by=[{'id': 'asc'}])
def update_comment(self, identifier, content):
"""Update the content of an existing comment.
:param identifier: the comment pk
:param content: the new comment content
:raise aiida.common.NotExistent: if the comment with the given id does not exist
:raise aiida.common.MultipleObjectsError: if the id cannot be uniquely resolved to a comment
"""
comment = Comment.objects.get(dbnode_id=self.pk, pk=identifier)
comment.set_content(content)
def remove_comment(self, identifier):
"""Delete an existing comment.
:param identifier: the comment pk
"""
Comment.objects.delete(dbnode_id=self.pk, comment=identifier)
def add_incoming(self, source, link_type, link_label):
"""Add a link of the given type from a given node to ourself.
:param source: the node from which the link is coming
:param link_type: the link type
:param link_label: the link label
:raise TypeError: if `source` is not a Node instance or `link_type` is not a `LinkType` enum
:raise ValueError: if the proposed link is invalid
"""
self.validate_incoming(source, link_type, link_label)
source.validate_outgoing(self, link_type, link_label)
if self.is_stored and source.is_stored:
self.backend_entity.add_incoming(source.backend_entity, link_type, link_label)
else:
self._add_incoming_cache(source, link_type, link_label)
def validate_incoming(self, source, link_type, link_label):
"""Validate adding a link of the given type from a given node to ourself.
This function will first validate the types of the inputs, followed by the node and link types and validate
whether in principle a link of that type between the nodes of these types is allowed.the
Subsequently, the validity of the "degree" of the proposed link is validated, which means validating the
number of links of the given type from the given node type is allowed.
:param source: the node from which the link is coming
:param link_type: the link type
:param link_label: the link label
:raise TypeError: if `source` is not a Node instance or `link_type` is not a `LinkType` enum
:raise ValueError: if the proposed link is invalid
"""
from aiida.orm.utils.links import validate_link
validate_link(source, self, link_type, link_label)
# Check if the proposed link would introduce a cycle in the graph following ancestor/descendant rules
if link_type in [LinkType.CREATE, LinkType.INPUT_CALC, LinkType.INPUT_WORK]:
builder = QueryBuilder().append(
Node, filters={'id': self.pk}, tag='parent').append(
Node, filters={'id': source.pk}, tag='child', with_ancestors='parent') # yapf:disable
if builder.count() > 0:
raise ValueError('the link you are attempting to create would generate a cycle in the graph')
def validate_outgoing(self, target, link_type, link_label): # pylint: disable=unused-argument,no-self-use
"""Validate adding a link of the given type from ourself to a given node.
The validity of the triple (source, link, target) should be validated in the `validate_incoming` call.
This method will be called afterwards and can be overriden by subclasses to add additional checks that are
specific to that subclass.
:param target: the node to which the link is going
:param link_type: the link type
:param link_label: the link label
:raise TypeError: if `target` is not a Node instance or `link_type` is not a `LinkType` enum
:raise ValueError: if the proposed link is invalid
"""
type_check(link_type, LinkType, 'link_type should be a LinkType enum but got: {}'.format(type(link_type)))
type_check(target, Node, 'target should be a `Node` instance but got: {}'.format(type(target)))
def _add_incoming_cache(self, source, link_type, link_label):
"""Add an incoming link to the cache.
.. note: the proposed link is not validated in this function, so this should not be called directly
but it should only be called by `Node.add_incoming`.
:param source: the node from which the link is coming
:param link_type: the link type
:param link_label: the link label
:raise aiida.common.UniquenessError: if the given link triple already exists in the cache
"""
link_triple = LinkTriple(source, link_type, link_label)
if link_triple in self._incoming_cache:
raise exceptions.UniquenessError('the link triple {} is already present in the cache'.format(link_triple))
self._incoming_cache.append(link_triple)
def get_stored_link_triples(
self, node_class=None, link_type=(), link_label_filter=None, link_direction='incoming', only_uuid=False
):
"""Return the list of stored link triples directly incoming to or outgoing of this node.
Note this will only return link triples that are stored in the database. Anything in the cache is ignored.
:param node_class: If specified, should be a class, and it filters only elements of that (subclass of) type
:param link_type: Only get inputs of this link type, if empty tuple then returns all inputs of all link types.
:param link_label_filter: filters the incoming nodes by its link label. This should be a regex statement as
one would pass directly to a QuerBuilder filter statement with the 'like' operation.
:param link_direction: `incoming` or `outgoing` to get the incoming or outgoing links, respectively.
:param only_uuid: project only the node UUID instead of the instance onto the `NodeTriple.node` entries
"""
if not isinstance(link_type, tuple):
link_type = (link_type,)
if link_type and not all([isinstance(t, LinkType) for t in link_type]):
raise TypeError('link_type should be a LinkType or tuple of LinkType: got {}'.format(link_type))
node_class = node_class or Node
node_filters = {'id': {'==': self.id}}
edge_filters = {}
if link_type:
edge_filters['type'] = {'in': [t.value for t in link_type]}
if link_label_filter:
edge_filters['label'] = {'like': link_label_filter}
builder = QueryBuilder()
builder.append(Node, filters=node_filters, tag='main')
node_project = ['uuid'] if only_uuid else ['*']
if link_direction == 'outgoing':
builder.append(
node_class,
with_incoming='main',
project=node_project,
edge_project=['type', 'label'],
edge_filters=edge_filters
)
else:
builder.append(
node_class,
with_outgoing='main',
project=node_project,
edge_project=['type', 'label'],
edge_filters=edge_filters
)
return [LinkTriple(entry[0], LinkType(entry[1]), entry[2]) for entry in builder.all()]
def get_incoming(self, node_class=None, link_type=(), link_label_filter=None, only_uuid=False):
"""Return a list of link triples that are (directly) incoming into this node.
:param node_class: If specified, should be a class or tuple of classes, and it filters only
elements of that specific type (or a subclass of 'type')
:param link_type: If specified should be a string or tuple to get the inputs of this
link type, if None then returns all inputs of all link types.
:param link_label_filter: filters the incoming nodes by its link label.
Here wildcards (% and _) can be passed in link label filter as we are using "like" in QB.
:param only_uuid: project only the node UUID instead of the instance onto the `NodeTriple.node` entries
"""
if not isinstance(link_type, tuple):
link_type = (link_type,)
if self.is_stored:
link_triples = self.get_stored_link_triples(
node_class, link_type, link_label_filter, 'incoming', only_uuid=only_uuid
)
else:
link_triples = []
# Get all cached link triples
for link_triple in self._incoming_cache:
if only_uuid:
link_triple = LinkTriple(link_triple.node.uuid, link_triple.link_type, link_triple.link_label)
if link_triple in link_triples:
raise exceptions.InternalError(
'Node<{}> has both a stored and cached link triple {}'.format(self.pk, link_triple)
)
if not link_type or link_triple.link_type in link_type:
if link_label_filter is not None:
if sql_string_match(string=link_triple.link_label, pattern=link_label_filter):
link_triples.append(link_triple)
else:
link_triples.append(link_triple)
return LinkManager(link_triples)
def get_outgoing(self, node_class=None, link_type=(), link_label_filter=None, only_uuid=False):
"""Return a list of link triples that are (directly) outgoing of this node.
:param node_class: If specified, should be a class or tuple of classes, and it filters only
elements of that specific type (or a subclass of 'type')
:param link_type: If specified should be a string or tuple to get the inputs of this
link type, if None then returns all outputs of all link types.
:param link_label_filter: filters the outgoing nodes by its link label.
Here wildcards (% and _) can be passed in link label filter as we are using "like" in QB.
:param only_uuid: project only the node UUID instead of the instance onto the `NodeTriple.node` entries
"""
link_triples = self.get_stored_link_triples(node_class, link_type, link_label_filter, 'outgoing', only_uuid)
return LinkManager(link_triples)
def has_cached_links(self):
"""Feturn whether there are unstored incoming links in the cache.
:return: boolean, True when there are links in the incoming cache, False otherwise
"""
return bool(self._incoming_cache)
def store_all(self, with_transaction=True, use_cache=None):
"""Store the node, together with all input links.
Unstored nodes from cached incoming linkswill also be stored.
:parameter with_transaction: if False, do not use a transaction because the caller will already have opened one.
"""
if use_cache is not None:
warnings.warn( # pylint: disable=no-member
'the `use_cache` argument is deprecated and will be removed in `v2.0.0`', AiidaDeprecationWarning
)
if self.is_stored:
raise exceptions.ModificationNotAllowed('Node<{}> is already stored'.format(self.id))
# For each node of a cached incoming link, check that all its incoming links are stored
for link_triple in self._incoming_cache:
link_triple.node.verify_are_parents_stored()
for link_triple in self._incoming_cache:
if not link_triple.node.is_stored:
link_triple.node.store(with_transaction=with_transaction)
return self.store(with_transaction)
def store(self, with_transaction=True, use_cache=None): # pylint: disable=arguments-differ
"""Store the node in the database while saving its attributes and repository directory.
After being called attributes cannot be changed anymore! Instead, extras can be changed only AFTER calling
this store() function.
:note: After successful storage, those links that are in the cache, and for which also the parent node is
already stored, will be automatically stored. The others will remain unstored.
:parameter with_transaction: if False, do not use a transaction because the caller will already have opened one.
"""
from aiida.manage.caching import get_use_cache
if use_cache is not None:
warnings.warn( # pylint: disable=no-member
'the `use_cache` argument is deprecated and will be removed in `v2.0.0`', AiidaDeprecationWarning
)