Skip to content

Instantly share code, notes, and snippets.

@kwharrigan
Created April 12, 2012 16:50
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kwharrigan/2369049 to your computer and use it in GitHub Desktop.
Save kwharrigan/2369049 to your computer and use it in GitHub Desktop.
MKS fast-import script for git
#!/usr/bin/python
#Copyright (c) 2012 Kyle Harrigan
#
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is
#furnished to do so, subject to the following conditions:
#
#The above copyright notice and this permission notice shall be included in all
#copies or substantial portions of the Software.
#
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#SOFTWARE.
# Import MKS history into GIT
# Meant to be used with fast-import
#
# Currently imports checkpoints only...
# kyle.harrigan@gtri.gatech.edu
import os
from subprocess import Popen
from subprocess import PIPE, STDOUT
import time
import sys
import csv
import re
from datetime import datetime
def export_data(string):
print 'data %d\n%s' % (len(string), string)
def inline_data(filename, code = 'M', mode = '644'):
content = open(filename, 'r').read()
print "%s %s inline %s" % (code, mode, filename)
export_data(content)
pipe = Popen('si viewprojecthistory --project="%s"' % sys.argv[1], shell=True, bufsize=1024, stdin=PIPE, stdout=PIPE, close_fds=True)
versions = pipe.stdout.read().split('\n')
versions = versions[1:]
version_re = re.compile('[0-9]([\.0-9])+')
revisions = []
for version in versions:
match = version_re.match(version)
if match:
version_cols = version.split('\t')
revision = {}
revision["number"] = version_cols[0]
revision["author"] = version_cols[1]
revision["seconds"] = int(time.mktime(datetime.strptime(version_cols[2], "%b %d, %Y %I:%M:%S %p").timetuple()))
revision["description"] = version_cols[6]
revisions.append(revision)
if 0:
print revisions[0]
sys.exit(0)
revisions.reverse() # Old to new
ct = 0
for revision in revisions:
ct += 1
# Create a build sandbox for the version
os.system('si createsandbox --populate -R --project="%s" --projectRevision=%s tmp' % (sys.argv[1], revision["number"]))
#print 'DEBUG: %s' % revision
#"si co -R --nolock --overwriteChanged -r 1.3RC1 --filter=label:1.3RC1"
#os.system("si co --quiet -u -Y -r %s" % (revision["number"]))
#pipe.wait()
os.chdir('tmp')
print 'commit refs/heads/master'
print 'mark :%d' % ct
print 'committer %s <> %d -0400' % (revision["author"], revision["seconds"])
export_data(revision["description"])
print 'deleteall'
tree = os.walk('.')
for dir in tree:
for filename in dir[2]:
if (dir[0] == '.'):
fullfile = filename
else:
fullfile = os.path.join(dir[0], filename)[2:]
if (fullfile[0:4] == ".git"):
continue
if (fullfile.find('.pj') != -1):
continue
if (fullfile.find('mks_git_checkpoints') != -1):
continue
inline_data(fullfile)
# Drop the sandbox
os.chdir("..")
shortname=sys.argv[1].replace('"', '').split('/')[-1]
os.system("si dropsandbox -Y -f --delete=all tmp/%s" % shortname)
@kwharrigan
Copy link
Author

Usage (must have MKS open):

Make a new folder... then...

git init
./mks_git_checkpoints.py <MKS project path> | git fast-import

@kwharrigan
Copy link
Author

  1. Must have MKS open.. I don't handle credentials
  2. Only works on baselined versions right now.

@tdalon
Copy link

tdalon commented Mar 20, 2014

You can connect to MKS using "si connect --gui" to "handle credentials".

@BKShalini
Copy link

Hi,
Can this script be run on Windows. I get this error when i run this script.
Traceback (most recent call last):
File "mks_checkpoints.py", line 44, in
pipe = Popen('si viewprojecthistory --project="%s"' % sys.argv[1], shell=Tru
e, bufsize=1024,stdin=PIPE, stdout=PIPE, close_fds=True)
File "c:\Python27\lib\subprocess.py", line 667, in init
raise ValueError("close_fds is not supported on Windows "
ValueError: close_fds is not supported on Windows platforms if you redirect stdi
n/stdout/stderr

Thanks
Shalini

@ismarslomic
Copy link

Hi @kwharrigan,
do you know if there exists any tool to move source code from MKS to GIT or are your script here the only option? We want to move 20 MKS projects to GIT and would like to use some tool for this.

@XenuIsWatching
Copy link

I have forked this script making a lot changes including support for variant branches as well as numerous improvements you can find here.
https://github.com/XenuIsWatching/mks_checkpoints_to_git

@ashleygiles41
Copy link

@XenulsWatching :- When i run your script, i keep getting this error :-
File "mks_checkpoints_to_git.py", line 18
print 'data "%d\n%s"' % (len(string), string)
^
SyntaxError: invalid syntax
Any idea why that would be.

@ashleygiles41
Copy link

I was able to fix the error by using parenthesis for the print statement. Looks like this code was used in older python version like below 3. For versions 3 and above print needs ()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment