summaryrefslogtreecommitdiff
path: root/pycadf/geolocation.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/geolocation.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/geolocation.py')
-rw-r--r--pycadf/geolocation.py118
1 files changed, 118 insertions, 0 deletions
diff --git a/pycadf/geolocation.py b/pycadf/geolocation.py
new file mode 100644
index 0000000..86222ea
--- /dev/null
+++ b/pycadf/geolocation.py
@@ -0,0 +1,118 @@
+# -*- 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
+
+# Geolocation types can appear outside a cadf:Event record context, in these
+# cases a typeURI may be used to identify the cadf:Geolocation data type.
+TYPE_URI_GEOLOCATION = cadftype.CADF_VERSION_1_0_0 + 'geolocation'
+
+GEO_KEYNAME_ID = "id"
+GEO_KEYNAME_LATITUDE = "latitude"
+GEO_KEYNAME_LONGITUDE = "longitude"
+GEO_KEYNAME_ELEVATION = "elevation"
+GEO_KEYNAME_ACCURACY = "accuracy"
+GEO_KEYNAME_CITY = "city"
+GEO_KEYNAME_STATE = "state"
+GEO_KEYNAME_REGIONICANN = "regionICANN"
+#GEO_KEYNAME_ANNOTATIONS = "annotations"
+
+GEO_KEYNAMES = [GEO_KEYNAME_ID,
+ GEO_KEYNAME_LATITUDE,
+ GEO_KEYNAME_LONGITUDE,
+ GEO_KEYNAME_ELEVATION,
+ GEO_KEYNAME_ACCURACY,
+ GEO_KEYNAME_CITY,
+ GEO_KEYNAME_STATE,
+ GEO_KEYNAME_REGIONICANN
+ #GEO_KEYNAME_ANNOTATIONS
+ ]
+
+
+class Geolocation(cadftype.CADFAbstractType):
+
+ id = cadftype.ValidatorDescriptor(GEO_KEYNAME_ID,
+ lambda x: identifier.is_valid(x))
+ # TODO(mrutkows): we may want to do more validation to make
+ # sure numeric range represented by string is valid
+ latitude = cadftype.ValidatorDescriptor(GEO_KEYNAME_LATITUDE,
+ lambda x: isinstance(x, str))
+ longitude = cadftype.ValidatorDescriptor(GEO_KEYNAME_LONGITUDE,
+ lambda x: isinstance(x, str))
+ elevation = cadftype.ValidatorDescriptor(GEO_KEYNAME_ELEVATION,
+ lambda x: isinstance(x, str))
+ accuracy = cadftype.ValidatorDescriptor(GEO_KEYNAME_ACCURACY,
+ lambda x: isinstance(x, str))
+ city = cadftype.ValidatorDescriptor(GEO_KEYNAME_CITY,
+ lambda x: isinstance(x, str))
+ state = cadftype.ValidatorDescriptor(GEO_KEYNAME_STATE,
+ lambda x: isinstance(x, str))
+ regionICANN = cadftype.ValidatorDescriptor(GEO_KEYNAME_REGIONICANN,
+ lambda x: isinstance(x, str))
+
+ def __init__(self, id=None, latitude=None, longitude=None,
+ elevation=None, accuracy=None, city=None, state=None,
+ regionICANN=None):
+
+ # Geolocation.id
+ if id is not None:
+ setattr(self, GEO_KEYNAME_ID, id)
+
+ # Geolocation.latitude
+ if latitude is not None:
+ setattr(self, GEO_KEYNAME_LATITUDE, latitude)
+
+ # Geolocation.longitude
+ if longitude is not None:
+ setattr(self, GEO_KEYNAME_LONGITUDE, longitude)
+
+ # Geolocation.elevation
+ if elevation is not None:
+ setattr(self, GEO_KEYNAME_ELEVATION, elevation)
+
+ # Geolocation.accuracy
+ if accuracy is not None:
+ setattr(self, GEO_KEYNAME_ACCURACY, accuracy)
+
+ # Geolocation.city
+ if city is not None:
+ setattr(self, GEO_KEYNAME_CITY, city)
+
+ # Geolocation.state
+ if state is not None:
+ setattr(self, GEO_KEYNAME_STATE, state)
+
+ # Geolocation.regionICANN
+ if regionICANN is not None:
+ setattr(self, GEO_KEYNAME_REGIONICANN, regionICANN)
+
+ # TODO(mrutkows): add mechanism for annotations, OpenStack may choose
+ # not to support this "extension mechanism" and is not required (and not
+ # critical in many audit contexts)
+ def set_annotations(self, value):
+ raise NotImplementedError()
+ # setattr(self, GEO_KEYNAME_ANNOTATIONS, value)
+
+ # self validate cadf:Geolocation type
+ def is_valid(self):
+ # TODO(mrutkows): validate specific attribute type/format
+ for attr in GEO_KEYNAMES:
+ if not hasattr(self, attr):
+ return False
+ return True