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

Unified Diff: pkg/analysis_server/lib/src/index/store/separate_file_manager.dart

Issue 346273005: A FileManager implementation to keep each index file in a separate file system file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments Created 6 years, 6 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
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/index/store/split_store.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/index/store/separate_file_manager.dart
diff --git a/pkg/analysis_server/lib/src/index/store/separate_file_manager.dart b/pkg/analysis_server/lib/src/index/store/separate_file_manager.dart
new file mode 100644
index 0000000000000000000000000000000000000000..143fb5ea0a6b9e4f512a5a7a685c7c2ff774e187
--- /dev/null
+++ b/pkg/analysis_server/lib/src/index/store/separate_file_manager.dart
@@ -0,0 +1,59 @@
+// Copyright (c) 2014, 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.
+
+library index.store.separate_file_mananer;
+
+import 'dart:async';
+import 'dart:io';
+
+import 'package:analysis_server/src/index/store/split_store.dart';
+import 'package:path/path.dart' as pathos;
+
+
+/**
+ * An implementation of [FileManager] that keeps each file in a separate file
+ * system file.
+ */
+class SeparateFileManager implements FileManager {
+ final Directory _directory;
+
+ SeparateFileManager(this._directory) {
+ clear();
+ }
+
+ @override
+ void clear() {
+ List<FileSystemEntity> entries = _directory.listSync();
+ for (FileSystemEntity entry in entries) {
+ entry.deleteSync(recursive: true);
+ }
+ }
+
+ @override
+ void delete(String name) {
+ File file = _getFile(name);
+ try {
+ file.deleteSync();
+ } catch (e) {
+ }
+ }
+
+ @override
+ Future<List<int>> read(String name) {
+ File file = _getFile(name);
+ return file.readAsBytes().catchError((e) {
+ return null;
+ });
+ }
+
+ @override
+ Future write(String name, List<int> bytes) {
+ return _getFile(name).writeAsBytes(bytes);
+ }
+
+ File _getFile(String name) {
+ String path = pathos.join(_directory.path, name);
+ return new File(path);
+ }
+}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/index/store/split_store.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698