Module:Sandbox/TiiJ7/StringBuilder

StringBuilder is a simple module that can be used to concatenate many strings into one bigger string. It stores all strings in a table and then concatenates the

Module:Sandbox/TiiJ7/StringBuilder

------------------------------------------------------------
-- Quick module to help creating a concatenated string.
-- To be used in other modules.
--
-- By User:TiiJ7
------------------------------------------------------------
 
local StringBuilder = {}
StringBuilder.__index = StringBuilder
local StringBuilderModes = { convert = true, ignore = true, error = true }
 
-- Creates a new string builder
function StringBuilder.new()
    local sb = {}
    setmetatable(sb,StringBuilder)
    sb._buffer = {}
    sb._mode = 'convert'
    sb._separator = ''
    return sb
end
 
-- Sets the mode of the string builder, see doc
function StringBuilder:setMode(mode)
    if not mode then return self end
    if StringBuilderModes[mode] then
        self._mode = mode
    end
    return self -- Method chaining
end
 
-- Sets the separator with which the strings are concatted
function StringBuilder:setSeparator(separator)
    if not separator then return self end
    separator = tostring(separator)
    if separator ~= nil then self._separator = separator end
    return self -- Method chaining
end
 
-- Appends a string
function StringBuilder:append(str)
    if str then
        self:_addString(str,self._buffer)
    end
    return self -- Method chaining
end
 
-- Appends multiple strings
function StringBuilder:appendAll(...)
    local argcount = select('#',...)
    if argcount then
        local b = self._buffer
        local f = self._addString
        for i=1,argcount do
           f(self,select(i,...),b)
        end
    end
    return self -- Method chaining
end
 
-- Clears the internal buffer
function StringBuilder:clear()
    local b = self._buffer
    for i=1,#b do
        b[i] = nil     
    end
    return self -- Method chaining
end
 
-- Returns the result as a string
function StringBuilder:toString()
    local b = self._buffer
    if #b == 0 then return '' end
    return table.concat(b,self._separator)
end
 
-- Adds a single string
function StringBuilder:_addString(str,t)
    if type(str) ~= 'string' and type(str) ~= 'number' then
        local m = self._mode
        if m == 'convert' then
            str = tostring(str)
            if not str then return end
        elseif m == 'error' then
            error( 'ERROR: Trying to append object of type "' .. type(str) .. '"' )
        else
            return
        end
    end
    t[#t+1] = str
end
 
-- Meta tostring function
function StringBuilder:__tostring()
    return self:toString()
end
 
-- Some function aliases...
StringBuilder.a = StringBuilder.append
StringBuilder.aa = StringBuilder.appendAll
StringBuilder.c = StringBuilder.clear
StringBuilder.m = StringBuilder.setMode
StringBuilder.s = StringBuilder.setSeparator
 
return StringBuilder

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.