Coverage Report

Created: 2025-12-14 06:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/php-src/ext/uri/uriparser/src/UriIp4Base.c
Line
Count
Source
1
/*
2
 * uriparser - RFC 3986 URI parsing library
3
 *
4
 * Copyright (C) 2007, Weijia Song <songweijia@gmail.com>
5
 * Copyright (C) 2007, Sebastian Pipping <sebastian@pipping.org>
6
 * All rights reserved.
7
 *
8
 * Redistribution and use in source  and binary forms, with or without
9
 * modification, are permitted provided  that the following conditions
10
 * are met:
11
 *
12
 *     1. Redistributions  of  source  code   must  retain  the  above
13
 *        copyright notice, this list  of conditions and the following
14
 *        disclaimer.
15
 *
16
 *     2. Redistributions  in binary  form  must  reproduce the  above
17
 *        copyright notice, this list  of conditions and the following
18
 *        disclaimer  in  the  documentation  and/or  other  materials
19
 *        provided with the distribution.
20
 *
21
 *     3. Neither the  name of the  copyright holder nor the  names of
22
 *        its contributors may be used  to endorse or promote products
23
 *        derived from  this software  without specific  prior written
24
 *        permission.
25
 *
26
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27
 * "AS IS" AND  ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING, BUT NOT
28
 * LIMITED TO,  THE IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS
29
 * FOR  A  PARTICULAR  PURPOSE  ARE  DISCLAIMED.  IN  NO  EVENT  SHALL
30
 * THE  COPYRIGHT HOLDER  OR CONTRIBUTORS  BE LIABLE  FOR ANY  DIRECT,
31
 * INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL DAMAGES
32
 * (INCLUDING, BUT NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE GOODS OR
33
 * SERVICES; LOSS OF USE, DATA,  OR PROFITS; OR BUSINESS INTERRUPTION)
34
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35
 * STRICT  LIABILITY,  OR  TORT (INCLUDING  NEGLIGENCE  OR  OTHERWISE)
36
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
37
 * OF THE POSSIBILITY OF SUCH DAMAGE.
38
 */
39
40
/**
41
 * @file UriIp4Base.c
42
 * Holds code independent of the encoding pass.
43
 */
44
45
#ifndef URI_DOXYGEN
46
#  include "UriIp4Base.h"
47
#endif
48
49
0
void uriStackToOctet(UriIp4Parser * parser, unsigned char * octet) {
50
0
    switch (parser->stackCount) {
51
0
    case 1:
52
0
        *octet = parser->stackOne;
53
0
        break;
54
55
0
    case 2:
56
0
        *octet = parser->stackOne * 10 + parser->stackTwo;
57
0
        break;
58
59
0
    case 3:
60
0
        *octet = parser->stackOne * 100 + parser->stackTwo * 10 + parser->stackThree;
61
0
        break;
62
63
0
    default:;
64
0
    }
65
0
    parser->stackCount = 0;
66
0
}
67
68
0
void uriPushToStack(UriIp4Parser * parser, unsigned char digit) {
69
0
    switch (parser->stackCount) {
70
0
    case 0:
71
0
        parser->stackOne = digit;
72
0
        parser->stackCount = 1;
73
0
        break;
74
75
0
    case 1:
76
0
        parser->stackTwo = digit;
77
0
        parser->stackCount = 2;
78
0
        break;
79
80
0
    case 2:
81
0
        parser->stackThree = digit;
82
0
        parser->stackCount = 3;
83
0
        break;
84
85
0
    default:;
86
0
    }
87
0
}