summaryrefslogtreecommitdiff
path: root/scripts/migrate-chunks
blob: 5a95a7a1b3a99b349a9b8decd1edd40138a13c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/usr/bin/env python

import json
import morphlib
import os
import subprocess
import sys
import urllib
import urllib2
import urlparse
import yaml
import re

verbose = False
if '--verbose' in sys.argv or '-v' in sys.argv:
    verbose = True

# load all morphologies in the definitions repo
sb = morphlib.sysbranchdir.open_from_within('.')
loader = morphlib.morphloader.MorphologyLoader()
morphs = [m for m in sb.load_all_morphologies(loader)]
print 'Found %d morphologies in total' % len(morphs)


# Harvest all the morphologies on the directory
morphologies = { 'chunk': '', 'stratum': '', 'system' : '', 'cluster': '' } 

for key in morphologies.iterkeys():
    morphologies[key] = [m for m in morphs if m['kind'] == key]
    #print 'There are: %d %s' %(len(morphologies[key]), key)

# look for a chunk morph in the repo
# NOTE: The following reimplements part of morphlib's remote repo cache stuff
def parse_repo_alias(repo):
    if verbose:
        print 'Parsing repo-alias %s' % repo
    domain, path = repo.split(':')
    if domain == 'baserock':
        repo = 'ssh://git@git.baserock.org/baserock/%s' % path
    elif domain == 'upstream':
        repo = 'ssh://git@git.baserock.org/delta/%s' % path
    else:
        raise Exception("I don't know how to parse the repo-alias \"%s\"" % repo)
    return repo

def make_request(path):
    server_url = 'http://git.baserock.org:8080/'
    url = urlparse.urljoin(server_url, '/1.0/%s' % path)
    handle = urllib2.urlopen(url)
    return handle.read()

def quote(*args):
    return tuple(urllib.quote(string) for string in args)

def cat_file(repo, ref, filename):
    return make_request('files?repo=%s&ref=%s&filename=%s' %
                         quote(repo, ref, filename))

def sanitise_morphology_path(morph_field, morph_kind, belongs_to='None'):
    ''' This function pretends to replace the sanitise_morphology_path in
    morphlib.utils.
    This new funtion will receive the field kind to check/add the directory
    tree.
    Chunk morphologies should add the stratum which belongs to.
    '''
    # Dictionary which match morphology's kind and morphology's
    # directory in definitions.git
    morphology_path = { 'chunk': 'chunks', 'stratum': 'strata',
                        'system':'systems', 'cluster': 'clusters'}
    # For chunks morphologies we need to know to which stratums
    # belongs this chunk.
    if morph_kind == 'chunk':
        if belongs_to == 'None':
            raise morphlib.Error('Chunk morphologies need the stratum name'
                                 'to create the path. Please add the stratum'
                                 'which belongs this morphology')
        # Get the name of the chunk which we assume is at the end
        # of the morph file
        if '/' in morph_field:
            morph_field = morph_field.split('/')[-1]

        # Add the stratum name to the chunk name
        morph_field = belongs_to + '/' + morph_field

        # Reset the kind to stratum because chunk contains stratum
        # name in its path.
        morph_kind = 'stratum'

    # Add the morphology path to the morph field.
    if morphology_path[morph_kind] not in morph_field:
        morph_field = morphology_path[morph_kind] + '/' + morph_field

    # Add the morphology suffix if the morphology.
    if not morph_field.endswith('.morph'):
        morph_field = morph_field + '.morph'

    return morph_field

# organise the definitions repo
definitions_repo = sb.get_git_directory_name(sb.root_repository_url)
def move_morphs(morphs, kind):
    if kind == 'cluster':
        print 'Moving %s into subdirectory' % kind
        subdir = os.path.join(definitions_repo, 'clusters')
        subprocess.call(['mkdir', '-p', subdir])
        for morph in morphs:
            for m in morph['systems']:
                m['morph'] = sanitise_morphology_path(m['morph'], 'system')
            loader.save_to_file(morph.filename, morph)
            new_location = os.path.join(subdir, morph.filename)
            #subprocess.call(['git', 'mv', morph.filename, new_location])
            #morph.filename = new_location
            #subprocess.call(['git', 'commit', '--quiet', '-m',
            #                 'Move %s into subdirectory' %kind])
    if kind == 'system':
        print 'Moving %s into subdirectory' % kind
        subdir = os.path.join(definitions_repo, 'systems')
        subprocess.call(['mkdir', '-p', subdir])
        for morph in morphs:
            for stratum in morph['strata']:
                stratum['morph'] = sanitise_morphology_path(stratum['morph'], 'stratum')
            loader.save_to_file(morph.filename,morph)
            new_location = os.path.join(subdir, morph.filename)
            #subprocess.call(['git', 'mv', morph.filename, new_location])
            #morph.filename = new_location
            #subprocess.call(['git', 'commit', '--quiet', '-m',
            #                 'Move %s into subdirectory' %kind])
    if kind == 'stratum':
        print 'Moving %s into subdirectory' % kind
        for morph in morphs:
            # Add chunk path on the chunk's morph field per stratum
            stratum_path = 'strata/' + morph['name']
            subdir = os.path.join(definitions_repo, stratum_path)
            subprocess.call(['mkdir', '-p', subdir])

            # Download chunks morphologies defined on the stratum and
            # add them to the directory tree.
            for chunk in morph['chunks']:
                name = chunk['name'] + '.morph'
                chunk['morph'] = sanitise_morphology_path(chunk['morph'],'chunk', morph['name'])
                ref = chunk['ref']
                repo = parse_repo_alias(chunk['repo'])
                print "%s %s %s %s" %(name, ref, repo, chunk['morph'])
                try:
                    chunk_morph = cat_file(repo, ref, name)
                    new_chunk = loader.load_from_string(chunk_morph)
                    loader.save_to_file(chunk['morph'], new_chunk)
                    print "Downloading %s from %s and placing in %s" %(name, repo, chunk['morph'])
                except urllib2.HTTPError as err:
                # If there is no morphology in the repository we assume that the morphology
                # system will be autodetected, so we don't have to create a new one
		        # unless we shut down the autodetecting system (fallback system).
                    if err.code == 404:
                        print "%s not found in %s" %(name, repo)
                except morphlib.morphloader.InvalidFieldError as err:
                    print "ERROR: %s in chunk \n%s" % (err, chunk_morph)
                    if "comments" in str(err):
                    # This error is caused because there are old morphologies which
                    # contain the field "comments" instead of "description".
                    # Replacing "comments" field by "description" will allow the morphology
                    # to pass parse_morphology_text check and ready to be written to a file.
                        fixed_chunk = loader.parse_morphology_text(chunk_morph, name)
                        fixed_chunk['description'] = fixed_chunk.pop('comments')
                        loader.save_to_file(chunk['morph'], fixed_chunk)
                        print "Downloading %s from %s and placing in %s" %(name, repo, chunk['morph'])
                    if "buildsystem" in str(err):
                    # This error is caused because a typo in a morphology which
			        # has a field "buildsystem" instead of "build-system".
                        fixed_chunk = loader.parse_morphology_text(chunk_morph, name)
                        fixed_chunk['build-system'] = fixed_chunk.pop('buildsystem')
                        loader.save_to_file(chunk['morph'], fixed_chunk)
                        print "Downloading %s from %s and placing in %s" %(name, repo, chunk['morph'])
                except morphlib.morphloader.MorphologyNotYamlError as err:
                    print "ERROR: %s in chunk \n%s" % (err, chunk_morph)
                    # This error is caused because there are old morphologies written
		            # in JSON which contain '\t' characters. When try to load this
		            # kind of morphologies load_from_string fails when parse_morphology_text.
		            # Removing this characters will make load_from_string to load the morphology
		            # and translate it into a correct yaml format.
                    fix_chunk = chunk_morph.replace('\t','')
                    new_chunk = loader.load_from_string(fix_chunk)
                    loader.save_to_file(chunk['morph'], new_chunk)
                    print "Downloading %s from %s and placing in %s" %(name, repo, chunk['morph'])

            # Add path to the build-depends morphologies
            for build_depends in morph['build-depends']:
                build_depends['morph'] = sanitise_morphology_path(build_depends['morph'], 'stratum')
            loader.save_to_file(morph.filename,morph)
            new_location = os.path.join(subdir, morph.filename)
            #subprocess.call(['git', 'mv', morph.filename, new_location])
            #morph.filename = new_location
            #subprocess.call(['git', 'commit', '--quiet', '-m',
            #                 'Move %s into subdirectory' %kind])
	 
# Move the morphologies to it directory
for key in morphologies.iterkeys():
    print "Moving %s....\n" %key
    move_morphs(morphologies[key], key)

sys.exit(0)