本文整理汇总了Python中cybox.common.PatternFieldGroup类的典型用法代码示例。如果您正苦于以下问题:Python PatternFieldGroup类的具体用法?Python PatternFieldGroup怎么用?Python PatternFieldGroup使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PatternFieldGroup类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: to_dict
def to_dict(self):
if self.is_plain():
return self.serialized_value
attr_dict = {}
if self.value is not None:
attr_dict['value'] = self.serialized_value
if self.datatype is not None and (self.datatype != self.default_datatype):
attr_dict['datatype'] = self.datatype
if self.id_ is not None:
attr_dict['id'] = self.id_
if self.idref is not None:
attr_dict['idref'] = self.idref
if self.appears_random is not None:
attr_dict['appears_random'] = self.appears_random
if self.is_obfuscated is not None:
attr_dict['is_obfuscated'] = self.is_obfuscated
if self.obfuscation_algorithm_ref is not None:
attr_dict['obfuscation_algorithm_ref'] = self.obfuscation_algorithm_ref
if self.is_defanged is not None:
attr_dict['is_defanged'] = self.is_defanged
if self.defanging_algorithm_ref is not None:
attr_dict['defanging_algorithm_ref'] = self.defanging_algorithm_ref
if self.refanging_transform_type is not None:
attr_dict['refanging_transform_type'] = self.refanging_transform_type
if self.refanging_transform is not None:
attr_dict['refanging_transform'] = self.refanging_transform
if self.observed_encoding is not None:
attr_dict['observed_encoding'] = self.observed_encoding
PatternFieldGroup.to_dict(self, attr_dict)
return attr_dict
示例2: to_obj
def to_obj(self):
attr_obj = self._binding_class()
attr_obj.set_valueOf_(normalize_to_xml(self.serialized_value))
# For now, don't output the datatype, as it is not required and is
# usually not needed, as it can be inferred from the context.
#attr_obj.set_datatype(self.datatype)
if self.id_ is not None:
attr_obj.set_id(self.id_)
if self.idref is not None:
attr_obj.set_idref(self.idref)
if self.appears_random is not None:
attr_obj.set_appears_random(self.appears_random)
if self.is_obfuscated is not None:
attr_obj.set_is_obfuscated(self.is_obfuscated)
if self.obfuscation_algorithm_ref is not None:
attr_obj.set_obfuscation_algorithm_ref(self.obfuscation_algorithm_ref)
if self.is_defanged is not None:
attr_obj.set_is_defanged(self.is_defanged)
if self.defanging_algorithm_ref is not None:
attr_obj.set_defanging_algorithm_ref(self.defanging_algorithm_ref)
if self.refanging_transform_type is not None:
attr_obj.set_refanging_transform_type(self.refanging_transform_type)
if self.refanging_transform is not None:
attr_obj.set_refanging_transform(self.refanging_transform)
#Datatype output logic
if self._force_datatype:
attr_obj.set_datatype(self.datatype)
else:
attr_obj.set_datatype(None)
PatternFieldGroup.to_obj(self, attr_obj)
return attr_obj
示例3: _populate_from_dict
def _populate_from_dict(self, attr_dict):
# If this attribute is "plain", use it as the value and assume the
# datatype was set correctly by the constructor of the particular
# BaseProperty Subclass.
if not isinstance(attr_dict, dict):
self.value = attr_dict
else:
# This key should always be present
self.value = attr_dict.get('value')
# This defaults to False if missing
self._force_datatype = attr_dict.get('force_datatype', False)
# 'None' is fine if these keys are missing
self.id_ = attr_dict.get('id')
self.idref = attr_dict.get('idref')
self.appears_random = attr_dict.get('appears_random')
self.datatype = attr_dict.get('datatype')
self.is_obfuscated = attr_dict.get('is_obfuscated')
self.obfuscation_algorithm_ref = attr_dict.get('obfuscation_algorithm_ref')
self.is_defanged = attr_dict.get('is_defanged')
self.defanging_algorithm_ref = attr_dict.get('defanging_algorithm_ref')
self.refanging_transform_type = attr_dict.get('refanging_transform_type')
self.refanging_transform = attr_dict.get('refanging_transform')
self.observed_encoding = attr_dict.get('observed_encoding')
PatternFieldGroup.from_dict(attr_dict, self)
示例4: to_dict
def to_dict(self):
if self.is_plain():
return self.serialized_value
attr_dict = {}
if self.value is not None:
attr_dict['value'] = self.serialized_value
# For now, don't output the datatype, as it is not required and is
# usually not needed, as it can be inferred from the context.
#if self.datatype is not None:
# attr_dict['datatype'] = self.datatype
if self.id_ is not None:
attr_dict['id'] = self.id_
if self.idref is not None:
attr_dict['idref'] = self.idref
if self.appears_random is not None:
attr_dict['appears_random'] = self.appears_random
if self.is_obfuscated is not None:
attr_dict['is_obfuscated'] = self.is_obfuscated
if self.obfuscation_algorithm_ref is not None:
attr_dict['obfuscation_algorithm_ref'] = self.obfuscation_algorithm_ref
if self.is_defanged is not None:
attr_dict['is_defanged'] = self.is_defanged
if self.defanging_algorithm_ref is not None:
attr_dict['defanging_algorithm_ref'] = self.defanging_algorithm_ref
if self.refanging_transform_type is not None:
attr_dict['refanging_transform_type'] = self.refanging_transform_type
if self.refanging_transform is not None:
attr_dict['refanging_transform'] = self.refanging_transform
PatternFieldGroup.to_dict(self, attr_dict)
return attr_dict
示例5: to_obj
def to_obj(self):
vocab_obj = common_binding.ControlledVocabularyStringType()
vocab_obj.set_valueOf_(normalize_to_xml(self.value, self.delimiter))
vocab_obj.set_xsi_type(self.xsi_type)
if self.vocab_name is not None:
vocab_obj.set_vocab_name(self.vocab_name)
if self.vocab_reference is not None:
vocab_obj.set_vocab_reference(self.vocab_reference)
PatternFieldGroup.to_obj(self, vocab_obj)
return vocab_obj
示例6: _populate_from_obj
def _populate_from_obj(self, attr_obj):
self.value = denormalize_from_xml(attr_obj.get_valueOf_())
self.id_ = attr_obj.get_id()
self.idref = attr_obj.get_idref()
self.datatype = attr_obj.get_datatype()
self.appears_random = attr_obj.get_appears_random()
self.is_obfuscated = attr_obj.get_is_obfuscated()
self.obfuscation_algorithm_ref = attr_obj.get_obfuscation_algorithm_ref()
self.is_defanged = attr_obj.get_is_defanged()
self.defanging_algorithm_ref = attr_obj.get_defanging_algorithm_ref()
self.refanging_transform_type = attr_obj.get_refanging_transform_type()
self.refanging_transform = attr_obj.get_refanging_transform()
PatternFieldGroup.from_obj(attr_obj, self)
示例7: from_obj
def from_obj(cls, vocab_obj):
if not vocab_obj:
return None
vocab_str = cls()
# xsi_type should be set automatically by the class's constructor.
vocab_str.value = denormalize_from_xml(vocab_obj.get_valueOf_())
vocab_str.vocab_name = vocab_obj.get_vocab_name()
vocab_str.vocab_reference = vocab_obj.get_vocab_reference()
vocab_str.xsi_type = vocab_obj.get_xsi_type()
PatternFieldGroup.from_obj(vocab_obj, vocab_str)
return vocab_str
示例8: __eq__
def __eq__(self, other):
# None-type checking
if not other:
return False
# It is possible to compare a Property to a single value if
# the Property defines only the "value" property.
if not isinstance(other, BaseProperty) and self.is_plain():
return self.value == other
return (
self.value == other.value and
self.id_ == other.id_ and
self.idref == other.idref and
self.datatype == other.datatype and
self.appears_random == other.appears_random and
self.is_obfuscated == other.is_obfuscated and
self.obfuscation_algorithm_ref == other.obfuscation_algorithm_ref and
self.is_defanged == other.is_defanged and
self.defanging_algorithm_ref == other.defanging_algorithm_ref and
self.refanging_transform_type == other.refanging_transform_type and
self.refanging_transform == other.refanging_transform and
self.observed_encoding == other.observed_encoding and
PatternFieldGroup._conditions_equal(self, other) and
self.bit_mask == other.bit_mask and
self.pattern_type == other.pattern_type and
self.regex_syntax == other.regex_syntax and
self.is_case_sensitive == other.is_case_sensitive and
self.has_changed == other.has_changed and
self.trend == other.trend
)
示例9: is_plain
def is_plain(self):
"""Whether the Property can be represented as a single value.
The `datatype` can be inferred by the particular BaseProperty subclass,
so if `datatype` and `value` are the only non-None properties, the
BaseProperty can be represented by a single value rather than a
dictionary. This makes the JSON representation simpler without losing
any data fidelity.
"""
return (
# ignore value
self.id_ is None and
self.idref is None and
# ignore datatype
self.appears_random is None and
self.is_obfuscated is None and
self.obfuscation_algorithm_ref is None and
self.is_defanged is None and
self.defanging_algorithm_ref is None and
self.refanging_transform_type is None and
self.refanging_transform is None and
self.observed_encoding is None and
PatternFieldGroup.is_plain(self)
)
示例10: to_obj
def to_obj(self):
if not self.is_valid():
raise ValueError("Vocab being used has not been specified")
vocab_obj = common_binding.ControlledVocabularyStringType()
vocab_obj.set_valueOf_(normalize_to_xml(self.value, self.delimiter))
vocab_obj.set_xsi_type(self.xsi_type)
if self.vocab_name is not None:
vocab_obj.set_vocab_name(self.vocab_name)
if self.vocab_reference is not None:
vocab_obj.set_vocab_reference(self.vocab_reference)
PatternFieldGroup.to_obj(self, vocab_obj)
return vocab_obj
示例11: to_obj
def to_obj(self, return_obj=None, ns_info=None):
self._collect_ns_info(ns_info)
if not return_obj:
return_obj = self._binding_class()
return_obj.valueOf_ = normalize_to_xml(self.value, self.delimiter)
return_obj.xsi_type = self.xsi_type
if self.vocab_name is not None:
return_obj.vocab_name = self.vocab_name
if self.vocab_reference is not None:
return_obj.vocab_reference = self.vocab_reference
PatternFieldGroup.to_obj(self, return_obj=return_obj, ns_info=ns_info)
return return_obj
示例12: to_dict
def to_dict(self):
if self.is_plain():
return self.value
vocab_dict = {}
if self.value is not None:
vocab_dict['value'] = self.value
if self.xsi_type:
vocab_dict['xsi:type'] = self.xsi_type
if self.vocab_name is not None:
vocab_dict['vocab_name'] = self.vocab_name
if self.vocab_reference is not None:
vocab_dict['vocab_reference'] = self.vocab_reference
PatternFieldGroup.to_dict(self, vocab_dict)
return vocab_dict
示例13: to_obj
def to_obj(self, return_obj=None, ns_info=None):
if not self.is_valid():
raise ValueError("Vocab being used has not been specified")
self._collect_ns_info(ns_info)
vocab_obj = common_binding.ControlledVocabularyStringType()
vocab_obj.valueOf_ = normalize_to_xml(self.value, self.delimiter)
vocab_obj.xsi_type = self.xsi_type
if self.vocab_name is not None:
vocab_obj.vocab_name = self.vocab_name
if self.vocab_reference is not None:
vocab_obj.vocab_reference = self.vocab_reference
PatternFieldGroup.to_obj(self, return_obj=vocab_obj, ns_info=ns_info)
return vocab_obj
示例14: from_dict
def from_dict(cls, vocab_dict):
if not vocab_dict:
return None
vocab_str = cls()
# xsi_type should be set automatically by the class's constructor.
# In case this is a "plain" string, just set it.
if not isinstance(vocab_dict, dict):
vocab_str.value = vocab_dict
else:
vocab_str.xsi_type = vocab_dict.get('xsi:type', cls._XSI_TYPE)
vocab_str.value = vocab_dict.get('value')
vocab_str.vocab_name = vocab_dict.get('vocab_name')
vocab_str.vocab_reference = vocab_dict.get('vocab_reference')
PatternFieldGroup.from_dict(vocab_dict, vocab_str)
return vocab_str
示例15: from_obj
def from_obj(cls, vocab_obj):
if not vocab_obj:
return None
vocab_str = cls()
# xsi_type should be set automatically by the class's constructor.
vocab_str.vocab_name = vocab_obj.vocab_name
vocab_str.vocab_reference = vocab_obj.vocab_reference
vocab_str.xsi_type = vocab_obj.xsi_type
PatternFieldGroup.from_obj(vocab_obj, vocab_str)
# We need to check for a non-default delimiter before trying to parse
# the value.
vocab_str.value = denormalize_from_xml(vocab_obj.valueOf_,
vocab_str.delimiter)
return vocab_str