blob: 1e3ec7422fb30efec8993b53022e43f91ed17a30 [file] [log] [blame]
Shinichiro Hamajie7992752015-06-29 18:38:35 +09001// Copyright 2015 Google Inc. All rights reserved
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef SYMTAB_H_
16#define SYMTAB_H_
17
18#include <string>
19#include <vector>
20
21#include "string_piece.h"
22
23using namespace std;
24
Shinichiro Hamajiba2ccdb2015-07-17 05:55:42 +090025extern vector<string*>* g_symbols;
Shinichiro Hamajie7992752015-06-29 18:38:35 +090026
27class Symtab;
28
29class Symbol {
30 public:
Shinichiro Hamaji94d6f2a2015-07-05 05:32:25 +090031 struct IsUninitialized {};
32 explicit Symbol(IsUninitialized)
33 : v_(-1) {
34 }
35
Shinichiro Hamajie7992752015-06-29 18:38:35 +090036 const string& str() const {
Shinichiro Hamajiba2ccdb2015-07-17 05:55:42 +090037 return *((*g_symbols)[v_]);
Shinichiro Hamajie7992752015-06-29 18:38:35 +090038 }
39
40 const char* c_str() const {
41 return str().c_str();
42 }
43
44 bool empty() const { return !v_; }
45
46 int val() const { return v_; }
47
48 char get(size_t i) const {
49 const string& s = str();
50 if (i >= s.size())
51 return 0;
52 return s[i];
53 }
54
55 private:
56 explicit Symbol(int v);
57
58 int v_;
59
60 friend class Symtab;
61};
62
63inline bool operator==(const Symbol& x, const Symbol& y) {
64 return x.val() == y.val();
65}
66
67namespace std {
68template<> struct hash<Symbol> {
69 size_t operator()(const Symbol& s) const {
70 return s.val();
71 }
72};
73}
74
Shinichiro Hamaji43defe02015-07-11 07:06:43 +090075extern Symbol kEmptySym;
Shinichiro Hamaji94d6f2a2015-07-05 05:32:25 +090076extern Symbol kShellSym;
77
Shinichiro Hamajie7992752015-06-29 18:38:35 +090078void InitSymtab();
79void QuitSymtab();
80Symbol Intern(StringPiece s);
81
82string JoinSymbols(const vector<Symbol>& syms, const char* sep);
83
84#endif // SYMTAB_H_