summaryrefslogtreecommitdiff
path: root/pycadf/reporterstep.py
diff options
context:
space:
mode:
authorGordon Chung <chungg@ca.ibm.com>2013-08-06 09:45:23 -0400
committerGordon Chung <chungg@ca.ibm.com>2013-08-06 15:27:29 -0400
commit7f76e5cf7bf560603829ffaa73458a86c384ecb7 (patch)
treefc371bbd7b86ce8fb3b74d81aa56c9cbd66c4ce9 /pycadf/reporterstep.py
parentdd9bb2391719c7f0d4f26b127fdff541645f71d4 (diff)
downloadpycadf-7f76e5cf7bf560603829ffaa73458a86c384ecb7.tar.gz
DMTF CADF format
Adding support for the DMTF Cloud Audit (CADF) format which will be used along with a generic notification filter to audit 'core' component APIs. initial code drop blueprint support-standard-audit-formats Change-Id: I3b27ceae8faa6427e4be1290c1406102e790e2e3
Diffstat (limited to 'pycadf/reporterstep.py')
-rw-r--r--pycadf/reporterstep.py76
1 files changed, 76 insertions, 0 deletions
diff --git a/pycadf/reporterstep.py b/pycadf/reporterstep.py
new file mode 100644
index 0000000..81d70a7
--- /dev/null
+++ b/pycadf/reporterstep.py
@@ -0,0 +1,76 @@
+# -*- encoding: utf-8 -*-
+#
+# Copyright 2013 IBM Corp.
+#
+# Author: Matt Rutkowski <mrutkows@us.ibm.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+from pycadf import cadftype
+from pycadf import identifier
+from pycadf import resource
+from pycadf import timestamp
+
+REPORTERSTEP_KEYNAME_ROLE = "role"
+REPORTERSTEP_KEYNAME_REPORTER = "reporter"
+REPORTERSTEP_KEYNAME_REPORTERID = "reporterId"
+REPORTERSTEP_KEYNAME_REPORTERTIME = "reporterTime"
+#REPORTERSTEP_KEYNAME_ATTACHMENTS = "attachments"
+
+REPORTERSTEP_KEYNAMES = [REPORTERSTEP_KEYNAME_ROLE,
+ REPORTERSTEP_KEYNAME_REPORTER,
+ REPORTERSTEP_KEYNAME_REPORTERID,
+ REPORTERSTEP_KEYNAME_REPORTERTIME,
+ #REPORTERSTEP_KEYNAME_ATTACHMENTS
+ ]
+
+
+class Reporterstep(cadftype.CADFAbstractType):
+
+ role = cadftype.ValidatorDescriptor(
+ REPORTERSTEP_KEYNAME_ROLE,
+ lambda x: cadftype.is_valid_reporter_role(x))
+ reporter = cadftype.ValidatorDescriptor(
+ REPORTERSTEP_KEYNAME_REPORTER,
+ (lambda x: isinstance(x, resource.Resource) or
+ (isinstance(x, str) and
+ (x == 'initiator' or x == 'target'))))
+ reporterId = cadftype.ValidatorDescriptor(
+ REPORTERSTEP_KEYNAME_REPORTERID, lambda x: identifier.is_valid(x))
+ reporterTime = cadftype.ValidatorDescriptor(
+ REPORTERSTEP_KEYNAME_REPORTERTIME, lambda x: timestamp.is_valid(x))
+
+ def __init__(self, role=cadftype.REPORTER_ROLE_OBSERVER,
+ reporterTime=None, reporter=None, reporterId=None):
+ # Reporterstep.role
+ setattr(self, REPORTERSTEP_KEYNAME_ROLE, role)
+
+ # Reporterstep.reportTime
+ if reporterTime is not None:
+ setattr(self, REPORTERSTEP_KEYNAME_REPORTERTIME, reporterTime)
+
+ # Reporterstep.reporter
+ if reporter is not None:
+ setattr(self, REPORTERSTEP_KEYNAME_REPORTER, reporter)
+
+ # Reporterstep.reporterId
+ if reporterId is not None:
+ setattr(self, REPORTERSTEP_KEYNAME_REPORTERID, reporterId)
+
+ # self validate this cadf:Reporterstep type against schema
+ def is_valid(self):
+ return (
+ hasattr(self, REPORTERSTEP_KEYNAME_ROLE) and
+ (hasattr(self, REPORTERSTEP_KEYNAME_REPORTER) or
+ hasattr(self, REPORTERSTEP_KEYNAME_REPORTERID))
+ )