Class: AppAbstract
- Inherits:
-
Object
show all
- Includes:
- CloudmunchService, InsightHelper, Util
- Defined in:
- lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/AppAbstract.rb,
lib/cloudmunch_Ruby_sdk_v2/PluginLoaderAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/PluginLoaderAbstract.rb,
lib/cloudmunch_Ruby_sdk_v2/PluginReporterAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/PluginReporterAbstract.rb
Constant Summary
collapse
- @@config =
nil
Instance Method Summary
collapse
Methods included from Util
getJSONArgs, log, logClose, logInit, logIt, openJSONFile
#createInsight, #createInsightDataStore, #createInsightDataStoreExtract, #createInsightDataStoreExtractAndSaveData, #createInsightReport, #createInsightReportCard, #createInsightReportKeyMetric, #getDataStoreID, #getExtractID, #getInsightDataStoreExtracts, #getInsightDataStores, #getInsightReportCards, #getInsightReportDataTemplateHash, #getInsightReportKeyMetrics, #getInsightReportMetaTemplateHash, #getInsightReportVisualizationMapTemplateHash, #getInsightReports, #getInsights, #getKeyMetricID, #getListOfDatesForADuration, #getReportCardID, #getReportID, #updateInsight, #updateInsightDataStore, #updateInsightDataStoreExtract, #updateInsightReport, #updateInsightReportCard, #updateInsightReportKeyMetric
#deleteCloudmunchData, #deleteKeys, #downloadKeys, #generateServerURL, #getCloudmunchData, #getCloudmunchDataBKUP, getCustomDataContext, #getDataForContext, #getIntegrationWithID, #getResource, http_get, http_post, #parseResponse, putCustomDataContext, #updateCloudmunchData, #updateDataForContext
Constructor Details
#initialize(param = nil) ⇒ AppAbstract
Returns a new instance of AppAbstract.
17
18
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 17
def initialize(param = nil)
end
|
Instance Method Details
#cleanupApp ⇒ Object
94
95
96
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 94
def cleanupApp()
log("INFO", "\nExiting app")
end
|
#createAppContext ⇒ Object
56
57
58
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 56
def createAppContext()
@appContext = AppContext.new(@var_input)
end
|
#getAppContext ⇒ Object
60
61
62
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 60
def getAppContext()
return @appContext
end
|
#getCloudmunchContext(context) ⇒ Object
63
64
65
66
67
68
69
|
# File 'lib/cloudmunch_Ruby_sdk_v2/PluginLoaderAbstract.rb', line 63
def getCloudmunchContext(context)
begin
return @@config[context+"_context"]
rescue
return false
end
end
|
#getCloudmunchService ⇒ Object
def getCloudmunchContext(context)
begin
return @@config[context+"_context"]
rescue
return false
end
end
72
73
74
75
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 72
def getCloudmunchService()
@cloudmunchservice = self.extend(CloudmunchService)
return @cloudmunchservice
end
|
#getInsightHelper ⇒ Object
77
78
79
80
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 77
def getInsightHelper()
@insightHelper = self.extend(InsightHelper)
return @insightHelper
end
|
#getIntegrationDetails(param = nil) ⇒ Object
82
83
84
85
86
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 82
def getIntegrationDetails(param = nil)
serviceProvider = ServiceProvider.new(@json_input["providername"])
serviceProvider.load_data(@integration_input)
return serviceProvider
end
|
#getJSONArgs ⇒ Object
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 37
def getJSONArgs()
jsonin = nil
varin=nil
integrations=nil
loop { case ARGV[0]
when '-jsoninput' then ARGV.shift; jsonin = ARGV.shift
when '-variables' then ARGV.shift; varin = ARGV.shift
when '-integrations' then ARGV.shift; integrations = ARGV.shift
when /^-/ then usage("Unknown option: #{ARGV[0].inspect}")
else break
end; }
@json_input = JSON.load(jsonin)
@var_input =JSON.load(varin)
@integration_input=JSON.load(integrations)
createAppContext();
return @json_input
end
|
#initializeApp ⇒ Object
88
89
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 88
def initializeApp()
end
|
#log(level, logString) ⇒ Object
25
26
27
28
29
30
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 25
def log(level,logString)
if @logger.nil?
logInit("DEBUG")
end
Util.logIt(@logger, @log_level, level.to_s.downcase, logString)
end
|
#logClose ⇒ Object
33
34
35
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 33
def logClose()
Util.logClose(@logger)
end
|
#logInit(log_level) ⇒ Object
20
21
22
23
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 20
def logInit(log_level)
@logger = @logger ? @logger : Util.logInit()
@log_level = log_level
end
|
#outputPipelineVariables(variablesHash) ⇒ Object
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
|
# File 'lib/cloudmunch_Ruby_sdk_v3/AppAbstract.rb', line 88
def outputPipelineVariables(variablesHash)
tmp = {}
variablesHash.each do |key, value|
matches = key.scan(/^{.+}$/i)
if matches.is_a?(Array) && matches.length == 0
key = "{" + key + "}"
end
tmp[key] = value
end
variablesHash = tmp
fileLoc = @appContext.get_reports_location() + "/" + @appContext.get_step_id() + ".out"
varList = nil
if File.exist?(fileLoc)
varList = File.read(fileLoc)
end
if varList.nil? || (varList.is_a?(String) && varList.length == 0)
varList = variablesHash
varList = JSON.generate(variablesHash)
File.write(fileLoc, varList)
else
varList = JSON.parse(varList)
variablesHash.each do |key, value|
varList[key] = value
end
varList = JSON.generate(varList)
File.write(fileLoc, varList)
end
end
|
#process ⇒ Object
91
92
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 91
def process()
end
|
#start ⇒ Object
98
99
100
101
102
|
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 98
def start()
initializeApp()
process()
cleanupApp()
end
|