1 /** 2 Copyright 2018 Mark Fisher 3 4 Permission is hereby granted, free of charge, to any person obtaining a copy of 5 this software and associated documentation files (the "Software"), to deal in 6 the Software without restriction, including without limitation the rights to 7 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 8 of the Software, and to permit persons to whom the Software is furnished to do 9 so, subject to the following conditions: 10 11 The above copyright notice and this permission notice shall be included in all 12 copies or substantial portions of the Software. 13 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 20 SOFTWARE. 21 **/ 22 module dxx.util.storage; 23 24 private import standardpaths; 25 private import std.stdio; 26 private import std.path; 27 private import std.file; 28 29 private import dxx.util.messages; 30 private import dxx.util.config; 31 32 mixin __Text; 33 34 auto outputConfigFile(alias app)(string fn) 35 { 36 string configDir = writablePath(StandardPath.config, buildPath(app.organizationName, app.applicationName), FolderFlag.create); 37 if (!configDir.length) { 38 enum msg = DXXConfig.messages.MSG_CONFIG_DIR; 39 //enum msg = "err_config_dir"; 40 throw new Exception(MsgText!msg()); 41 } 42 string configFile = buildPath(configDir, fn); 43 44 return File(configFile, "w"); 45 } 46 47 auto inputConfigFile(alias app)(string fn) 48 { 49 string[] configDirs = standardPaths(StandardPath.config, buildPath(app.organizationName, app.applicationName)); 50 51 foreach(configDir; configDirs) { 52 string configFile = buildPath(configDir, fn); 53 if (configFile.exists) { 54 return File(configFile, "r"); 55 } 56 } 57 enum msg = DXXConfig.messages.MSG_CONFIG_NOT_FOUND; 58 //enum msg = "err_config_not_found"; 59 throw new Exception(MsgText!msg(fn)); 60 } 61 62 unittest { 63 import dxx.util.config; 64 auto confOut = outputConfigFile!(DXXConfig.app)("tests.conf"); 65 confOut.write("[tests]"); 66 auto confIn = inputConfigFile!(DXXConfig.app)("tests.conf"); 67 //assert(confIn !is null); 68 } 69