aboutsummaryrefslogtreecommitdiff
path: root/src/functionunique.cpp
blob: ef249c98d767eb001914c23fb93b9bb0e54cfe7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
 *
 * This file is part of the Xagasoft Build and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "functionunique.h"

#include <bu/hash.h>
#include <bu/plugger.h>
PluginInterface3( pluginFunctionUnique, unique, FunctionUnique, Function,
        "Mike Buland", 0, 1 );

FunctionUnique::FunctionUnique()
{
}

FunctionUnique::~FunctionUnique()
{
}

Bu::String FunctionUnique::getName() const
{
    return "unique";
}

Variable FunctionUnique::call( Variable &input, VarList lParams )
{
    if( lParams.getSize() > 0 )
        throw Bu::ExceptionBase("Unique does not take any parameters.");
    if( input.getType() != Variable::typeList )
        throw Bu::ExceptionBase("unique does not work on non-list types.");

    Bu::Hash<Bu::String, bool> hHas;

    Variable vOut( Variable::typeList );
    for( VarList::iterator i = input.begin(); i; i++ )
    {
        if( (*i).getType() != Variable::typeString )
            continue;

        Bu::String s = (*i).getString();
        
        if( hHas.has( s ) )
            continue;

        hHas.insert( s, true );
        vOut.append( *i );
    }

    return vOut;
}