1 | /*
|
---|
2 | * Licensed to the Apache Software Foundation (ASF) under one or more
|
---|
3 | * contributor license agreements. See the NOTICE file distributed with
|
---|
4 | * this work for additional information regarding copyright ownership.
|
---|
5 | * The ASF licenses this file to You under the Apache License, Version 2.0
|
---|
6 | * (the "License"); you may not use this file except in compliance with
|
---|
7 | * the License. You may obtain a copy of the License at
|
---|
8 | *
|
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
10 | *
|
---|
11 | * Unless required by applicable law or agreed to in writing, software
|
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
14 | * See the License for the specific language governing permissions and
|
---|
15 | * limitations under the License.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef _LOG4CXX_HELPERS_BYTEBUFFER_H
|
---|
19 | #define _LOG4CXX_HELPERS_BYTEBUFFER_H
|
---|
20 |
|
---|
21 | #include <log4cxx/log4cxx.h>
|
---|
22 | #include <stdio.h>
|
---|
23 |
|
---|
24 | namespace log4cxx
|
---|
25 | {
|
---|
26 |
|
---|
27 | namespace helpers {
|
---|
28 |
|
---|
29 | /**
|
---|
30 | * A byte buffer.
|
---|
31 | */
|
---|
32 | class LOG4CXX_EXPORT ByteBuffer
|
---|
33 | {
|
---|
34 | private:
|
---|
35 | char* base;
|
---|
36 | size_t pos;
|
---|
37 | size_t lim;
|
---|
38 | size_t cap;
|
---|
39 |
|
---|
40 | public:
|
---|
41 | ByteBuffer(char* data, size_t capacity);
|
---|
42 | ~ByteBuffer();
|
---|
43 |
|
---|
44 | void clear();
|
---|
45 | void flip();
|
---|
46 |
|
---|
47 | inline char* data() { return base; }
|
---|
48 | inline const char* data() const { return base; }
|
---|
49 | inline char* current() { return base + pos; }
|
---|
50 | inline const char* current() const { return base + pos; }
|
---|
51 | inline size_t limit() const { return lim; }
|
---|
52 | void limit(size_t newLimit);
|
---|
53 | inline size_t position() const { return pos; }
|
---|
54 | inline size_t remaining() const { return lim - pos; }
|
---|
55 | void position(size_t newPosition);
|
---|
56 |
|
---|
57 | bool put(char byte);
|
---|
58 |
|
---|
59 |
|
---|
60 | private:
|
---|
61 | ByteBuffer(const ByteBuffer&);
|
---|
62 | ByteBuffer& operator=(const ByteBuffer&);
|
---|
63 | };
|
---|
64 |
|
---|
65 | } // namespace helpers
|
---|
66 |
|
---|
67 | } //namespace log4cxx
|
---|
68 |
|
---|
69 | #endif //_LOG4CXX_HELPERS_BYTEBUFFER_H
|
---|