From 2459c82bf90e0ca5023a283d60d741ab82bec4bd Mon Sep 17 00:00:00 2001 From: regiostech Date: Fri, 24 Jun 2016 16:56:34 -0400 Subject: [PATCH] More memory service bugs --- lib/src/http/services/memory.dart | 25 +++++++++++-------------- pubspec.yaml | 2 +- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/lib/src/http/services/memory.dart b/lib/src/http/services/memory.dart index 29a4adf1..06a777f4 100644 --- a/lib/src/http/services/memory.dart +++ b/lib/src/http/services/memory.dart @@ -7,7 +7,7 @@ class MemoryModel { /// An in-memory [Service]. class MemoryService extends Service { - List items = []; + Map items = {}; MemoryService() :super() { if (!reflectType(T).isAssignableTo(reflectType(MemoryModel))) { @@ -21,18 +21,15 @@ class MemoryService extends Service { } Future index([Map params]) async { - List result = []; - - for (int i = 0; i < items.length; i++) { - result.add(_makeJson(i, items[i])); - } - - return result; + return items.keys + .where((index) => items[index] != null) + .map((index) => _makeJson(index, items[index])) + .toList(); } Future read(id, [Map params]) async { int desiredId = int.parse(id.toString()); - if (items.length > desiredId) { + if (items.containsKey(desiredId)) { MemoryModel found = items[desiredId]; if (found != null) { return _makeJson(desiredId, found); @@ -46,7 +43,7 @@ class MemoryService extends Service { data, outputType: T); created.id = items.length; - items.add(created); + items[created.id] = created; return created; /*} catch (e) { throw new AngelHttpException.BadRequest(message: 'Invalid data.'); @@ -55,7 +52,7 @@ class MemoryService extends Service { Future modify(id, data, [Map params]) async { int desiredId = int.parse(id.toString()); - if (items.length > desiredId) { + if (items.containsKey(desiredId)) { try { Map existing = god.serializeObject(items[desiredId]); data = mergeMap([existing, data]); @@ -70,7 +67,7 @@ class MemoryService extends Service { Future update(id, data, [Map params]) async { int desiredId = int.parse(id.toString()); - if (items.length > desiredId) { + if (items.containsKey(desiredId)) { try { items[desiredId] = (data is Map) ? god.deserializeDatum(data, outputType: T) : data; @@ -83,9 +80,9 @@ class MemoryService extends Service { Future remove(id, [Map params]) async { int desiredId = int.parse(id.toString()); - if (items.length > desiredId) { + if (items.containsKey(desiredId)) { MemoryModel item = items[desiredId]; - items.removeAt(desiredId); + items[desiredId] = null; return _makeJson(desiredId, item); } else throw new AngelHttpException.NotFound(); } diff --git a/pubspec.yaml b/pubspec.yaml index a0b77441..d63a18b4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_framework -version: 1.0.0-dev+3 +version: 1.0.0-dev+5 description: Core libraries for the Angel framework. author: Tobe O homepage: https://github.com/angel-dart/angel_framework