Beispiel #1
0
 def tuples(self, options):
    commons.log('Tuples analysis' + ' -- ' + '"' + self.prefix + '"')
    tag=['tuples', 'profile', options.use_max_depth, options.max_depth]
    self._execute(tag, options.as_list + commons.agent_tuples_options() + self._get_program_options())
    tag=['tuples', 'analysis', options.use_max_depth, options.max_depth]
    self._execute(tag, options.as_list + commons.analyis_options() + self._get_tuples_analysis_class())
    commons.log('Tuples analysis' + ' -- ' + '"' + self.prefix + '"' + ' -- ' + 'DONE.')
Beispiel #2
0
 def fields(self):
    commons.log('Field analysis' + ' -- ' + '"' + self.prefix + '"')
    tag=['fields', 'profile', None, None]
    self._execute(tag, commons.agent_field_options() + self._get_program_options())
    tag=['fields', 'analysis', None, None]
    self._execute(tag, commons.analyis_options() + self._get_fields_analysis_class())
    commons.log('Field analysis' + ' -- ' + '"' + self.prefix + '"' + ' -- ' + 'DONE.')
Beispiel #3
0
 def tuples(self, options):
     commons.log('Tuples analysis' + ' -- ' + '"' + self.prefix + '"')
     tag = ['tuples', 'profile', options.use_max_depth, options.max_depth]
     self._execute(
         tag, options.as_list + commons.agent_tuples_options() +
         self._get_program_options())
     tag = ['tuples', 'analysis', options.use_max_depth, options.max_depth]
     self._execute(
         tag, options.as_list + commons.analyis_options() +
         self._get_tuples_analysis_class())
     commons.log('Tuples analysis' + ' -- ' + '"' + self.prefix + '"' +
                 ' -- ' + 'DONE.')
Beispiel #4
0
 def fields(self):
     commons.log('Field analysis' + ' -- ' + '"' + self.prefix + '"')
     tag = ['fields', 'profile', None, None]
     self._execute(
         tag,
         commons.agent_field_options() + self._get_program_options())
     tag = ['fields', 'analysis', None, None]
     self._execute(
         tag,
         commons.analyis_options() + self._get_fields_analysis_class())
     commons.log('Field analysis' + ' -- ' + '"' + self.prefix + '"' +
                 ' -- ' + 'DONE.')