LiteLoaderBootstrap.java 21.7 KB
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
/*
 * This file is part of LiteLoader.
 * Copyright (C) 2012-16 Adam Mummery-Smith
 * All Rights Reserved.
 */
package com.mumfrey.liteloader.core;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.Serializable;
import java.util.List;
import java.util.Properties;

import org.apache.commons.io.Charsets;
import org.apache.logging.log4j.core.Layout;
import org.apache.logging.log4j.core.Logger;
import org.apache.logging.log4j.core.appender.FileAppender;
import org.apache.logging.log4j.core.layout.PatternLayout;
import org.spongepowered.asm.mixin.MixinEnvironment;

import com.mumfrey.liteloader.api.LiteAPI;
import com.mumfrey.liteloader.api.manager.APIAdapter;
import com.mumfrey.liteloader.api.manager.APIProvider;
import com.mumfrey.liteloader.api.manager.APIRegistry;
import com.mumfrey.liteloader.common.LoadingProgress;
import com.mumfrey.liteloader.core.api.LiteLoaderCoreAPI;
import com.mumfrey.liteloader.core.api.repository.Repository;
import com.mumfrey.liteloader.interfaces.LoaderEnumerator;
import com.mumfrey.liteloader.launch.ClassTransformerManager;
import com.mumfrey.liteloader.launch.LiteLoaderTweaker;
import com.mumfrey.liteloader.launch.LoaderBootstrap;
import com.mumfrey.liteloader.launch.LoaderEnvironment;
import com.mumfrey.liteloader.launch.LoaderProperties;
import com.mumfrey.liteloader.launch.StartupEnvironment;
import com.mumfrey.liteloader.util.ObfuscationUtilities;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger.Verbosity;

import net.minecraft.launchwrapper.ITweaker;
import net.minecraft.launchwrapper.LaunchClassLoader;

/**
 * LiteLoaderBootstrap is responsible for managing the early part of the
 * LiteLoader startup process, this is to ensure that NONE of the Minecraft
 * classes which by necessity the Loader references get loaded before the
 * PREINIT stage has completed. This allows us to load transforming tweakers in
 * the PREINIT stage without all hell breaking loose because class names have
 * changed between initialisation stages!
 * 
 * <p>This class handles setting up requisite resources like the logger,
 * enumerator and plug-in API modules and passes init calls through to the
 * LiteLoader instance at the appropriate points during startup. Because this
 * class is the first part of the loader to get loaded, we also keep central
 * references like the paths, version and loader properties in here.</p>
 *
 * @author Adam Mummery-Smith
 */
class LiteLoaderBootstrap implements LoaderBootstrap, LoaderEnvironment, LoaderProperties
{
    /**
     * Base game directory, passed in from the tweaker
     */
    private final File gameDirectory;

    /**
     * Assets directory, passed in from the tweaker 
     */
    private final File assetsDirectory;

    /**
     * Active profile, passed in from the tweaker 
     */
    private final String profile;

    /**
     * "Mods" folder to use
     */
    private final File modsFolder;

    /**
     * "Mods" folder to use
     */
    private final File versionedModsFolder;

    /**
     * Base "liteconfig" folder under which all other lite mod configs and
     * liteloader configs are placed. 
     */
    private final File configBaseFolder;

    /**
     * Folder containing version-independent configuration
     */
    private final File commonConfigFolder;

    /**
     * Folder containing version-specific configuration
     */
    private final File versionConfigFolder;
    
    /**
     * Mods repo file
     */
    private final String repositoryFile;
    
    /**
     * Mod repository defined in JSON
     */
    private final Repository repository;

    /**
     * File to write log entries to
     */
    private File logFile;

    /**
     * File containing the properties
     */
    private File propertiesFile;

    /**
     * JSON file containing the list of enabled/disabled mods by profile
     */
    private File enabledModsFile;

    /**
     * Internal properties loaded from inside the jar
     */
    private Properties internalProperties = new Properties();

    /**
     * LiteLoader properties
     */
    private Properties localProperties = new Properties();

    /**
     * Pack brand from properties, used to put the modpack/compilation name in
     * crash reports
     */
    private String branding = null;

    private boolean loadTweaks = true;

    private LaunchClassLoader classLoader; 

    private final StartupEnvironment env;

    private final ITweaker tweaker;

    private final APIRegistry apiRegistry;

    private final APIProvider apiProvider;

    private final APIAdapter apiAdapter;

    private final EnvironmentType environmentType;

    /**
     * The mod enumerator instance
     */
    private LiteLoaderEnumerator enumerator;

    /**
     * List of mods passed into the command line
     */
    private EnabledModsList enabledModsList;
    
    /**
     * @param env
     * @param tweaker
     */
    public LiteLoaderBootstrap(StartupEnvironment env, ITweaker tweaker)
    {
        this.environmentType     = EnvironmentType.values()[env.getEnvironmentTypeId()];
        this.env                 = env;
        this.tweaker             = tweaker;

        this.apiRegistry         = new APIRegistry(this.getEnvironment(), this.getProperties());

        this.gameDirectory       = env.getGameDirectory();
        this.assetsDirectory     = env.getAssetsDirectory();
        this.profile             = env.getProfile();
        this.modsFolder          = env.getModsFolder();
        this.repositoryFile      = env.getModsRepoFile();

        this.versionedModsFolder = new File(this.modsFolder,       LiteLoaderVersion.CURRENT.getMinecraftVersion());
        this.configBaseFolder    = new File(this.gameDirectory,    "liteconfig");
        this.logFile             = new File(this.configBaseFolder, "liteloader.log");
        this.propertiesFile      = new File(this.configBaseFolder, "liteloader.properties");
        this.enabledModsFile     = new File(this.configBaseFolder, "liteloader.profiles.json");

        this.commonConfigFolder  = new File(this.configBaseFolder, "common");
        this.versionConfigFolder = this.inflectVersionedConfigPath(LiteLoaderVersion.CURRENT);

        this.repository = new Repository(this.gameDirectory, this.versionedModsFolder);

        this.mkdir(this.modsFolder);
        this.mkdir(this.versionedModsFolder);
        this.mkdir(this.configBaseFolder);
        this.mkdir(this.commonConfigFolder);
        this.mkdir(this.versionConfigFolder);

        this.initAPIs(env.getAPIsToLoad());
        this.apiProvider = this.apiRegistry.getProvider();
        this.apiAdapter = this.apiRegistry.getAdapter();
    }

    private void mkdir(File dir)
    {
        if (!dir.isDirectory())
        {
            dir.mkdirs();
        }
    }

    /**
     * @param version
     */
    @Override
    public File inflectVersionedConfigPath(LiteLoaderVersion version)
    {
        if (version.equals(LiteLoaderVersion.LEGACY))
        {
            return this.modsFolder;
        }

        return new File(this.configBaseFolder, String.format("config.%s", version.getMinecraftVersion()));
    }

    /**
     * 
     */
    private void initAPIs(List<String> apisToLoad)
    {
        if (apisToLoad != null)
        {
            for (String apiClassName : apisToLoad)
            {
                this.registerAPI(apiClassName);
            }
        }

        this.apiRegistry.bake();
    }

    /**
     * @param apiClassName
     */
    public void registerAPI(String apiClassName)
    {
        this.apiRegistry.registerAPI(apiClassName);
    }

    @Override
    public APIProvider getAPIProvider()
    {
        return this.apiProvider;
    }

    @Override
    public APIAdapter getAPIAdapter()
    {
        return this.apiAdapter;
    }

    @Override
    public EnabledModsList getEnabledModsList()
    {
        return this.enabledModsList;
    }
    
    @Override
    public Repository getModRepository()
    {
        return this.repository;
    }

    @Override
    public LoaderEnumerator getEnumerator()
    {
        return this.enumerator;
    }

    @Override
    public EnvironmentType getType()
    {
        return this.environmentType;
    }

    @Override
    public LoaderEnvironment getEnvironment()
    {
        return this;
    }

    @Override
    public LoaderProperties getProperties()
    {
        return this;
    }

    @Override
    public boolean addCascadedTweaker(String tweakClass, int priority)
    {
        if (this.tweaker instanceof LiteLoaderTweaker)
        {
            return ((LiteLoaderTweaker)this.tweaker).addCascadedTweaker(tweakClass, priority);
        }

        return false;
    }

    @Override
    public ClassTransformerManager getTransformerManager()
    {
        if (this.tweaker instanceof LiteLoaderTweaker)
        {
            return ((LiteLoaderTweaker)this.tweaker).getTransformerManager();
        }

        return null;
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.ILoaderBootstrap
     *      #preInit(net.minecraft.launchwrapper.LaunchClassLoader, boolean)
     */
    @Override
    public void preInit(LaunchClassLoader classLoader, boolean loadTweaks)
    {
        List<String> modsToLoad = this.env.getModFilterList();

        this.classLoader = classLoader;
        this.loadTweaks = loadTweaks;

        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader begin PREINIT...");

        // Set up the bootstrap
        if (!this.prepare())
        {
            return;
        }

        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader %s starting up...", LiteLoaderVersion.CURRENT.getLoaderVersion());

        // Print the branding version if any was provided
        if (this.branding != null)
        {
            LiteLoaderLogger.info(Verbosity.REDUCED, "Active Pack: %s", this.branding);
        }

        LiteLoaderLogger.info(Verbosity.REDUCED, "Java reports OS=\"%s\"", System.getProperty("os.name").toLowerCase());

        this.enabledModsList = EnabledModsList.createFrom(this.enabledModsFile);
        this.enabledModsList.processModsList(this.profile, modsToLoad);
        
        this.enumerator = this.spawnEnumerator(classLoader);
        this.enumerator.onPreInit();
        
        this.initMixins();

        LiteLoaderLogger.info(Verbosity.REDUCED, "LiteLoader PREINIT complete");
    }

    private void initMixins()
    {
        LiteLoaderLogger.info(Verbosity.REDUCED, "Initialising LiteLoader Mixins");
        this.getAPIAdapter().initMixins();
    }

    /**
     * @param classLoader
     */
    protected LiteLoaderEnumerator spawnEnumerator(LaunchClassLoader classLoader)
    {
        return new LiteLoaderEnumerator(this, this, classLoader);
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.LoaderBootstrap#beginGame()
     */
    @Override
    public void preBeginGame()
    {
        LiteAPI api = this.getAPIProvider().getAPI("liteloader");
        if (api instanceof LiteLoaderCoreAPI)
        {
            ((LiteLoaderCoreAPI)api).getObjectFactory().preBeginGame();
        }

        LoadingProgress.setEnabled(this.getAndStoreBooleanProperty(LoaderProperties.OPTION_LOADING_BAR, true));
        
        if (ObfuscationUtilities.fmlIsPresent())
        {
            LiteLoaderLogger.info("FML detected, switching to searge mappings");
            MixinEnvironment.getDefaultEnvironment().setObfuscationContext("searge");
        }
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.ILoaderBootstrap
     *      #init(java.util.List, net.minecraft.launchwrapper.LaunchClassLoader)
     */
    @Override
    public void init()
    {
        // PreInit failed
        if (this.enumerator == null) return;

        LiteLoader.createInstance(this.getEnvironment(), this.getProperties(), this.classLoader);
        LiteLoader.invokeInit();
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.ILoaderBootstrap#postInit()
     */
    @Override
    public void postInit()
    {
        // PreInit failed
        if (this.enumerator == null) return;

        LiteLoader.invokePostInit();
    }

    /**
     * Set up reflection methods required by the loader
     */
    private boolean prepare()
    {
        try
        {
            // Prepare the properties
            this.prepareProperties();

            // Prepare the log writer
            this.prepareLogger();

            this.prepareBranding();
        }
        catch (Throwable th)
        {
            LiteLoaderLogger.severe(th, "Error initialising LiteLoader Bootstrap");
            return false;
        }

        return true;
    }

    /**
     * @throws SecurityException
     * @throws IOException
     */
    private void prepareLogger() throws SecurityException
    {
        LiteLoaderLogger.info("Setting up logger...");

        Logger logger = LiteLoaderLogger.getLogger();
        Layout<? extends Serializable> layout = PatternLayout.newBuilder()
            .withPattern("[%d{HH:mm:ss}] [%t/%level]: %msg%n")
            .withConfiguration(logger.getContext().getConfiguration())
            .withCharset(Charsets.UTF_8)
            .withAlwaysWriteExceptions(true)
            .build();
        FileAppender fileAppender = FileAppender.newBuilder()
            .withFileName(this.logFile.getAbsolutePath())
            .withAppend(false)
            .withLocking(false)
            .withName("LiteLoader")
            .withImmediateFlush(true)
            .withIgnoreExceptions(true)
            .withBufferedIo(true)
            .withLayout(layout)
            .withAdvertise(false)
            .setConfiguration(logger.getContext().getConfiguration())
            .build();
        fileAppender.start();
        logger.addAppender(fileAppender);
    }

    /**
     * Prepare the loader properties
     */
    private void prepareProperties()
    {
        LiteLoaderLogger.info("Initialising Loader properties...");

        try
        {
            InputStream propertiesStream = LiteLoaderBootstrap.class.getResourceAsStream("/liteloader.properties");

            if (propertiesStream != null)
            {
                this.internalProperties.load(propertiesStream);
                propertiesStream.close();
            }
        }
        catch (Throwable th)
        {
            this.internalProperties = new Properties();
        }

        try
        {
            this.localProperties = new Properties(this.internalProperties);
            InputStream localPropertiesStream = this.getLocalPropertiesStream();

            if (localPropertiesStream != null)
            {
                this.localProperties.load(localPropertiesStream);
                localPropertiesStream.close();
            }
        }
        catch (Throwable th)
        {
            this.localProperties = new Properties(this.internalProperties);
        }
    }

    /**
     * Get the properties stream either from the jar or from the properties file
     * in the minecraft folder
     * 
     * @throws FileNotFoundException
     */
    private InputStream getLocalPropertiesStream() throws FileNotFoundException
    {
        if (this.propertiesFile.exists())
        {
            return new FileInputStream(this.propertiesFile);
        }

        // Otherwise read settings from the config
        return LiteLoaderBootstrap.class.getResourceAsStream("/liteloader.properties");
    }

    /**
     * Write current properties to the properties file
     */
    @Override
    public void writeProperties()
    {
        try
        {
            this.localProperties.store(new FileWriter(this.propertiesFile), String.format("Properties for LiteLoader %s", LiteLoaderVersion.CURRENT));
        }
        catch (Throwable th)
        {
            LiteLoaderLogger.warning(th, "Error writing liteloader properties");
        }
    }

    /**
     * 
     */
    private void prepareBranding()
    {
        this.branding = this.internalProperties.getProperty(LoaderProperties.OPTION_BRAND, null);
        if (this.branding != null && this.branding.length() < 1)
        {
            this.branding = null;
        }

        // Save appropriate branding in the local properties file
        if (this.branding != null)
        {
            this.localProperties.setProperty(LoaderProperties.OPTION_BRAND, this.branding);
        }
        else
        {
            this.localProperties.remove(LoaderProperties.OPTION_BRAND);
        }
    }

    /**
     * Get the game directory
     */
    @Override
    public File getGameDirectory()
    {
        return this.gameDirectory;
    }

    /**
     * Get the assets directory
     */
    @Override
    public File getAssetsDirectory()
    {
        return this.assetsDirectory;
    }

    /**
     * Get the profile directory
     */
    @Override
    public String getProfile()
    {
        return this.profile;
    }

    /**
     * Get the mods folder
     */
    @Override
    public File getModsFolder()
    {
        return this.modsFolder;
    }

    /**
     * Get the mods folder
     */
    @Override
    public File getVersionedModsFolder()
    {
        return this.versionedModsFolder;
    }

    /**
     * Get the base "liteconfig" folder
     */
    @Override
    public File getConfigBaseFolder()
    {
        return this.configBaseFolder;
    }

    /**
     * Get the common configuration folder
     */
    @Override
    public File getCommonConfigFolder()
    {
        return this.commonConfigFolder;
    }

    /**
     * Get the versioned configuration folder
     */
    @Override
    public File getVersionedConfigFolder()
    {
        return this.versionConfigFolder;
    }
    
    /**
     * Get the path to a JSON file describing a mod repository layout, can be
     * null if not defined
     */
    @Override
    public String getModsRepoFile()
    {
        return this.repositoryFile;
    }

    /**
     * Get a boolean propery from the properties file and also write the new
     * value back to the properties file.
     * 
     * @param propertyName
     * @param defaultValue
     */
    @Override
    public boolean getAndStoreBooleanProperty(String propertyName, boolean defaultValue)
    {
        boolean result = this.localProperties.getProperty(propertyName, String.valueOf(defaultValue)).equalsIgnoreCase("true");
        this.localProperties.setProperty(propertyName, String.valueOf(result));
        return result;
    }

    /**
     * Get a boolean propery from the properties file and also write the new
     * value back to the properties file.
     * 
     * @param propertyName
     */
    @Override
    public boolean getBooleanProperty(String propertyName)
    {
        return this.localProperties.getProperty(propertyName, "false").equalsIgnoreCase("true");
    }

    /**
     * Set a boolean property
     * 
     * @param propertyName
     * @param value
     */
    @Override
    public void setBooleanProperty(String propertyName, boolean value)
    {
        this.localProperties.setProperty(propertyName, String.valueOf(value));
    }

    @Override
    public int getAndStoreIntegerProperty(String propertyName, int defaultValue)
    {
        int result = LiteLoaderBootstrap.tryParseInt(this.localProperties.getProperty(propertyName, String.valueOf(defaultValue)), defaultValue);
        this.localProperties.setProperty(propertyName, String.valueOf(result));
        return result;
    }

    @Override
    public int getIntegerProperty(String propertyName)
    {
        return LiteLoaderBootstrap.tryParseInt(this.localProperties.getProperty(propertyName, "0"), 0);
    }

    @Override
    public void setIntegerProperty(String propertyName, int value)
    {
        this.localProperties.setProperty(propertyName, String.valueOf(value));
    }

    /**
     * Store current revision for mod in the config file
     * 
     * @param modKey
     */
    @Override
    public void storeLastKnownModRevision(String modKey)
    {
        if (this.localProperties != null)
        {
            this.localProperties.setProperty(modKey, String.valueOf(LiteLoaderVersion.CURRENT.getLoaderRevision()));
            this.writeProperties();
        }
    }

    /**
     * Get last know revision for mod from the config file 
     * 
     * @param modKey
     */
    @Override
    public int getLastKnownModRevision(String modKey)
    {
        if (this.localProperties != null)
        {
            String storedRevision = this.localProperties.getProperty(modKey, "0");
            return Integer.parseInt(storedRevision);
        }

        return 0;
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.LoaderEnvironment#loadTweaksEnabled()
     */
    @Override
    public boolean loadTweaksEnabled()
    {
        return this.loadTweaks;
    }

    /**
     * Used to get the name of the modpack being used
     * 
     * @return name of the modpack in use or null if no pack
     */
    @Override
    public String getBranding()
    {
        return this.branding;
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.LoaderBootstrap
     *      #getRequiredTransformers()
     */
    @Override
    public List<String> getRequiredTransformers()
    {
        return this.getAPIAdapter().getRequiredTransformers();
    }

    /* (non-Javadoc)
     * @see com.mumfrey.liteloader.launch.LoaderBootstrap
     *      #getRequiredDownstreamTransformers()
     */
    @Override
    public List<String> getRequiredDownstreamTransformers()
    {
        List<String> requiredDownstreamTransformers = this.getAPIAdapter().getRequiredDownstreamTransformers();
        requiredDownstreamTransformers.add(0, "com.mumfrey.liteloader.transformers.event.EventTransformer");
        return requiredDownstreamTransformers;
    }

    private static int tryParseInt(String string, int defaultValue)
    {
        try
        {
            return Integer.parseInt(string);
        }
        catch (NumberFormatException ex)
        {
            return defaultValue;
        }
    }
}