summaryrefslogtreecommitdiff
path: root/scripts/edit-morph
blob: 116b96816e9918f44895f8a62692a1823669c872 (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
#!/usr/bin/env python
# Copyright (C) 2013  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import cliapp
import os
import re

import morphlib

class EditMorph(cliapp.Application):
    '''Tools for performing set operations on large morphologies'''

    def add_settings(self):
        self.settings.boolean(['no-git-update'],
                              'do not update the cached git repositories '
                              'automatically')

    def load_morphology(self, file_name, expected_kind = None):
        with open(file_name) as f:
            text = f.read()
        try:
            morphology = morphlib.morph2.Morphology(text)
        except ValueError as e:
            raise morphlib.Error("Error parsing %s: %s" %
                                 (file_name, str(e)))

        if expected_kind is not None and morphology['kind'] != expected_kind:
            raise morphlib.Error("Expected: a %s morphology" % expected_kind)

        return morphology


    def cmd_remove_chunk(self, args):
        '''Removes from STRATUM all reference of CHUNK'''

        if len(args) != 2:
            raise cliapp.AppException("remove-chunk expects a morphology file "
                                      "name and a chunk name")

        file_name = args[0]
        chunk_name = args[1]
        morphology = self.load_morphology(file_name, expected_kind = 'stratum')

        component_count = 0
        build_depends_count = 0
        new_chunks = morphology['chunks']
        for info in morphology['chunks']:
            if info['name'] == chunk_name:
                new_chunks.remove(info)
                component_count += 1
            elif chunk_name in info['build-depends']:
                info['build-depends'].remove(chunk_name)
                build_depends_count += 1
        morphology._dict['chunks'] = new_chunks

        with morphlib.savefile.SaveFile(file_name, 'w') as f:
            morphology.write_to_file(f)

        print "Removed: %i chunk(s) and %i build depend(s)." % \
                (component_count, build_depends_count)

    def cmd_sort(self, args):
        """Sort STRATUM"""

        if len(args) != 1:
            raise cliapp.AppException("sort expects a morphology file name")

        file_name = args[0]
        morphology = self.load_morphology(file_name, expected_kind='stratum')

        for chunk in morphology['chunks']:
            chunk['build-depends'].sort()

        morphology._dict['chunks'] = self.sort_chunks(morphology['chunks'])

        with morphlib.savefile.SaveFile(file_name, 'w') as f:
            morphology.write_to_file(f)

    def sort_chunks(self, chunks_list):
        """Sort stratum chunks

        The order is something like alphabetical reverse dependency order.
        Chunks on which nothing depends are sorted at the bottom.

        The algorithm used is a simple-minded recursive sort.
        """

        chunk_dict = {}
        for chunk in chunks_list:
            chunk_dict[chunk['name']] = chunk

        reverse_deps_dict = {}
        for chunk_name in chunk_dict.keys():
            chunk = chunk_dict[chunk_name]
            for dep in chunk['build-depends']:
                if dep not in reverse_deps_dict:
                    reverse_deps_dict[dep] = [chunk_name]
                else:
                    reverse_deps_dict[dep].append(chunk_name)

        sort_order = list(chunk_dict.keys())
        sort_order.sort(key=unicode.lower)

        result = []
        satisfied_list = []
        repeat_count = 0
        while len(sort_order) > 0:
            postponed_list = []

            # Move any chunk into the result order that has all its
            # dependencies satisfied in the result already.
            for chunk_name in sort_order:
                deps_satisfied = True

                chunk = chunk_dict[chunk_name]
                for dep in chunk['build-depends']:
                    if dep not in satisfied_list:
                        deps_satisfied = False
                        if dep not in sort_order:
                            raise cliapp.AppException(
                                    'Invalid build-dependency for %s: %s'
                                    % (chunk['name'], dep))
                        break

                if deps_satisfied:
                    result.append(chunk)
                    satisfied_list.append(chunk_name)
                else:
                    postponed_list.append(chunk_name)

            if len(postponed_list) == len(sort_order):
                # This is not the smartest algorithm possible (but it works!)
                repeat_count += 1
                if repeat_count > 10:
                    raise cliapp.AppException('Stuck in loop while sorting')

            assert(len(postponed_list) + len(result) == len(chunk_dict.keys()))
            sort_order = postponed_list

        # Move chunks which are not build-depends of other chunks to the end.
        targets = [c for c in chunk_dict.keys() if c not in reverse_deps_dict]
        targets.sort(key=unicode.lower)
        for chunk_name in targets:
            result.remove(chunk_dict[chunk_name])
            result.append(chunk_dict[chunk_name])

        return result

EditMorph().run()