Class: Twb::Analysis::DataSources::DataSourceFieldsAnalyzer

Inherits:
Object
  • Object
show all
Includes:
TabTool
Defined in:
lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb

Constant Summary collapse

@@fullFileType =

@@csvHeader = [‘Record #’,

 'Workbook',           
 'Workbook Dir',
 'Data Source',
 'Field',
 'Twb Type',
 'Hidden',            # props[:hidden],
 'Type - Column',     # props[:columnField],
 'Type - Calculated', # props[:calculatedField],
 'Type - Db',         # props[:dbField],
 'Type - Mapped',     # props[:mappedField] 
 'Type - MetaData',     # props[:mappedField]  
]

@@csvFileType = ‘TwbDataSourceFields’ @@csvFileName = @@csvFileType + ‘.csv’

'DataSourceFieldsDetails'
@@fullFileName =
@@fullFileType + '.csv'
@@fullHeader =
['Field #',
 'Workbook',
 'Data Source',
 'Field',
 'Field - source',
 'Field - class',
 'Field - path',
 'Property - Name',
 'Property - Value'
]

Instance Attribute Summary collapse

Attributes included from TabTool

#alerts, #docDir, #docfiles, #funcdoc, #id, #licensed, #logfilename, #logger, #loglevel, #properties, #ttdocdir, #type, #uuid

Class Method Summary collapse

Instance Method Summary collapse

Methods included from TabTool

#addDocFile, #alert, #closeDocFiles, #config, #docFile, #docFileMaxNameLen, #docfilesdoc, #docfilesdocto_s, #emit, #emitCSV, #finis, #hasConfig, #init, #initCSV, #initDocDir, #initLogger, #license=, #licensed?, #loadConfig

Constructor Details

#initialize(**args) ⇒ DataSourceFieldsAnalyzer

@@techFileType = ‘TwbDataSourceFieldsTech’ @@techFileName = @@techFileType + ‘.csv’ @@techHeader = [‘Field #’,

 'Workbook',           
 'Workbook Dir',
 'Data Source',
 'Field',
 'Field Type',
 'Property - Name',
 'Property - Value'
]


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
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 71

def initialize(**args)
  @args      = args
  # puts "@args: #{@args}"
  @recordDir = !@args.nil? && @args[:recordDir] == true
  @ttdocdir  = @args[:ttdocdir]
  @csvAdd    = args[:csvMode] == :add
  @csvMode   = @csvAdd ? 'a' : 'w'
  init
  @funcdoc   = {:class=>self.class, :blurb=>'Analyze Data Source Fields', :description=>'Documents Data Source fields, with (some) technical information.',}
  #--
  docFileName = docFile(@@fullFileName)
  @csvFile    = CSV.open( docFileName,@csvMode)
  unless @csvAdd
    if @recordDir
      @csvFile  << @@fullHeader + ['Workbook Dir']
    else
      @csvFile  << @@fullHeader
    end
  end
  addDocFile @csvFile, docFileName, "Workbooks, Data Sources, and Fields."
  #--
  # --
  @dsCount     = 0
  @recNum      = 0
end

Instance Attribute Details

#csvFileNameObject (readonly)

Returns the value of attribute csvFileName.



27
28
29
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 27

def csvFileName
  @csvFileName
end

#csvRecordsObject (readonly)

Returns the value of attribute csvRecords.



27
28
29
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 27

def csvRecords
  @csvRecords
end

#dsCountObject (readonly)

Returns the value of attribute dsCount.



28
29
30
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 28

def dsCount
  @dsCount
end

#fieldsCountObject (readonly)

Returns the value of attribute fieldsCount.



28
29
30
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 28

def fieldsCount
  @fieldsCount
end

Class Method Details

.csvFileNaameObject



121
122
123
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 121

def self.csvFileNaame
  @@csvFileName
end

.csvFileTypeObject



117
118
119
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 117

def self.csvFileType
  @@csvFileType
end

.csvHeaderObject



113
114
115
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 113

def self.csvHeader
  @@csvHeader
end

Instance Method Details

#initializeXObject



97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 97

def initializeX
  # @csvFile     = CSV.open(@@csvFileName,'w')
  # @csvFile     << @@csvHeader
  # @csvRecords  = Set.new
  # puts "Opened: #{[email protected]?} - #{@@csvFileName}"
  # --
  @csvFileFull = CSV.open(@@fullFileName,'w')
  @csvFileFull << @@fullHeader
  puts "Opened: #{!@csvFileFull.nil?} - #{@@fullFileName} "
  # --
  # @csvFileTech = CSV.open(@@techFileName,'w')
  # @csvFileTech << @@techHeader
  # puts "Opened: #{[email protected]?} - #{@@techFileName}"
  # --
end

#metricsObject

def processTwb twb



181
182
183
184
185
186
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 181

def metrics
  {
    '# of Data Sources'        => @dsCount,
    '# of Records'             => @recNum
  }
end

#processTWB(twb) ⇒ Object

Raises:

  • (ArgumentError)


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
# File 'lib/twb/analysis/datasources/datasourcefieldsanalyzer.rb', line 125

def processTWB twb
  @twb = nil
  @twb         = twb                    if twb.instance_of? Twb::Workbook
  @twb         = Twb::Workbook.new(twb) if twb.instance_of? String
  raise ArgumentError.new("ERROR in Workbok processing: '#{twb}' must be a Workbook (class) or the name of a Workbook (String), is a #{twb.class} \n ") unless @twb.is_a? Twb::Workbook
  # --
  dss = @twb.datasources
  @fieldCnt = 0
  dss.each do |ds|
    @dsname = ds.uiname
    # puts "\n    -- #{ds.uiname} "
    # tables = Set.new
    # fields = {}
    @dsCount += 1
    fclasses = Set.new
    ds.localFields.each do |field|
      recordFieldFull field, :local
      # recordField( fields, field, {:type=>:local,:columnField=>true,:hidden=>field.hidden} )
      # emitTech( ds,     field.uiname, 'Local', field.properties)
      # recordTech( field, 'LocalA')
    end
    ds.columnFields.each do |field|
      recordFieldFull field, :column
      # recordField( fields, field, {:type=>'column',:columnField=>true,:hidden=>field.hidden} )
      # emitTech( ds,     field.uiname, 'Column', field.properties)
      # recordTech( field, 'ColumnA')
    end
    ds.calculatedFields.each do |field|
      recordFieldFull field, :calc
      # puts "WWW #{field.class}  :: #{field} ::prop:: #{field.properties.class} :: #{field.properties}"
      # recordField( fields, field, {:type=>'calc',:calculatedField=>true,:hidden=>field.hidden} )
      # emitTech( ds,     field.uiname, 'Calculated', field.properties)
      # recordTech( field, 'CalcA')
    end
    ds.metadataFields.each do |field|
      recordFieldFull field, :metadata
      # recordField( fields, field,   {:type=>'metadata',:metadataField=>true} )
      # emitTech( ds,     field.uiname, 'MetaData', field.properties)
      # recordTech( field, 'MetadataA')
    end
    ds.dbFields.each do |field|
      recordFieldFull field, :db
      # recordField( fields, field,    {:type=>'database',:dbField=>true} )
      # emitTech( ds,     field.uiname, 'Db', field.properties)
      # recordTech( field, 'DbA')
    end
    ds.mappedFields.each do |field|
      recordFieldFull field, :mapped
      # recordField( fields, field,    {:type=>'mapped',:mappedField=>true} )
      # emitTech( ds,     field.uiname, 'Mapped', field.properties)
      # recordTech( field, 'MappedA')
    end
    # emitFields(fields)
  end
end