fileSystems-roots.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. var fsMap = null;
  22. var FileSystem = require('./FileSystem');
  23. var LocalFileSystem = require('./LocalFileSystem');
  24. var exec = require('cordova/exec');
  25. var requestFileSystem = function(type, size, successCallback) {
  26. var success = function(file_system) {
  27. if (file_system) {
  28. if (successCallback) {
  29. var fs = new FileSystem(file_system.name, file_system.root);
  30. successCallback(fs);
  31. }
  32. }
  33. };
  34. exec(success, null, "File", "requestFileSystem", [type, size]);
  35. };
  36. require('./fileSystems').getFs = function(name, callback) {
  37. if (fsMap) {
  38. callback(fsMap[name]);
  39. } else {
  40. requestFileSystem(LocalFileSystem.PERSISTENT, 1, function(fs) {
  41. requestFileSystem(LocalFileSystem.TEMPORARY, 1, function(tmp) {
  42. fsMap = {};
  43. fsMap[tmp.name] = tmp;
  44. fsMap[fs.name] = fs;
  45. callback(fsMap[name]);
  46. });
  47. });
  48. }
  49. };