1. 08 3月, 2007 2 次提交
    • S
      Use off_t when we really mean a file offset. · c4001d92
      Shawn O. Pearce 提交于
      Not all platforms have declared 'unsigned long' to be a 64 bit value,
      but we want to support a 64 bit packfile (or close enough anyway)
      in the near future as some projects are getting large enough that
      their packed size exceeds 4 GiB.
      
      By using off_t, the POSIX type that is declared to mean an offset
      within a file, we support whatever maximum file size the underlying
      operating system will handle.  For most modern systems this is up
      around 2^60 or higher.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      c4001d92
    • S
      General const correctness fixes · 3a55602e
      Shawn O. Pearce 提交于
      We shouldn't attempt to assign constant strings into char*, as the
      string is not writable at runtime.  Likewise we should always be
      treating unsigned values as unsigned values, not as signed values.
      
      Most of these are very straightforward.  The only exception is the
      (unnecessary) xstrdup/free in builtin-branch.c for the detached
      head case.  Since this is a user-level interactive type program
      and that particular code path is executed no more than once, I feel
      that the extra xstrdup call is well worth the easy elimination of
      this warning.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3a55602e
  2. 06 3月, 2007 2 次提交
    • S
      fast-import: Fail if a non-existant commit is used for merge · 2f6dc35d
      Shawn O. Pearce 提交于
      Johannes Sixt noticed during one of his own imports that fast-import
      did not fail if a non-existant commit is referenced by SHA-1 value
      as an argument to the 'merge' command.  This allowed the user to
      unknowingly create commits that would fail in fsck, as the commit
      contents would not be completely reachable.
      
      A side effect of this bug was that a frontend process could mark
      any SHA-1 object (blob, tree, tag) as a parent of a merge commit.
      This should also fail in fsck, as the commit is not a valid commit.
      
      We now use the same rule as the 'from' command.  If a commit is
      referenced in the 'merge' command by hex formatted SHA-1 then the
      SHA-1 must be a commit or a tag that can be peeled back to a commit,
      the commit must already exist, and must be readable by the core Git
      infrastructure code.  This requirement means that the commit must
      have existed prior to fast-import starting, or the commit must have
      been flushed out by a prior 'checkpoint' command.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      2f6dc35d
    • S
      fast-import: Avoid infinite loop after reset · 734c91f9
      Shawn O. Pearce 提交于
      Johannes Sixt noticed that a 'reset' command applied to a branch that
      is already active in the branch LRU cache can cause fast-import to
      relink the same branch into the LRU cache twice.  This will cause
      the LRU cache to contain a cycle, making unload_one_branch run in an
      infinite loop as it tries to select the oldest branch for eviction.
      
      I have trivially fixed the problem by adding an active bit to
      each branch object; this bit indicates if the branch is already
      in the LRU and allows us to avoid trying to add it a second time.
      Converting the pack_id field into a bitfield makes this change take
      up no additional memory.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      734c91f9
  3. 27 2月, 2007 2 次提交
  4. 21 2月, 2007 3 次提交
    • J
      prefixcmp(): fix-up mechanical conversion. · 599065a3
      Junio C Hamano 提交于
      Previous step converted use of strncmp() with literal string
      mechanically even when the result is only used as a boolean:
      
          if (!strncmp("foo", arg, 3)) ==> if (!(-prefixcmp(arg, "foo")))
      
      This step manually cleans them up to read:
      
          if (!prefixcmp(arg, "foo"))
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      599065a3
    • J
      Mechanical conversion to use prefixcmp() · cc44c765
      Junio C Hamano 提交于
      This mechanically converts strncmp() to use prefixcmp(), but only when
      the parameters match specific patterns, so that they can be verified
      easily.  Leftover from this will be fixed in a separate step, including
      idiotic conversions like
      
          if (!strncmp("foo", arg, 3))
      
        =>
      
          if (!(-prefixcmp(arg, "foo")))
      
      This was done by using this script in px.perl
      
         #!/usr/bin/perl -i.bak -p
         if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
                 s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
         }
         if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
                 s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
         }
      
      and running:
      
         $ git grep -l strncmp -- '*.c' | xargs perl px.perl
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      cc44c765
    • J
      Check for PRIuMAX rather than NO_C99_FORMAT in fast-import.c. · 3efb1f34
      Jason Riedy 提交于
      Thanks to Simon 'corecode' Schubert <corecode@fs.ei.tum.de> for
      the clean-up.  Defining the C99 standard PRIuMAX when necessary
      replaces UM_FMT and the awkward UM10_FMT.  There are no direct
      C99 translations for other uses of NO_C99_FORMAT in git, alas.
      Signed-off-by: NJason Riedy <ejr@cs.berkeley.edu>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3efb1f34
  5. 20 2月, 2007 1 次提交
  6. 13 2月, 2007 1 次提交
    • S
      fast-import: Support reusing 'from' and brown paper bag fix reset. · ea5e370a
      Shawn O. Pearce 提交于
      It was suggested on the mailing list that being able to use `from`
      in any commit to reset the current branch is useful in some types of
      importers, such as a darcs importer.
      
      We originally did not permit resetting an existing branch with a
      new `from` command during a `commit` command, but this restriction
      was only to help debug the hacked up cvs2svn that Jon Smirl was
      developing in parallel with git-fast-import.  It is probably more
      of a problem to disallow it than to allow it.  So now we permit a
      `from` during any `commit`.
      
      While making the changes required to permit multiple `from`
      commands on the same branch, I discovered we no longer needed the
      last_commit field to be set to 0 during a reset, so that was removed.
      (Reset was originally setting the field to 0 to signal cmd_from()
      that it was OK to execute on the branch.)
      
      While poking around in this section of fast-import I also realized
      the `reset` command was not working as intended if the corresponding
      `from` command was omitted (as allowed by the BNF grammar and the
      code).  If `from` was omitted we cleared out the tree but we left
      the tree SHA-1 and parent commit SHA-1 intact.  This is not what
      the user intended in this case.  Instead they would be trying to
      reset the branch to have no parent and to have no tree, making the
      branch look new-born during the next commit.  We now clear these
      SHA-1 values during `reset`, ensuring the branch looks new-born if
      `from` does not get supplied.
      
      New test cases for these were also added.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      ea5e370a
  7. 12 2月, 2007 1 次提交
    • S
      fast-import: Hide the pack boundary commits by default. · bdf1c06d
      Shawn O. Pearce 提交于
      Most users don't need the pack boundary information that fast-import
      was printing to standard output, especially if they were calling
      it with --quiet.
      
      Those users who do want this information probably want it captured
      so they can go back and use it to repack the imported repository.
      So dumping the boundary commits to a log file makes more sense then
      printing them to standard output.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      bdf1c06d
  8. 08 2月, 2007 1 次提交
  9. 07 2月, 2007 8 次提交
    • S
      Don't crash fast-import if the marks cannot be exported. · 22c9f7e4
      Shawn O. Pearce 提交于
      Apparently fast-import used to die a horrible death if we
      were unable to open the marks file for output.  This is
      slightly less than ideal, especially now that we dump
      the marks as part of the `checkpoint` command.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      22c9f7e4
    • S
      Dump all refs and marks during a checkpoint in fast-import. · 820b9310
      Shawn O. Pearce 提交于
      If the frontend asks us to checkpoint (via the explicit checkpoint
      command) its probably because they are afraid the current import
      will crash/fail/whatever and want to make sure they can pickup from
      the last checkpoint.  To do that sort of recovery, we will need the
      current tip of every branch and tag available at the next startup.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      820b9310
    • S
      Teach fast-import how to sit quietly in the corner. · c499d768
      Shawn O. Pearce 提交于
      Often users will be running fast-import from within a larger frontend
      process, and this may be a frequent periodic tool such as a future
      edition of `git-svn fetch`.  We don't want to bombard users with our
      large stats output if they won't be interested in it, so `--quiet`
      is now an option to make gfi be more silent.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      c499d768
    • S
      Teach fast-import how to clear the internal branch content. · 825769a8
      Shawn O. Pearce 提交于
      Some frontends may not be able to (easily) keep track of which files
      are included in the branch, and which aren't.  Performing this
      tracking can be tedious and error prone for the frontend to do,
      especially if its foreign data source cannot supply the changed
      path list on a per-commit basis.
      
      fast-import now allows a frontend to request that a branch's tree
      be wiped clean (reset to the empty tree) at the start of a commit,
      allowing the frontend to feed in all paths which belong on the branch.
      
      This is ideal for a tar-file importer frontend, for example, as
      the frontend just needs to reformat the tar data stream into a gfi
      data stream, which may be something a few Perl regexps can take
      care of. :)
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      825769a8
    • J
      S_IFLNK != 0140000 · 9981b6d9
      Junio C Hamano 提交于
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      9981b6d9
    • S
      Don't do non-fastforward updates in fast-import. · 7073e69e
      Shawn O. Pearce 提交于
      If fast-import is being used to update an existing branch of
      a repository, the user may not want to lose commits if another
      process updates the same ref at the same time.  For example, the
      user might be using fast-import to make just one or two commits
      against a live branch.
      
      We now perform a fast-forward check during the ref updating process.
      If updating a branch would cause commits in that branch to be lost,
      we skip over it and display the new SHA1 to standard error.
      
      This new default behavior can be overridden with `--force`, like
      git-push and git-fetch.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      7073e69e
    • S
      Support RFC 2822 date parsing in fast-import. · 63e0c8b3
      Shawn O. Pearce 提交于
      Since some frontends may be working with source material where
      the dates are only readily available as RFC 2822 strings, it is
      more friendly if fast-import exposes Git's parse_date() function
      to handle the conversion.  This way the frontend doesn't need
      to perform the parsing itself.
      
      The new --date-format option to fast-import can be used by a
      frontend to select which format it will supply date strings in.
      The default is the standard `raw` Git format, which fast-import
      has always supported.  Format rfc2822 can be used to activate the
      parse_date() function instead.
      
      Because fast-import could also be useful for creating new, current
      commits, the format `now` is also supported to generate the current
      system timestamp.  The implementation of `now` is a trivial call
      to datestamp(), but is actually a whole whopping 3 lines so that
      fast-import can verify the frontend really meant `now`.
      
      As part of this change I have added validation of the `raw` date
      format.  Prior to this change fast-import would accept anything
      in a `committer` command, even if it was seriously malformed.
      Now fast-import requires the '> ' near the end of the string and
      verifies the timestamp is formatted properly.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      63e0c8b3
    • S
      Remove unnecessary null pointer checks in fast-import. · e7d06a4b
      Shawn O. Pearce 提交于
      There is no need to check for a NULL pointer before invoking free(),
      the runtime library automatically performs this check anyway and
      does nothing if a NULL pointer is supplied.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      e7d06a4b
  10. 06 2月, 2007 6 次提交
    • S
      Correct minor style issue in fast-import. · e5b1444b
      Shawn O. Pearce 提交于
      Junio noticed that I was using a different style in fast-import
      for returned pointers than the rest of Git.  Before merging this
      code into the main git.git tree I'd like to make it consistent,
      as this style variation was not intentional.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      e5b1444b
    • S
      Correct compiler warnings in fast-import. · 10e8d688
      Shawn O. Pearce 提交于
      Junio noticed these warnings/errors in fast-import when compiling
      with `-Werror -ansi -pedantic`.  A few changes are to reduce compiler
      warnings, while one (in cmd_merge) is a bug fix.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      10e8d688
    • S
      Remove --branch-log from fast-import. · 0b868e02
      Shawn O. Pearce 提交于
      The --branch-log option and its associated code hasn't been used in
      several months, as its not really very useful for debugging fast-import
      or a frontend.  I don't plan on supporting it in this state long-term,
      so I'm killing it now before it gets distributed to a wider audience.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      0b868e02
    • S
      Don't support shell-quoted refnames in fast-import. · 6c3aac1c
      Shawn O. Pearce 提交于
      The current implementation of shell-style quoted refnames and
      SHA-1 expressions within fast-import contains a bad memory leak.
      We leak the unquoted strings used by the `from` and `merge`
      commands, maybe others.  Its also just muddling up the docs.
      
      Since Git refnames cannot contain LF, and that is our delimiter
      for the end of the refname, and we accept any other character
      as-is, there is no reason for these strings to support quoting,
      except to be nice to frontends.  But frontends shouldn't be
      expecting to use funny refs in Git, and its just as simple to
      never quote them as it is to always pass them through the same
      quoting filter as pathnames.  So frontends should never quote
      refs, or ref expressions.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      6c3aac1c
    • S
      Reduce memory usage of fast-import. · 10831c55
      Shawn O. Pearce 提交于
      Some structs are allocated rather frequently, but were using integer
      types which were far larger than required to actually store their
      full value range.
      
      As packfiles are limited to 4 GiB we don't need more than 32 bits to
      store the offset of an object within that packfile, an `unsigned long`
      on a 64 bit system is likely a 64 bit unsigned value.  Saving 4 bytes
      per object on a 64 bit system can add up fast on any sizable import.
      
      As atom strings are strictly single components in a path name these
      are probably limited to just 255 bytes by the underlying OS.  Going
      to that short of a string is probably too restrictive, but certainly
      `unsigned int` is far too large for their lengths.  `unsigned short`
      is a reasonable limit.
      
      Modes within a tree really only need two bytes to store their whole
      value; using `unsigned int` here is vast overkill.  Saving 4 bytes
      per file entry in an active branch can add up quickly on a project
      with a large number of files.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      10831c55
    • S
      Include checkpoint command in the BNF. · 8c1f22da
      Shawn O. Pearce 提交于
      This command isn't encouraged (as its slow) but it does exist and
      is accepted, so it still should be covered in the BNF.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      8c1f22da
  11. 19 1月, 2007 5 次提交
    • S
      Accept 'inline' file data in fast-import commit structure. · b715cfbb
      Shawn O. Pearce 提交于
      Its very annoying to need to specify the file content ahead of a
      commit and use marks to connect the individual blobs to the commit's
      file modification entry, especially if the frontend can't/won't
      generate the blob SHA1s itself.  Instead it would much easier to
      use if we can accept the blob data at the same time as we receive
      each file_change line.
      
      Now fast-import accepts 'inline' instead of a mark idnum or blob
      SHA1 within the 'M' type file_change command.  If an inline is
      detected the very next line must be a 'data n' command, supplying
      the file data.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      b715cfbb
    • S
      Support delimited data regions in fast-import. · 3b4dce02
      Shawn O. Pearce 提交于
      During testing its nice to not have to feed the length of a data
      chunk to the 'data' command of fast-import.  Instead we would
      prefer to be able to establish a data chunk much like shell's <<
      operator and use a line delimiter to denote the end of the input.
      
      So now if a data command is started as 'data <<EOF' we will look
      for a terminator line containing only the string EOF on that line.
      Once found, we stop the data command.  Everything between the two
      lines is used as the data value.
      
      The 'data <<' syntax is slower than 'data n', as we don't know how
      many bytes to expect and instead must grow our buffer on the fly.
      It also has the problem that the frontend must use a string which
      will not appear on a line by itself in the input, and the data
      region will always end in an LF.  For these reasons real import
      frontends are encouraged to continue to use _only_ 'data n'.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      3b4dce02
    • S
      Remove unnecessary options from fast-import. · e5808826
      Shawn O. Pearce 提交于
      The --objects command line option is rather unnecessary.  Internally
      we allocate objects in 5000 unit blocks, ensuring that any sort
      of malloc overhead is ammortized over the individual objects to
      almost nothing.  Since most frontends don't know how many objects
      they will need for a given import run (and its hard for them to
      predict without just doing the run) we probably won't see anyone
      using --objects.  Further since there's really no major benefit
      to using the option, most frontends won't even bother supplying
      it even if they could estimate the number of objects.  So I'm
      removing it.
      
      The --max-objects-per-pack option was probably a mistake to even
      have added in the first place.  The packfile format is limited
      to 4 GiB today; given that objects need at least 3 bytes of data
      (and probably need even more) there's no way we are going to exceed
      the limit of 1<<32-1 objects before we reach the file size limit.
      So I'm removing it (to slightly reduce the complexity of the code)
      before anyone gets any wise ideas and tries to use it.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      e5808826
    • S
      Use fixed-size integers when writing out the index in fast-import. · ebea9dd4
      Shawn O. Pearce 提交于
      Currently the pack .idx file format uses 32-bit unsigned integers
      for the fan-out table and the object offsets.  We had previously
      defined these as 'unsigned int', but not every system will define
      that type to be a 32 bit value.  To ensure maximum portability we
      should always use 'uint32_t'.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      ebea9dd4
    • S
      Always use struct pack_header for pack header in fast-import. · 566f4425
      Shawn O. Pearce 提交于
      Previously we were using 'unsigned int' to update the hdr_entries
      field of the pack header after the file had been completed and
      was being hashed.  This may not be 32 bits on all platforms.
      Instead we want to always uint32_t.
      
      I'm actually cheating here by just using the pack_header like the
      rest of Git and letting the struct definition declare the correct
      type.  Right now that field is still 'unsigned int' (wrong) but a
      pending change submitted by Simon 'corecode' Schubert changes it
      to uint32_t.  After that change is merged in fast-import will do
      the right thing all of the time.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      566f4425
  12. 17 1月, 2007 5 次提交
    • S
      Correct packfile edge output in fast-import. · 69e74e74
      Shawn O. Pearce 提交于
      Branches are only contained by a packfile if the branch actually
      had its most recent commit in that packfile.  So new branches are
      set to MAX_PACK_ID to ensure they don't cause their commit to list
      as part of the first packfile when it closes out if the commit was
      actually in existance before fast-import started.
      
      Also corrected the type of last_commit to be umaxint_t to prevent
      overflow and wraparound on very large imports.  Though that is
      highly unlikely to occur as we're talking 4 billion commits, which
      no real project has right now.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      69e74e74
    • S
      Declare no-arg functions as (void) in fast-import. · fd99224e
      Shawn O. Pearce 提交于
      Apparently the git convention is to declare any function which
      takes no arguments as taking void.  I did not do this during the
      early fast-import development, but should have.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      fd99224e
    • S
      Correct a few types to be unsigned in fast-import. · 6f64f6d9
      Shawn O. Pearce 提交于
      The length of an atom string cannot be negative.  So make it
      explicit and declare it as an unsigned value.
      
      The shift width in a mark table node also cannot be negative.
      I'm also moving it to after the pointer arrays to prevent any
      possible alignment problems on a 64 bit system.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      6f64f6d9
    • S
      Corrected BNF input documentation for fast-import. · 2104838b
      Shawn O. Pearce 提交于
      Now that fast-import uses uintmax_t (the largest available unsigned
      integer type) for marks we don't want to say its an unsigned 32
      bit integer in ASCII base 10 notation.  It could be much larger,
      especially on 64 bit systems, and especially if a frontend uses
      a very large number of marks (1 per file revision on a very, very
      large import).
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      2104838b
    • S
      Print out the edge commits for each packfile in fast-import. · 2369ed79
      Shawn O. Pearce 提交于
      To help callers repack very large repositories into a series of
      packfiles fast-import now outputs the last commits/tags it wrote to
      a packfile when it prints out the packfile name.  This information
      can be feed to pack-objects --revs to repack.  For the first pack
      of an initial import this is pretty easy (just feed those SHA1s on
      stdin) but for subsequent packs you want to feed the subsequent
      pack's final SHA1s but also all prior pack's SHA1s prefixed with
      the negation operator.  This way the prior pack's data does not
      get included into the subsequent pack.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      2369ed79
  13. 16 1月, 2007 3 次提交
    • S
      Correct object_count type and stat output in fast-import. · a7ddc487
      Shawn O. Pearce 提交于
      Since object_count is limited to 'unsigned long' (really an
      unsigned 32 bit integer value) by the pack file format we may as
      well use exactly that type here in fast-import for that counter.
      An earlier change by me incorrectly made it uintmax_t.
      
      But since object_count is a counter for the current packfile only,
      we don't want to output its value at the end.  Instead we should
      sum up the individual type counters and report that total, as that
      will cover all of the packfiles.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      a7ddc487
    • S
      Correct max_packsize default in fast-import. · eec11c24
      Shawn O. Pearce 提交于
      Apparently amd64 has defined 'unsigned long' to be a 64 bit value,
      which means -1 was way over the 4 GiB packfile limit.  Whoops.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      eec11c24
    • S
      Remove unnecessary pack_fd global in fast-import. · 0fcbcae7
      Shawn O. Pearce 提交于
      Much like the pack_sha1 the pack_fd is an unnecessary global
      variable, we already have the fd stored in our struct packed_git
      *pack_data so that the core library functions in sha1_file.c are
      able to lookup and decompress object data that we have previously
      written.  Keeping an extra copy of this value in our own variable
      is just a hold-over from earlier versions of fast-import and is
      now completely unnecessary.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      0fcbcae7