NSIS/Source/uservars.h
joostverburg e497d771b1 * The LZMA compression module for NSIS is now licensed under the Common Public License version 1.0
* Added license and copyright notice to every source file
* The new COPYING file and license section in the Users Manual list the terms of all relevant licenses


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4787 212acab6-be3b-0410-9dea-997c60f758d6
2006-10-28 19:45:02 +00:00

103 lines
2.2 KiB
C++

/*
* uservars.h
*
* This file is a part of NSIS.
*
* Copyright (C) 2003 Ramon
*
* Licensed under the zlib/libpng license (the "License");
* you may not use this file except in compliance with the License.
*
* Licence details can be found in the file COPYING.
*
* This software is provided 'as-is', without any express or implied
* warranty.
*/
#ifndef ___USERVARS___H_____
#define ___USERVARS___H_____
#include "lang.h"
struct uservarstring {
int name;
int index;
int pos;
int reference;
};
class UserVarsStringList : public SortedStringListND<struct uservarstring>
{
public:
UserVarsStringList()
{
index = 0;
}
~UserVarsStringList() { }
int add(const char *name, int ref_count = 0 )
{
int pos=SortedStringListND<struct uservarstring>::add(name);
if (pos == -1) return -1;
((struct uservarstring*)gr.get())[pos].index = index;
((struct uservarstring*)gr.get())[pos].pos = pos;
((struct uservarstring*)gr.get())[pos].reference = ref_count;
int temp = index;
index++;
return temp;
}
int get(char *name, int n_chars = -1)
{
int v=SortedStringListND<struct uservarstring>::find(name, n_chars);
if (v==-1) return -1;
return (((struct uservarstring*)gr.get())[v].index);
}
int getnum()
{
return index;
}
int get_reference(int idx)
{
int pos=get_internal_idx(idx);
if (pos==-1) return -1;
return (((struct uservarstring*)gr.get())[pos].reference);
}
int inc_reference(int idx)
{
int pos=get_internal_idx(idx);
((struct uservarstring*)gr.get())[pos].reference++;
return (((struct uservarstring*)gr.get())[pos].reference)-1;
}
char *idx2name(int idx)
{
int pos=get_internal_idx(idx);
if (pos==-1) return NULL;
struct uservarstring *data=(struct uservarstring *)gr.get();
return ((char*)strings.get() + data[pos].name);
}
private:
int index;
int get_internal_idx(int idx)
{
struct uservarstring *data=(struct uservarstring *)gr.get();
for (int i = 0; i < index; i++)
{
if (data[i].index == idx)
{
return i;
}
}
return -1;
}
};
#endif