]> andersk Git - svn-all-fast-export.git/commitdiff
Reintroduce the recurse rule. It's useful if you have a catch-all ignore rule.
authorThiago Macieira <thiago@cassini.local.lan>
Thu, 27 Dec 2007 17:29:54 +0000 (15:29 -0200)
committerThiago Macieira <thiago@cassini.local.lan>
Thu, 27 Dec 2007 17:29:54 +0000 (15:29 -0200)
src/ruleparser.cpp
src/ruleparser.h
src/svn.cpp

index e6ba7b5b40dc14ec7eae042663912148c995a389..0f675ddaa20e697721fec4d34b8366cd2aca8b28 100644 (file)
@@ -104,6 +104,8 @@ void Rules::load()
                     match.action = Match::Export;
                 else if (action == "ignore")
                     match.action = Match::Ignore;
+                else if (action == "recurse")
+                    match.action = Match::Recurse;
                 else
                     qFatal("Invalid action \"%s\" on line %d", qPrintable(action), lineNumber);
                 continue;
index d70a39b143b07e99c3a4e262cd3976dd54dd7f79..9525f1479cdbb7b61982552d3fa06c16e7c58666 100644 (file)
@@ -50,7 +50,8 @@ public:
 
         enum Action {
             Ignore,
-            Export
+            Export,
+            Recurse
         } action;
 
         Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }
index 0314c3c7787b1a4be9c0e7ff7ba37c82fec30c22..378dc771f9f958f4674ac10671a86343f4cb387e 100644 (file)
@@ -352,6 +352,10 @@ public:
     int commit();
 
     int exportEntry(const char *path, const svn_fs_path_change_t *change, apr_hash_t *changes);
+    int exportDispatch(const char *path, const svn_fs_path_change_t *change,
+                       const char *path_from, svn_revnum_t rev_from,
+                       apr_hash_t *changes, const QString &current, const Rules::Match &rule,
+                       apr_pool_t *pool);
     int exportInternal(const char *path, const svn_fs_path_change_t *change,
                        const char *path_from, svn_revnum_t rev_from,
                        const QString &current, const Rules::Match &rule);
@@ -470,7 +474,7 @@ int SvnRevision::exportEntry(const char *key, const svn_fs_path_change_t *change
     MatchRuleList::ConstIterator match = findMatchRule(matchRules, revnum, current);
     if (match != matchRules.constEnd()) {
         const Rules::Match &rule = *match;
-        return exportInternal(key, change, path_from, rev_from, current, rule);
+        return exportDispatch(key, change, path_from, rev_from, changes, current, rule, revpool);
     }
 
     if (is_dir && path_from != NULL) {
@@ -488,17 +492,30 @@ int SvnRevision::exportEntry(const char *key, const svn_fs_path_change_t *change
     return EXIT_SUCCESS;
 }
 
-int SvnRevision::exportInternal(const char *key, const svn_fs_path_change_t *change,
+int SvnRevision::exportDispatch(const char *key, const svn_fs_path_change_t *change,
                                 const char *path_from, svn_revnum_t rev_from,
-                                const QString &current, const Rules::Match &rule)
+                                apr_hash_t *changes, const QString &current,
+                                const Rules::Match &rule, apr_pool_t *pool)
 {
-    if (rule.action == Rules::Match::Ignore) {
+    switch (rule.action) {
+    case Rules::Match::Ignore:
         // ignore rule
         qDebug() << "   " << qPrintable(current) << "rev" << revnum
                  << "-> ignored (rule" << rule << ")";
         return EXIT_SUCCESS;
+
+    case Rules::Match::Recurse:
+        return recurse(key, change, path_from, rev_from, changes, pool);
+
+    case Rules::Match::Export:
+        return exportInternal(key, change, path_from, rev_from, current, rule);
     }
+}
 
+int SvnRevision::exportInternal(const char *key, const svn_fs_path_change_t *change,
+                                const char *path_from, svn_revnum_t rev_from,
+                                const QString &current, const Rules::Match &rule)
+{
     QString svnprefix, repository, branch, path;
     splitPathName(rule, current, &svnprefix, &repository, &branch, &path);
 
@@ -618,8 +635,8 @@ int SvnRevision::recurse(const char *path, const svn_fs_path_change_t *change,
         // find the first rule that matches this pathname
         MatchRuleList::ConstIterator match = findMatchRule(matchRules, revnum, current);
         if (match != matchRules.constEnd()) {
-            if (exportInternal(entry, change, entryFrom.isNull() ? 0 : entryFrom.constData(),
-                               rev_from, current, *match) == EXIT_FAILURE)
+            if (exportDispatch(entry, change, entryFrom.isNull() ? 0 : entryFrom.constData(),
+                               rev_from, changes, current, *match, dirpool) == EXIT_FAILURE)
                 return EXIT_FAILURE;
         } else {
             qCritical() << current << "rev" << revnum
This page took 0.034414 seconds and 5 git commands to generate.