]> git.draconx.ca Git - upkg.git/commitdiff
upkg: Add an option to list packages.
authorNick Bowler <nbowler@draconx.ca>
Sun, 13 Mar 2011 18:06:54 +0000 (14:06 -0400)
committerNick Bowler <nbowler@draconx.ca>
Sun, 13 Mar 2011 21:39:01 +0000 (17:39 -0400)
This new option will eventually replace the dual-purpose "info" option.

doc/man/upkg.1
src/upkg.c

index 3bc15d0564aab9c55440239f8bedf412188033be..f3a100901be8758500cd9efbad96c02c05a08fba 100644 (file)
@@ -6,7 +6,7 @@
 .Nd manipulate UObject packages
 .Sh SYNOPSIS
 .Nm
-.Op Fl i Ns | Ns Fl x
+.Op Fl i Ns | Ns Fl l Ns | Ns Fl x
 .Op Fl v
 .Op Fl f Ar package
 .Op Ar object ...
@@ -15,6 +15,8 @@
 .It Fl i , -info
 Display information about a package.  More information is displayed at higher
 verbosity levels.
+.It Fl l , -list
+List objects belonging to a package.
 .It Fl x , -export
 Export all exportable objects from a package.
 .It Fl v , -verbose
index 24df29357d4f486871ee549a1914220c4464d0a1..5912fc04aee6dde22596f41aaaa2989b4931bcba 100644 (file)
@@ -35,6 +35,7 @@
 
 enum {
        MODE_INFO,
+       MODE_LIST,
        MODE_EXPORT,
        MODE_MAX
 };
@@ -42,9 +43,10 @@ enum {
 int verbose = 0;
 
 static const char *progname = "upkg";
-static const char *sopts = "ixvf:VH";
+static const char *sopts = "ilxvf:VH";
 static const struct option lopts[] = {
        { "info",     0, NULL, 'i' },
+       { "list",     0, NULL, 'l' },
        { "export",   0, NULL, 'x' },
        { "file",     1, NULL, 'f' },
        { "verbose",  0, NULL, 'v' },
@@ -231,6 +233,29 @@ static void export_print_name(struct upkg *upkg, const struct upkg_export *e)
        }
 }
 
+static void
+export_print_fullname(GTypeModule *pkg, const struct upkg_export *export)
+{
+       printf("%s", pkg->name);
+       export_print_name(U_PKG(pkg)->pkg, export);
+       putchar('\n');
+}
+
+static int package_list(GTypeModule *pkg, long parent)
+{
+       struct upkg *upkg = U_PKG(pkg)->pkg;
+       const struct upkg_export *export;
+
+       for (unsigned i = 0; i < upkg->export_count; i++) {
+               export = upkg_get_export(upkg, i);
+
+               if (export->package != parent)
+                       continue;
+
+               export_print_fullname(pkg, export);
+       }
+}
+
 static int export_info(GTypeModule *pkg, unsigned long idx)
 {
        struct upkg *upkg = U_PKG(pkg)->pkg;
@@ -238,10 +263,7 @@ static int export_info(GTypeModule *pkg, unsigned long idx)
 
        export = upkg_get_export(upkg, idx);
 
-       printf("%s", pkg->name);
-       export_print_name(upkg, export);
-       putchar('\n');
-
+       export_print_fullname(pkg, export);
        return 0;
 }
 
@@ -368,6 +390,9 @@ static int process_object(int mode, const char *objname)
                else
                        ret = export_info(pkg, current);
                break;
+       case MODE_LIST:
+               ret = package_list(pkg, current+1);
+               break;
        case MODE_EXPORT:
                ret = package_export(U_PKG(pkg)->pkg);
                break;
@@ -406,6 +431,9 @@ int main(int argc, char **argv)
                case 'i':
                        mode = MODE_INFO;
                        break;
+               case 'l':
+                       mode = MODE_LIST;
+                       break;
                case 'x':
                        mode = MODE_EXPORT;
                        break;