summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/Preprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Slice/Preprocessor.h')
-rw-r--r--cpp/include/Slice/Preprocessor.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/cpp/include/Slice/Preprocessor.h b/cpp/include/Slice/Preprocessor.h
new file mode 100644
index 00000000000..e87d256de33
--- /dev/null
+++ b/cpp/include/Slice/Preprocessor.h
@@ -0,0 +1,71 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef PREPROCESSOR_H
+#define PREPROCESSOR_H
+
+#include <IceUtil/Shared.h>
+#include <IceUtil/Handle.h>
+#include <vector>
+#ifdef __BCPLUSPLUS__
+# include <stdio.h>
+#endif
+
+#ifndef SLICE_API
+# ifdef SLICE_API_EXPORTS
+# define SLICE_API ICE_DECLSPEC_EXPORT
+# else
+# define SLICE_API ICE_DECLSPEC_IMPORT
+# endif
+#endif
+
+namespace Slice
+{
+
+class Preprocessor;
+typedef IceUtil::Handle<Preprocessor> PreprocessorPtr;
+
+class SLICE_API Preprocessor : public IceUtil::SimpleShared
+{
+public:
+
+ static PreprocessorPtr create(const std::string&, const std::string&, const std::vector<std::string>&);
+
+ ~Preprocessor();
+
+ FILE* preprocess(bool);
+ bool close();
+
+ enum Language { CPlusPlus, Java, JavaXML, CSharp, Python, Ruby, PHP };
+
+ bool printMakefileDependencies(Language, const std::vector<std::string>&, const std::string& = "cpp",
+ const std::string& = "");
+
+ std::string getBaseName();
+
+ static std::string addQuotes(const std::string&);
+ static std::string normalizeIncludePath(const std::string&);
+
+private:
+
+ Preprocessor(const std::string&, const std::string&, const std::vector<std::string>&);
+
+ bool checkInputFile();
+
+ const std::string _path;
+ const std::string _fileName;
+ const std::string _shortFileName;
+ const std::vector<std::string> _args;
+ std::string _cppFile;
+ FILE* _cppHandle;
+};
+
+}
+
+#endif