This adds a --upgrade option to install_gadget.py and makes VimspectorUpdate only update things which have changed. To do this, we record the gadget spec in a manfiest file and compare it with the current spec when in upgrade mode. 'Changed' in this case means that the gadget spec has changed from the last time the installer was run. It does _not_ actually check the presence of the gadget.
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
# vimspector - A multi-language debugging system for Vim
|
|
# Copyright 2019 Ben Jackson
|
|
#
|
|
# 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.
|
|
|
|
import platform
|
|
import os
|
|
|
|
|
|
def GetOS():
|
|
if platform.system() == 'Darwin':
|
|
return 'macos'
|
|
elif platform.system() == 'Windows':
|
|
return 'windows'
|
|
else:
|
|
return 'linux'
|
|
|
|
|
|
def mkdirs( p ):
|
|
try:
|
|
os.makedirs( p )
|
|
except FileExistsError:
|
|
pass
|
|
|
|
|
|
def MakeInstallDirs( vimspector_base ):
|
|
mkdirs( GetGadgetConfigDir( vimspector_base ) )
|
|
mkdirs( GetConfigDirForFiletype( vimspector_base, '_all' ) )
|
|
|
|
|
|
def GetGadgetDir( vimspector_base ):
|
|
return os.path.join( os.path.abspath( vimspector_base ), 'gadgets', GetOS() )
|
|
|
|
|
|
def GetManifestFile( vimspector_base ):
|
|
return os.path.join( GetGadgetDir( vimspector_base ),
|
|
'.gadgets.manifest.json' )
|
|
|
|
|
|
def GetGadgetConfigFile( vimspector_base ):
|
|
return os.path.join( GetGadgetDir( vimspector_base ), '.gadgets.json' )
|
|
|
|
|
|
def GetGadgetConfigDir( vimspector_base ):
|
|
return os.path.join( GetGadgetDir( vimspector_base ), '.gadgets.d' )
|
|
|
|
|
|
def GetConfigDirForFiletype( vimspector_base, filetype ):
|
|
if not filetype:
|
|
filetype = 'default'
|
|
|
|
return os.path.join( os.path.abspath( vimspector_base ),
|
|
'configurations',
|
|
GetOS(),
|
|
filetype )
|