StringBuffer.php

Gesponsorde koppelingen

PHP script bestanden

  1. Connection.php
  2. Listening.php
  3. Poller.php
  4. HttpRequest.php
  5. StringBuffer.php
  6. Accept.php
  7. Status.php
  8. Error.php

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
/**
* Streams library
* Copyright (c) 2012, Remco Pander
*
* This library consists of a set of classes that can be used to create high-performing
* applications using full-duplex connections. It uses the built-in stream functions
* provided with php.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*
* @package    Streams
* @author     Remco Pander <[email protected]>
* @version    v1 initial release
* @copyright  Copyright (c) 2012, Remco Pander
*/


namespace Streams;

class StringBuffer
{
        // Buffer
        private $s_Buffer = null;
        private $i_Length = 0;
        private $s_lineEnd = "\n";
        
        public function setLineEnding ($s_newEnding)
        {

                $this -> s_lineEnd = (string) $s_newEnding;
        }

        
        // (string) StringBuffer
        public function __toString ()
        {

                return $this -> s_Buffer;
        }

        
        public function toString ()
        {

                return $this -> s_Buffer;
        }

        
        public function toArray ()
        {

                return $this -> getLines ();
        }

        
        // Adds one or more characters to the buffer
        public function appendBuffer ($s_String)
        {

                $this -> s_Buffer .= (string) $s_String;
                $this -> i_Length += strlen  ($s_String);
                
                return true;
        }

        
        public function prependBuffer ($s_String)
        {

                $this -> s_Buffer  = $s_String .  $this -> s_Buffer;
                $this -> i_Length += strlen ($s_String);
                
                return true;
        }


        public function hasBuffer ()
        {

                return ($this -> i_Length > 0);
        }

        
        public function hasLine ()
        {

                return stripos ($this -> s_Buffer, $this -> s_lineEnd);
        }

        
        public function getSize ()
        {

                return $this -> i_Length;
        }

                
        // Removes x amount of bytes from the beginning or end of the buffer
        public function removeLength ($i_Length, $b_Prepend = true)
        {

                if ($i_Length < 0)
                {

                        throw new InvalidArgumentException ('StringBuffer :: removeLength () expects parameter 1 to be positive.');
                }
else if ($i_Length > $this -> i_Length)
                {

                        $this -> s_Buffer = null;
                        $this -> i_Length = 0;
                        
                        return true;
                }

                
                // Remove from beginning or end?
                if ($b_Prepend)
                {

                        $this -> s_Buffer  = substr ($this -> s_Buffer, $i_Length);
                        $this -> i_Length -= $i_Length;
                }
else
                {
                        $this -> s_Buffer  = substr ($this -> s_Buffer, 0, $i_Length);
                        $this -> i_Length -= $i_Length;
                }

                
                return true;
        }

        
        // Returns all of the buffer.
        public function getBuffer ()
        {

                return $this -> s_Buffer;
        }

        
        // Clears buffer
        public function flushBuffer ()
        {

                $this -> s_Buffer = null;
                $this -> i_Lenght = 0;
                
                return true;
        }

        
        // Returns one line from the buffer
        // or false if it has none.

        public function getLine ()
        {

                if (!$this -> hasLine ())
                {

                        return false;
                }

                
                $i_Offset         = stripos ($this -> s_Buffer, $this -> s_lineEnd);
                $s_theLine        = substr ($this -> s_Buffer, 0, $i_Offset);
                $this -> s_Buffer = substr ($this -> s_Buffer, $i_Offset + strlen ($this -> s_lineEnd) + 1);
                $this -> i_Size  -= ($i_Offset + strlen ($this -> s_lineEnd));
                
                return $s_theLine;
        }

        
        // Returns as many lines from the buffer as possible
        // as an array

        public function getLines ()
        {

                if (!$this -> hasLine ())
                {

                        return false;
                }

                
                $i_Offset         = strripos ($this -> s_Buffer, $this -> s_lineEnd);
                $s_Lines          = substr ($this -> s_Buffer, 0, $i_Offset);
                $this -> s_Buffer = substr ($this -> s_Buffer, $i_Offset + strlen ($this -> s_lineEnd) + 1);
                $this -> i_Size  -= ($i_Offset + strlen ($this -> s_lineEnd));
                
                return explode ($this -> s_lineEnd, $s_Lines);
        }
}

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.