/* Copyright 2023 Jaakko Keränen Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "snippets.h" #include #include #include #include #include #include iDeclareClass(Snippet); struct Impl_Snippet { iObject object; iString content; }; static void init_Snippet(iSnippet *d, const iString *content) { initCopy_String(&d->content, content); } static void deinit_Snippet(iSnippet *d) { deinit_String(&d->content); } iDefineObjectConstructionArgs(Snippet, (const iString *content), content) iDefineClass(Snippet) /*----------------------------------------------------------------------------------------------*/ static const char *fileName_Snippets_ = "snippets.ini"; iDeclareType(Snippets); struct Impl_Snippets { iMutex *mtx; iStringHash *hash; }; static iSnippets *snippets_; void init_Snippets(const char *saveDir) { iAssert(!snippets_); iSnippets *d = snippets_ = iMalloc(Snippets); d->mtx = new_Mutex(); d->hash = new_StringHash(); load_Snippets(saveDir); } void deinit_Snippets(void) { iAssert(snippets_); iSnippets *d = snippets_; iGuardMutex(d->mtx, iRelease(d->hash)); delete_Mutex(d->mtx); } void serialize_Snippets(iStream *outs) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); iString *str = new_String(); iConstForEach(StringHash, i, d->hash) { const iString *key = key_StringHashConstIterator(&i); const iSnippet *value = value_StringHashNode(i.value); format_String(str, "[%s]\ncontent = \"%s\"\n\n", cstr_String(key), cstrCollect_String(quote_String(&value->content, iFalse))); write_Stream(outs, utf8_String(str)); } delete_String(str); unlock_Mutex(d->mtx); } static void handleKeyValue_Snippets_(void *context, const iString *table, const iString *key, const iTomlValue *value) { const enum iImportMethod *method = context; if (!cmp_String(key, "content") && value->type == string_TomlType) { if (*method == all_ImportMethod || (*method == ifMissing_ImportMethod && !contains_Snippets(table))) { set_Snippets(table, value->value.string); } } } void deserialize_Snippets(iStream *ins, enum iImportMethod method) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); clear_StringHash(d->hash); iTomlParser *toml = new_TomlParser(); setHandlers_TomlParser(toml, NULL, handleKeyValue_Snippets_, &method); parse_TomlParser(toml, collect_String(newBlock_String(collect_Block(readAll_Stream(ins))))); delete_TomlParser(toml); unlock_Mutex(d->mtx); } void save_Snippets(const char *saveDir) { iFile *f = newCStr_File(concatPath_CStr(saveDir, fileName_Snippets_)); if (open_File(f, writeOnly_FileMode | text_FileMode)) { serialize_Snippets(stream_File(f)); } iRelease(f); } void load_Snippets(const char *saveDir) { iFile *f = newCStr_File(concatPath_CStr(saveDir, fileName_Snippets_)); if (open_File(f, readOnly_FileMode | text_FileMode)) { deserialize_Snippets(stream_File(f), all_ImportMethod); } iRelease(f); } iBool set_Snippets(const iString *name, const iString *content) { iAssert(snippets_); if (isEmpty_String(name) || (content && isEmpty_String(content))) { return iFalse; } iSnippets *d = snippets_; lock_Mutex(d->mtx); if (content) { insert_StringHash(d->hash, name, iClob(new_Snippet(content))); } else { remove_StringHash(d->hash, name); } unlock_Mutex(d->mtx); return iTrue; } const iString *get_Snippets(const iString *name) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); const iSnippet *value = value_StringHash(d->hash, name); iString *content = NULL; if (value) { content = collect_String(copy_String(&value->content)); } unlock_Mutex(d->mtx); return content ? content : collectNew_String(); } iBool contains_Snippets(const iString *name) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); const iBool gotIt = contains_StringHash(d->hash, name); unlock_Mutex(d->mtx); return gotIt; } static int cmp_StringPtr_(const iString *a, const iString *b) { return cmpStringCase_String(a, b); } const iStringArray *names_Snippets(void) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); iStringArray *names = new_StringArray(); iConstForEach(StringHash, i, d->hash) { pushBack_StringArray(names, key_StringHashConstIterator(&i)); } sort_Array(&names->strings, (int (*)(const void *, const void *)) cmp_StringPtr_); unlock_Mutex(d->mtx); return collect_StringArray(names); } const iStringArray *namesWithContent_Snippets(const char *separator) { iAssert(snippets_); iSnippets *d = snippets_; lock_Mutex(d->mtx); iStringArray *names = new_StringArray(); iString elem; init_String(&elem); iConstForEach(StringHash, i, d->hash) { const iSnippet *value = value_StringHashNode(i.value); set_String(&elem, key_StringHashConstIterator(&i)); appendCStr_String(&elem, separator); append_String(&elem, &value->content); pushBack_StringArray(names, &elem); } deinit_String(&elem); sort_Array(&names->strings, (int (*)(const void *, const void *)) cmp_StringPtr_); unlock_Mutex(d->mtx); return collect_StringArray(names); }