00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef ToolDirectoryServer_H
00036 #define ToolDirectoryServer_H
00037
00038 #include "EvalBasics.H"
00039 #include "Val.H"
00040 #include "WordKey.H"
00041
00042
00043 void create_tool_directory_server();
00044
00045
00046
00047 class DirInfo {
00048 public:
00049 Binding b;
00050 DepPath path;
00051 bool isRoot;
00052 bool coarseDep;
00053 bool child_lookup;
00054 };
00055
00056
00057 typedef Table<WordKey, DirInfo*>::Default DirInfoTbl;
00058 typedef Table<WordKey, DirInfo*>::Iterator DirInfoIter;
00059
00060 class DirInfos {
00061 public:
00062 Basics::mutex mu;
00063 DirInfoTbl *dirInfoTbl;
00064 DPaths *dep;
00065 void AddDpnd(DirInfo *dir, const Text& name, Val v, const PathKind pk);
00066 Word LookupDir(DirInfo *dir, const Text& name, Val v, Word dirHandle);
00067 };
00068
00069
00070 typedef Table<WordKey, DirInfos*>::Default DirInfosTbl;
00071
00072 class RunToolCalls {
00073 public:
00074 RunToolCalls(int numCalls) {
00075 dirInfosTbl = NEW_CONSTR(DirInfosTbl, (numCalls));
00076 }
00077 bool Get(const WordKey& k, DirInfos*& v) {
00078 this->mu.lock();
00079 bool res = this->dirInfosTbl->Get(k, v);
00080 this->mu.unlock();
00081 return res;
00082 }
00083 bool Put(const WordKey& k, DirInfos*& v, bool resize = true) {
00084 this->mu.lock();
00085 bool res = this->dirInfosTbl->Put(k, v, resize);
00086 this->mu.unlock();
00087 return res;
00088 }
00089 bool Delete(const WordKey& k, DirInfos*& v, bool resize = true) {
00090 this->mu.lock();
00091 bool res = this->dirInfosTbl->Delete(k, v, resize);
00092 this->mu.unlock();
00093 return res;
00094 }
00095 private:
00096 DirInfosTbl *dirInfosTbl;
00097 Basics::mutex mu;
00098 };
00099
00100
00101 extern RunToolCalls runToolCalls;
00102
00103
00104 Word GetNewHandle();
00105
00106 #endif // ToolDirectoryServer_H