summaryrefslogtreecommitdiff
path: root/src/argument.cpp
blob: 387151a9258ddd1099d6557f5f1b61f31cca07f8 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
 *  Argument.cpp
 *
 *  Implementation for the Argument class
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */
#include "includes.h"

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  Move constructor
 *  @param  argument
 */
Argument::Argument(Argument &&argument)
{
    // copy data
    _info = argument._info;
}

/**
 *  Change the name
 *  @param  name
 *  @return Argument
 */
Argument &Argument::name(const char *name)
{
    _info->name = name;
    _info->name_len = strlen(name);
    return *this;
}

/**
 *  Change the type
 *  @param  type
 *  @return Argument
 */
Argument &Argument::type(Type type)
{
    _info->type_hint = type;
    return *this;
}

/**
 *  Require the parameter to be a certain class
 *  @param  name        Name of the class
 *  @param  null        Are null values allowed?
 *  @return Argument
 */
Argument &Argument::object(const char *classname, bool null)
{
    _info->type_hint = objectType;
    _info->class_name = classname;
    _info->class_name_len = strlen(classname);
    _info->allow_null = null;
    return *this;
}

/**
 *  Is this a by-ref argument?
 *  @param  bool        Mark as by-ref variable
 *  @return Argument
 */
Argument &Argument::byref(bool value)
{
    _info->pass_by_reference = value;
    return *this;
}

/**
 *  End of namespace
 */
}