blob: 2c6a38099fcefb6ea60854253e7fbcfc588b7760 [file] [log] [blame]
#!/usr/bin/env python3
# -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
#
# Copyright (c) 2015, Colorado State University.
#
# This file is part of ndn-atmos.
#
# ndn-atmos is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later version.
#
# ndn-atmos is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
#
# You should have received copies of the GNU General Public License and GNU Lesser
# General Public License along with ndn-atmos, e.g., in COPYING.md file. If not, see
# <http://www.gnu.org/licenses/>.
#
# See AUTHORS.md for complete list of ndn-atmos authors and contributors.
'''Translates a netcdf filename to a NDN name'''
from atmos2ndn_parser import conf_file_parser, cmd_arg_parser
from atmos2ndn_translators import translate
def argsForTranslation(dataFilepath, configPath):
'''this module does the actual translation calls'''
if __debug__:
print("config file '%s', data path '%s'" %(configPath, dataFilepath))
#pass the config file to parser module, which will return and object
#with all the mappings. The mappings tell us which name component
#comes from where and what should be the order of the components
parsedConfig = conf_file_parser.ParseConf(configPath)
res = parsedConfig.getMappings()
#do the translation
ndnName = translate.translate(parsedConfig, dataFilepath)
if __debug__:
print("NDN name in main: %s" %(ndnName))
def main():
'''parse command line arguments, gives back configFilename and dataFilename
we then pass these to the subsequent modules.'''
userArgs = cmd_arg_parser.InputParser()
userArgs.parse()
configFile = userArgs.confFilepath
print("config file '%s', data path '%s'" %(configFile, userArgs.dataFilepath))
if __debug__:
print("config file '%s', data path '%s'" %(configFile, userArgs.dataFilepath))
#call the translator module
argsForTranslation(userArgs.dataFilepath, configFile)
if __name__ == '__main__':
main()