summaryrefslogblamecommitdiff
path: root/server/frob/storage.ts
blob: ab44ba14a8c9e8010f9f40e397022bb8e26243dd (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                      







                                                                                                                                                 
                                 



                                                                            
                                         






















                                                                          
 
                                                                                                                                                                                    




                                                 
                                                                                                                     




                                                               
                                                         
 
                                 





























                                                          

                                 

                    



                                         
             
                                                            


                          
                                                                                                


                                



                         

                                                                       
                                           








                                                                                   


                              
                                                                                                             


                                                                                           


     
                  
                            
 
                                   













                                                                   


                  
               
 
import { SQLHandler } from "./sql.ts";

class StorageParser {
    private storage_line =
    "^" +
    "(?<account_id>[0-9]+),(?<storage_amount>[0-9]+)\t" +
    "(?<items>([0-9]+,(?<nameid>[0-9]+),(?<amount>[0-9]+),(?<equip>[0-9]+),[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+ )+)\t$";
    private storage_items_line = "[0-9]+,(?<nameid>[0-9]+),(?<amount>[0-9]+),(?<equip>[0-9]+),[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+,[0-9]+ ";
    private storage_regex: RegExp;
    private storage_regex_items: RegExp;
    private encoder: TextEncoder;

    constructor () {
        this.storage_regex = new RegExp(this.storage_line);
        this.storage_regex_items = new RegExp(this.storage_items_line, "g");
        this.encoder = new TextEncoder();
    }

    private parseLine (line: string) {
        const match = this.storage_regex.exec(line);

        if (!(match instanceof Object) || !Reflect.has(match, "groups")) {
            console.error("line does not match the storage regex:", line);
            throw new SyntaxError();
        }

        const groups = (match as any).groups;
        let items = [];

        if (groups.items.length > 1) {
            let match_items = this.storage_regex_items.exec(groups.items);

            while (match_items !== null) {
                items.push((match_items as any).groups);
                match_items = this.storage_regex_items.exec(groups.items);
            }
        }

        groups.items = items;

        Deno.write(Deno.stdout.rid, this.encoder.encode(`\r                                                          \r⌛ processing storage of account ${groups.account_id}...`));
        return groups;
    }

    public async * readDB () {
        const decoder = new TextDecoder("utf-8");
        console.info("\r                                                          \nwalking through storage.txt...");
        const file = await Deno.open("world/save/storage.txt");
        const buf = new Uint8Array(1024);
        let accumulator = "";

        while (true) {
            const nread = await Deno.read(file.rid, buf);

            if (nread === null) {
                break;
            }

            const str = decoder.decode(buf);

            if (nread < 1024) {
                for (let c of str) {
                    if (c === "\n") {
                        yield this.parseLine(accumulator);
                        break;
                    } else {
                        accumulator += c;
                    }
                }
                break;
            }

            for (let c of str) {
                if (c === "\n") {
                    yield this.parseLine(accumulator);
                    accumulator = "";
                } else {
                    accumulator += c;
                }
            }
        }
    }
}

class StorageWriter {
    private file?: Deno.File;
    private encoder: TextEncoder;

    constructor () {
        this.encoder = new TextEncoder();
    }

    async init () {
        try {
            await Deno.remove("world/save/storage.txt.tmp");
        } catch {
            // ignore this
        }
        this.file = await Deno.open("world/save/storage.txt.tmp", {append: true, create: true});
    }

    async write (storage: any) {
        if (!this.file) {
            return;
        }

        let line = `${storage.account_id},${storage.storage_amount}\t`;

        for (const item of storage.items) {
            line += `0,${item.nameid},${item.amount},${item.equip},0,0,0,0,0,0,0 `;
        }

        line += `\t`; // end of items
        line += `\n`;

        await Deno.write(this.file.rid, this.encoder.encode(line));
    }

    async finalize () {
        if (this.file) {
            this.file.close();
            console.info("\roverwriting storage.txt...                                                    ");
            await Deno.rename("world/save/storage.txt", "world/save/storage.txt_pre-frob");
            await Deno.rename("world/save/storage.txt.tmp", "world/save/storage.txt");
        }
    }
}

class StorageSQL {
    private sql: SQLHandler;

    constructor (sql: SQLHandler) {
        this.sql = sql;
    }

    async write (acc: any) {
        for (const item of acc.items) {
            await this.sql.do("INSERT INTO `storage` ?? values?", [
                ["account_id", "nameid", "amount"],
                [acc.account_id, item.nameid, item.amount]
            ]);
        }
    }
}


export {
    StorageParser,
    StorageWriter,
    StorageSQL,
}