Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java

Issue 10827457: rename refactor SystemLibraryManager -> PackagelibraryManager SdkLibraryManager -> SystemLibraryM... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java (revision 11058)
+++ editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java (working copy)
@@ -1,111 +0,0 @@
-/*
- * Copyright (c) 2012, the Dart project authors.
- *
- * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
- * in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License
- * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- * or implied. See the License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.google.dart.tools.core.internal.model;
-
-import com.google.dart.compiler.SystemLibrary;
-import com.google.dart.compiler.SystemLibraryManager;
-import com.google.dart.tools.core.DartCore;
-import com.google.dart.tools.core.analysis.AnalysisServer;
-import com.google.dart.tools.core.analysis.index.AnalysisIndexManager;
-import com.google.dart.tools.core.model.DartSdk;
-
-import java.io.File;
-import java.net.URI;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * The class <code>SystemLibraryManagerProvider</code> manages the {@link SystemLibraryManager
- * system library managers} used by the tools.
- */
-public class SystemLibraryManagerProvider {
-
- private static final class MissingSdkLibaryManager extends SystemLibraryManager {
-
- private static final SystemLibrary[] NO_LIBRARIES = new SystemLibrary[0];
-
- public MissingSdkLibaryManager(File sdkPath, String platformName) {
- super(sdkPath, platformName);
- }
-
- @Override
- public URI getShortUri(URI uri) {
- return uri;
- }
-
- @Override
- protected SystemLibrary[] getDefaultLibraries() {
- return NO_LIBRARIES;
- }
-
- }
-
- private static final Object lock = new Object();
-
- private static SystemLibraryManager ANY_LIBRARY_MANAGER;
-
- /**
- * Return the manager for VM libraries
- */
- public static SystemLibraryManager getAnyLibraryManager() {
- synchronized (lock) {
- if (ANY_LIBRARY_MANAGER == null) {
-
- DartSdk sdk = DartSdk.getInstance();
- if (!DartSdk.isInstalled()) {
- DartCore.logError("Missing SDK");
- ANY_LIBRARY_MANAGER = new MissingSdkLibaryManager(null, "any");
- return ANY_LIBRARY_MANAGER;
- }
-
- File sdkDir = sdk.getDirectory();
- if (!sdkDir.exists()) {
- DartCore.logError("Missing libraries directory: " + sdkDir);
- return null;
- }
-
- DartCore.logInformation("Reading bundled libraries from " + sdkDir);
-
- ANY_LIBRARY_MANAGER = new SystemLibraryManager(sdkDir, "any");
- String packageRoot = DartCore.getPlugin().getPrefs().get(
- DartCore.PACKAGE_ROOT_DIR_PREFERENCE,
- "");
- if (packageRoot != null && !packageRoot.isEmpty()) {
- String[] roots = packageRoot.split(";");
- List<File> packageRoots = new ArrayList<File>();
- for (String path : roots) {
- packageRoots.add(new File(path));
- }
- ANY_LIBRARY_MANAGER.setPackageRoots(packageRoots);
- }
-
- }
- }
- return ANY_LIBRARY_MANAGER;
- }
-
- /**
- * Answer the server used to analyze source against the "dart-sdk/lib" directory
- */
- public static AnalysisServer getDefaultAnalysisServer() {
- return AnalysisIndexManager.getServer();
- }
-
- /**
- * Return the default library manager.
- */
- public static SystemLibraryManager getSystemLibraryManager() {
- return getAnyLibraryManager();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698