buildframework/helium/sf/java/imaker/src/com/nokia/helium/imaker/IMaker.java
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 587 85df38eb4012
permissions -rw-r--r--
helium_11.0.0-e00f171ca185
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
/*
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     2
 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     3
 * All rights reserved.
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     4
 * This component and the accompanying materials are made available
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     5
 * under the terms of the License "Eclipse Public License v1.0"
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     6
 * which accompanies this distribution, and is available
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     7
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     8
 *
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
     9
 * Initial Contributors:
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    10
 * Nokia Corporation - initial contribution.
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    11
 *
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    12
 * Contributors:
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    13
 *
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    14
 * Description:  
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    15
 *
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    16
 */
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    17
package com.nokia.helium.imaker;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    18
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    19
import java.io.File;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    20
import java.io.IOException;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    21
import java.util.List;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    22
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    23
import org.apache.log4j.Logger;
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    24
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    25
import com.nokia.helium.core.plexus.CommandBase;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    26
import com.nokia.helium.core.plexus.StreamRecorder;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    27
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    28
/**
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    29
 * This class implements a wrapper around iMaker. It helps to introspect: <li>variables <li>targets
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    30
 * <li>configurations
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    31
 * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    32
 */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    33
public class IMaker extends CommandBase<IMakerException> {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    34
    private static final String TEMP_ROMBUILD_DIR = "epoc32/rombuild/temp";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    35
    private final Logger log = Logger.getLogger(getClass());
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    36
    private File epocroot;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    37
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    38
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    39
     * Create an iMaker wrapper class with a specific epocroot.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    40
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    41
     * @param epocroot
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    42
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    43
    public IMaker(File epocroot) {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    44
        this.epocroot = epocroot;
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    45
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    46
    }
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    47
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    48
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    49
     * Creates a temp working dir for the rom image creation.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    50
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    51
     * @return
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    52
     * @throws IOException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    53
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    54
    public File createWorkDir() throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    55
        try {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    56
            File tempRootDir = new File(getEpocroot(), TEMP_ROMBUILD_DIR);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    57
            tempRootDir.mkdirs();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    58
            File tempDir = File.createTempFile("helium-imaker", "", tempRootDir);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    59
            tempDir.delete();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    60
            tempDir.mkdirs();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    61
            return tempDir;
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    62
        }
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    63
        catch (IOException e) {
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    64
            throw new IMakerException(e.getMessage(), e);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    65
        }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    66
    }
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    67
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    68
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    69
     * Epocroot location.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    70
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    71
     * @return the epocroot location
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    72
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    73
    public File getEpocroot() {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    74
        return epocroot;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    75
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    76
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    77
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    78
     * Get the iMaker version.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    79
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    80
     * @return the current iMaker version.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    81
     * @throws IMakerException is thrown in case of an iMaker execution error.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    82
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    83
    public String getVersion() throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    84
        log.debug("getVersion");
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    85
        String[] args = new String[1];
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    86
        args[0] = "version";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    87
        StreamRecorder rec = new StreamRecorder();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    88
        execute(args, rec);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    89
        return rec.getBuffer().toString().trim();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    90
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    91
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    92
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    93
     * Get the value of a particular variable from iMaker configuration.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
    94
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    95
     * @param name the variable name
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    96
     * @return the value or null if the variable does not exist.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    97
     * @throws IMakerException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    98
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    99
    public String getVariable(String name) throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   100
        log.debug("getVariable: " + name);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   101
        String[] args = new String[1];
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   102
        args[0] = "print-" + name;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   103
        PrintVarSteamConsumer consumer = new PrintVarSteamConsumer(name);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   104
        execute(args, consumer);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   105
        return consumer.getValue();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   106
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   107
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   108
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   109
     * Get the value of a particular variable from iMaker configuration for a particular
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   110
     * configuration.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   111
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   112
     * @param name the variable name
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   113
     * @return the value or null if the variable does not exist.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   114
     * @throws IMakerException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   115
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   116
    public String getVariable(String name, File configuration) throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   117
        log.debug("getVariable: " + name + " - " + configuration);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   118
        String[] args = new String[3];
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   119
        args[0] = "-f";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   120
        args[1] = configuration.getAbsolutePath();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   121
        args[2] = "print-" + name;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   122
        PrintVarSteamConsumer consumer = new PrintVarSteamConsumer(name);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   123
        execute(args, consumer);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   124
        return consumer.getValue();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   125
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   126
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   127
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   128
     * Get the list of available iMaker configurations.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   129
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   130
     * @return a list of configurations
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   131
     * @throws IMakerException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   132
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   133
    public List<String> getConfigurations() throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   134
        log.debug("getConfigurations");
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   135
        String[] args = new String[1];
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   136
        args[0] = "help-config";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   137
        HelpConfigStreamConsumer consumer = new HelpConfigStreamConsumer();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   138
        execute(args, consumer);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   139
        return consumer.getConfigurations();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   140
    }
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   141
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   142
    /**
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   143
     * Get the a list of target supported by a specific configuration.
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   144
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   145
     * @param configuration the configuration to use
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   146
     * @return the list of targets.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   147
     * @throws IMakerException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   148
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   149
    public List<String> getTargets(String configuration) throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   150
        log.debug("getConfigurations");
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   151
        String[] args = new String[3];
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   152
        args[0] = "-f";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   153
        args[1] = configuration;
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   154
        args[2] = "help-target-*-list";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   155
        HelpTargetListStreamConsumer consumer = new HelpTargetListStreamConsumer();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   156
        execute(args, consumer);
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   157
        return consumer.getTargets();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   158
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   159
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   160
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   161
     * Get the target list for the configuration.
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   162
     * 
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   163
     * @param configuration a File object representing the configuration location.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   164
     * @return a list of targets.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   165
     * @throws IMakerException
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   166
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   167
    public List<String> getTargets(File configuration) throws IMakerException {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   168
        return getTargets(configuration.getAbsolutePath());
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   169
    }
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   170
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   171
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   172
     * {@inheritDoc}
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   173
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   174
    @Override
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   175
    protected String getExecutable() {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   176
        return "imaker";
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   177
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   178
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   179
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   180
     * {@inheritDoc}
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   181
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   182
    @Override
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   183
    public File getWorkingDir() {
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   184
        return getEpocroot();
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   185
    }
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   186
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   187
    /**
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   188
     * {@inheritDoc}
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   189
     */
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   190
    @Override
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   191
    protected void throwException(String message, Throwable t) throws IMakerException {
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   192
        throw new IMakerException(message, t);
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   193
    }
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 587
diff changeset
   194
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
   195
}