make #includes consistent
[hiphop-php.git] / hphp / runtime / base / string_offset.h
blob044ba0e901b2d01896f0d8afc179c0eaeee76798
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
17 #ifndef incl_HPHP_STRING_OFFSET_H_
18 #define incl_HPHP_STRING_OFFSET_H_
20 #include "hphp/runtime/base/types.h"
21 #include "hphp/runtime/base/string_data.h"
22 #include "hphp/runtime/base/util/exceptions.h"
24 namespace HPHP {
25 ///////////////////////////////////////////////////////////////////////////////
27 /**
28 * Handles sub-string expressions. This class should delegate all real work to
29 * StringData.
31 class StringOffset {
32 public:
33 /**
34 * Constructor. "offset" is where we are at in the string.
36 StringOffset(StringData *data, int offset)
37 : m_data(data), m_offset(offset) {
38 assert(m_data);
41 /**
42 * Get r-value of this offset object.
44 operator String() const;
46 /**
47 * Get l-value of this offset object. Well, not quite, since this is illegal.
49 String &lval() const {
50 throw InvalidOperandException("taking l-value of a string offset");
53 /**
54 * Assignement operator. Almost the whole purpose for having this offset
55 * class.
57 StringOffset &operator=(CVarRef v);
59 private:
60 StringData *m_data;
61 int m_offset;
64 ///////////////////////////////////////////////////////////////////////////////
67 #endif // incl_HPHP_STRING_OFFSET_H_