| 1 |
// Copyright (c) 2009, Whispersoft s.r.l. |
|---|
| 2 |
// All rights reserved. |
|---|
| 3 |
// |
|---|
| 4 |
// Redistribution and use in source and binary forms, with or without |
|---|
| 5 |
// modification, are permitted provided that the following conditions are |
|---|
| 6 |
// met: |
|---|
| 7 |
// |
|---|
| 8 |
// * Redistributions of source code must retain the above copyright |
|---|
| 9 |
// notice, this list of conditions and the following disclaimer. |
|---|
| 10 |
// * Redistributions in binary form must reproduce the above |
|---|
| 11 |
// copyright notice, this list of conditions and the following disclaimer |
|---|
| 12 |
// in the documentation and/or other materials provided with the |
|---|
| 13 |
// distribution. |
|---|
| 14 |
// * Neither the name of Whispersoft s.r.l. nor the names of its |
|---|
| 15 |
// contributors may be used to endorse or promote products derived from |
|---|
| 16 |
// this software without specific prior written permission. |
|---|
| 17 |
// |
|---|
| 18 |
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 19 |
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 20 |
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 21 |
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 22 |
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 23 |
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 24 |
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 25 |
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 26 |
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 27 |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 28 |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
// |
|---|
| 30 |
// Author: Cosmin Tudorache |
|---|
| 31 |
|
|---|
| 32 |
#ifndef __NET_RPC_PARSER_EXPORT_RPC_EXPORTER_H__ |
|---|
| 33 |
#define __NET_RPC_PARSER_EXPORT_RPC_EXPORTER_H__ |
|---|
| 34 |
|
|---|
| 35 |
#include <map> |
|---|
| 36 |
#include <string> |
|---|
| 37 |
#include <vector> |
|---|
| 38 |
#include <set> |
|---|
| 39 |
#include <whisperlib/common/base/types.h> |
|---|
| 40 |
#include <whisperlib/net/rpc/parser/rpc-ptypes.h> |
|---|
| 41 |
#include <whisperlib/net/rpc/parser/common.h> |
|---|
| 42 |
|
|---|
| 43 |
namespace rpc { |
|---|
| 44 |
|
|---|
| 45 |
class Exporter { |
|---|
| 46 |
public: |
|---|
| 47 |
Exporter(const string& languageName, |
|---|
| 48 |
const PCustomTypeArray& customTypes, |
|---|
| 49 |
const PServiceArray& services, |
|---|
| 50 |
const PVerbatimArray& verbatim, |
|---|
| 51 |
const vector<string>& inputFilenames); |
|---|
| 52 |
virtual ~Exporter(); |
|---|
| 53 |
|
|---|
| 54 |
// returns: "C++", "Javascript", "PHP" .. |
|---|
| 55 |
const string& GetLanguageName() const; |
|---|
| 56 |
|
|---|
| 57 |
// Returns the restricted keywords for this specific language. |
|---|
| 58 |
// e.g. for C++: void, int, bool, string, unsigned, for, while, switch, if, .. |
|---|
| 59 |
// The set is used to do an early (immediate after parse) check of type names |
|---|
| 60 |
// correctness. |
|---|
| 61 |
virtual const Keywords& GetRestrictedKeywords() const = 0; |
|---|
| 62 |
|
|---|
| 63 |
// Pairs of [property-name, value]. These are exporter specific parameters. |
|---|
| 64 |
// e.g. for the C++ exporter the map should include: |
|---|
| 65 |
// fclientTypes = <path to client rpc-types(.h .cc)> |
|---|
| 66 |
// fclientWrappers = <path to client rpc-wrappers(.h .cc)> |
|---|
| 67 |
// fserverTypes = <path to server rpc-types(.h .cc)> |
|---|
| 68 |
// fserverMethods = <path to server rpc-services-methods.h> |
|---|
| 69 |
// fserverImpl = <path to server rpc-services-impl(.h .cc)> |
|---|
| 70 |
virtual bool SetParams(const map<string, string>& paramValues) = 0; |
|---|
| 71 |
|
|---|
| 72 |
// Export types and services into a custom programming language. |
|---|
| 73 |
// returns: |
|---|
| 74 |
// - true on success. |
|---|
| 75 |
// - false on internal error. Usually undefined types or illegal type names. |
|---|
| 76 |
virtual bool Export() = 0; |
|---|
| 77 |
|
|---|
| 78 |
// Gets the all verbatims for this language |
|---|
| 79 |
string GetVerbatim() const; |
|---|
| 80 |
protected: |
|---|
| 81 |
const string languageName_; |
|---|
| 82 |
const PCustomTypeArray& customTypes_; |
|---|
| 83 |
const PServiceArray& services_; |
|---|
| 84 |
const PVerbatimArray& verbatim_; |
|---|
| 85 |
// just for logging into generated files: |
|---|
| 86 |
const vector<string>& inputFilenames_; |
|---|
| 87 |
}; |
|---|
| 88 |
} |
|---|
| 89 |
#endif // __NET_RPC_PARSER_EXPORT_RPC_EXPORTER_H__ |
|---|