summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-13 15:26:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-16 13:29:49 +0200
commita80fb45fe4a260aea0876de86237e53b954fab20 (patch)
tree4ecc808a607bdaf3e364260438dfdee102492789 /codemaker
parent348a03f3e47b89609ca3843b52da129df15e68f8 (diff)
Revert "WIP: add cppumaker -U to directly read from .idl files"
This reverts commit c4113906d7f15f8aa0eb385a4caf474b3505ede1, which is not necessary after all with recent "Hook SourceProvider into unoidl::loadProvider."
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/codemaker/typemanager.cxx8
-rw-r--r--codemaker/source/cppumaker/cppumaker.cxx6
-rw-r--r--codemaker/source/cppumaker/cppuoptions.cxx25
-rw-r--r--codemaker/source/javamaker/javamaker.cxx4
4 files changed, 8 insertions, 35 deletions
diff --git a/codemaker/source/codemaker/typemanager.cxx b/codemaker/source/codemaker/typemanager.cxx
index 13da4d3ed7f3..ff0e6f92a259 100644
--- a/codemaker/source/codemaker/typemanager.cxx
+++ b/codemaker/source/codemaker/typemanager.cxx
@@ -27,19 +27,15 @@
#include "codemaker/typemanager.hxx"
#include "rtl/ref.hxx"
#include "rtl/ustring.hxx"
-#include "unoidl/sourceprovider.hxx"
#include "unoidl/unoidl.hxx"
TypeManager::TypeManager(): manager_(new unoidl::Manager) {}
TypeManager::~TypeManager() {}
-void TypeManager::loadProvider(OUString const & uri, bool source, bool primary)
-{
+void TypeManager::loadProvider(OUString const & uri, bool primary) {
rtl::Reference< unoidl::Provider > prov(
- source
- ? new unoidl::SourceProvider(manager_, uri)
- : unoidl::loadProvider(manager_, uri));
+ unoidl::loadProvider(manager_, uri));
manager_->addProvider(prov);
if (primary) {
primaryProviders_.push_back(prov);
diff --git a/codemaker/source/cppumaker/cppumaker.cxx b/codemaker/source/cppumaker/cppumaker.cxx
index 733eb853dc92..2a698f415f03 100644
--- a/codemaker/source/cppumaker/cppumaker.cxx
+++ b/codemaker/source/cppumaker/cppumaker.cxx
@@ -52,15 +52,13 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
options.getExtraInputFiles().begin());
i != options.getExtraInputFiles().end(); ++i)
{
- typeMgr->loadProvider(
- convertToFileUrl(*i), options.isValid("-U"), false);
+ typeMgr->loadProvider(convertToFileUrl(*i), false);
}
for (std::vector< OString >::const_iterator i(
options.getInputFiles().begin());
i != options.getInputFiles().end(); ++i)
{
- typeMgr->loadProvider(
- convertToFileUrl(*i), options.isValid("-U"), true);
+ typeMgr->loadProvider(convertToFileUrl(*i), true);
}
codemaker::GeneratedTypeSet generated;
if (options.isValid("-T")) {
diff --git a/codemaker/source/cppumaker/cppuoptions.cxx b/codemaker/source/cppumaker/cppuoptions.cxx
index 36439542b2f9..3e70b68c5131 100644
--- a/codemaker/source/cppumaker/cppuoptions.cxx
+++ b/codemaker/source/cppumaker/cppuoptions.cxx
@@ -139,19 +139,6 @@ sal_Bool CppuOptions::initOptions(int ac, char* av[], sal_Bool bCmdFile)
m_options["-T"] = OString(s);
}
break;
- case 'U':
- if (av[i][2] != '\0')
- {
- OString tmp("'-U', please check");
- if (i <= ac - 1)
- {
- tmp += " your input '" + OString(av[i]) + "'";
- }
-
- throw IllegalArgument(tmp);
- }
- m_options["-U"] = "";
- break;
case 'L':
if (av[i][2] != '\0')
{
@@ -334,17 +321,9 @@ OString CppuOptions::prepareHelp()
help += " -O<path> = path describes the root directory for the generated output.\n";
help += " The output directory tree is generated under this directory.\n";
help += " -T<name> = name specifies a type or a list of types. The output for this\n";
- help += " [t1;...] type and all dependent types are generated. If no '-T' option is\n";
- help += " specified, then output for all types is generated.\n";
+ help += " [t1;...] type is generated. If no '-T' option is specified,\n";
+ help += " then output for all types is generated.\n";
help += " Example: 'com.sun.star.uno.XInterface' is a valid type.\n";
- help += " -U = instead of interpreting file_1 ... file_n as type rdb files,\n";
- help += " interpret them as (directories of) UNOIDL source files. If no\n";
- help += " '-T' option is given, each file_i must denote a UNOIDL file, and\n";
- help += " headers are generated for all entities defined in those files.";
- help += " Otherwise, each file_i must denote a directory, and an entity\n";
- help += " com.sun.star.uno.XInterface specified with '-T' would be searched\n";
- help += " for as com/sun/star/uno/XInterface.idl under each of those\n";
- help += " directories in turn.";
help += " -L = UNO type functions are generated lightweight, that means only\n";
help += " the name and typeclass are given and everything else is retrieved\n";
help += " from the type library dynamically. The default is that UNO type\n";
diff --git a/codemaker/source/javamaker/javamaker.cxx b/codemaker/source/javamaker/javamaker.cxx
index 4f5730c0780f..d74aafa31810 100644
--- a/codemaker/source/javamaker/javamaker.cxx
+++ b/codemaker/source/javamaker/javamaker.cxx
@@ -52,13 +52,13 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
options.getExtraInputFiles().begin());
i != options.getExtraInputFiles().end(); ++i)
{
- typeMgr->loadProvider(convertToFileUrl(*i), false, false);
+ typeMgr->loadProvider(convertToFileUrl(*i), false);
}
for (std::vector< rtl::OString >::const_iterator i(
options.getInputFiles().begin());
i != options.getInputFiles().end(); ++i)
{
- typeMgr->loadProvider(convertToFileUrl(*i), false, true);
+ typeMgr->loadProvider(convertToFileUrl(*i), true);
}
codemaker::GeneratedTypeSet generated;
if (options.isValid("-T")) {