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

Unified Diff: pkg/serialization/lib/src/mirrors_helpers.dart

Issue 11293283: Initial version of a serialization framework (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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: pkg/serialization/lib/src/mirrors_helpers.dart
===================================================================
--- pkg/serialization/lib/src/mirrors_helpers.dart (revision 0)
+++ pkg/serialization/lib/src/mirrors_helpers.dart (revision 0)
@@ -0,0 +1,60 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/**
+ * Provides some additional convenience methods on top of the basic mirrors
+ */
+library mirrors_helpers;
+
+// Import and re-export mirrors here to minimize both dependence on mirrors
+// and the number of times we have to be told that mirrors aren't finished yet.
Jennifer Messerly 2012/11/15 08:02:14 Did you know: mirrors aren't finished yet? ;)
Alan Knight 2012/11/15 20:51:03 :-)
+import 'dart:mirrors';
+export 'dart:mirrors';
+import 'serialization_helpers.dart';
+
+/**
+ * Return a list of all the public fields of a class, including inherited
+ * fields.
+ */
+List<VariableMirror> publicFields(ClassMirror mirror) {
+ var mine = mirror.variables.values.filter(
+ (x) => !(x.isPrivate || x.isStatic));
+ var mySuperclass = mirror.superclass;
+ if (mySuperclass != mirror) {
+ return append(publicFields(mirror.superclass), mine);
+ } else {
+ return mine;
+ }
+}
+
+/**
+ * Return a list of all the public getters of a class, including inherited
+ * getters.
+ */
+List<MethodMirror> publicGetters(ClassMirror mirror) {
+ var mine = mirror.getters.values.filter((x) => !(x.isPrivate || x.isStatic));
+ var mySuperclass = mirror.superclass;
+ if (mySuperclass != mirror) {
+ return append(publicGetters(mirror.superclass), mine);
+ } else {
+ return mine;
+ }
+}
+
+/**
+ * Return a list of all the public getters of a class which have corresponding
+ * setters.
+ */
+List<MethodMirror> publicGettersWithMatchingSetters(ClassMirror mirror) {
+ var setters = mirror.setters;
+ return publicGetters(mirror).filter((each) =>
+ setters["${each.simpleName}="] != null);
+}
+
+/**
+ * A particularly bad case of polyfill, because we cannot yet use type names
+ * as literals, so we have to be passed an instance and then extract a
+ * ClassMirror from that. Given a horrible name as an extra reminder to fix it.
+ */
+ClassMirror turnInstanceIntoSomethingWeCanUse(x) => reflect(x).type;

Powered by Google App Engine
This is Rietveld 408576698