/* * Copyright 2012 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.debug.core.server; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * A lightweight representation of a VM library. See also VmLibrary. */ public class VmLibraryRef implements Comparable<VmLibraryRef> { static List<VmLibraryRef> createFrom(JSONArray arr) throws JSONException { if (arr == null) { return Collections.emptyList(); } List<VmLibraryRef> result = new ArrayList<VmLibraryRef>(); for (int i = 0; i < arr.length(); i++) { result.add(VmLibraryRef.createFrom(arr.getJSONObject(i))); } return result; } static VmLibraryRef createFrom(JSONObject obj) { VmLibraryRef lib = new VmLibraryRef(); lib.id = obj.optInt("id"); lib.url = obj.optString("url"); return lib; } private int id; private String url; private VmLibraryRef() { } @Override public int compareTo(VmLibraryRef other) { return url.compareToIgnoreCase(other.getUrl()); } public int getId() { return id; } public String getUrl() { return url; } /** * Returns whether this library ref is for the 'dart:async' library. */ public boolean isAsync() { return "dart:async".equals(url); } /** * Returns whether this library ref is for an internal Dart library. */ public boolean isInternal() { return url.startsWith("dart:_") || "dart:nativewrappers".equals(url); } @Override public String toString() { return "[" + id + "," + url + "]"; } }