SQLDeveloper/SQLDeveloperVersioner.py (42 lines of code) (raw):
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# 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.
"""See docstring for SQLDeveloperVersioner class."""
from __future__ import absolute_import
import ConfigParser
import os.path
from autopkglib import Processor, ProcessorError
__all__ = ["SQLDeveloperVersioner"]
# this code stolen directly from
# http://stackoverflow.com/questions/2819696/parsing-properties-file-in-python/2819788#2819788
class FakeSecHead(object):
def __init__(self, fp):
self.fp = fp
self.sechead = "[properties]\n"
def readline(self):
if self.sechead:
try:
return self.sechead
finally:
self.sechead = None
else:
return self.fp.readline()
class SQLDeveloperVersioner(Processor):
# pylint: disable=missing-docstring
description = "Read the version.properties file inside the SQLDeveloper.app."
input_variables = {
"app_path": {
"required": True,
"description": "Path to app to find the version.properties file in.",
}
}
output_variables = {"version": {"description": "Actual version of app."}}
__doc__ = description
def main(self):
# Unsurprisingly, SQLDeveloper fails to include a useful version in
# the app's Info.plist. Instead, the actual version is buried deep
# inside in a file called "version.properties". Thanks, Oracle.
# You know, I was a having a pretty good day up until now...
relative_path = (
"Contents/Resources/sqldeveloper/sqldeveloper/bin/version.properties"
)
file_path = os.path.join(self.env["app_path"], relative_path)
# this code stolen directly from
# http://stackoverflow.com/questions/2819696/parsing-properties-file-in-python/2819788#2819788
cp = ConfigParser.SafeConfigParser()
try:
cp.readfp(FakeSecHead(open(file_path)))
except IOError as err:
raise ProcessorError(err)
self.env["version"] = cp.get("properties", "ver_full")
self.output("Version: %s" % self.env["version"])
if __name__ == "__main__":
PROCESSOR = SQLDeveloperVersioner()
PROCESSOR.execute_shell()