packages feed

unique (empty) → 0

raw patch · 8 files changed

+229/−0 lines, 8 filesdep +basedep +ghc-primdep +hashablesetup-changed

Dependencies added: base, ghc-prim, hashable

Files

+ .travis.yml view
@@ -0,0 +1,112 @@+# This file has been generated -- see https://github.com/hvr/multi-ghc-travis+language: c+sudo: false++cache:+  directories:+    - $HOME/.cabsnap+    - $HOME/.cabal/packages+    - $HOME/.stack++before_cache:+  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log+  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index.tar++matrix:+  include:+    - env: CABALVER=1.16 GHCVER=7.4.2 BUILD=cabal+      compiler: ": #GHC 7.4.2"+      addons: {apt: {packages: [cabal-install-1.16,ghc-7.4.2,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: CABALVER=1.16 GHCVER=7.6.3 BUILD=cabal+      compiler: ": #GHC 7.6.3"+      addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.3,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: CABALVER=1.18 GHCVER=7.8.4 BUILD=cabal+      compiler: ": #GHC 7.8.4"+      addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: CABALVER=1.22 GHCVER=7.10.1 BUILD=cabal+      compiler: ": #GHC 7.10.1"+      addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.1,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: CABALVER=1.22 GHCVER=7.10.2 BUILD=cabal+      compiler: ": #GHC 7.10.2"+      addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.2,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: BUILD=stack STACK_OPTIONS=--skip-ghc-check+      addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.2,alex-3.1.4,happy-1.19.5], sources: [hvr-ghc]}}+    - env: BUILD=stack+      os: osx+++before_install:+ - unset CC+ - case "$BUILD" in+     stack)+       export STACK_VERSION=0.1.3.0;+       export PATH=~/bin:$PATH;+       mkdir -p ~/bin;+       travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-x86_64-$TRAVIS_OS_NAME.gz | gunzip > ~/bin/stack;+       chmod a+x ~/bin/stack;+       scripts/travis_long stack --no-terminal setup;;+     cabal)+       export HAPPYVER=1.19.5+       export ALEXVER=3.1.4+       export PATH=~/.cabal/bin:/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/happy/$HAPPYVER/bin:/opt/alex/$ALEXVER/bin:$PATH;;+   esac+install:+ - case "$BUILD" in+     stack)+       scripts/travis_long stack --no-terminal $STACK_OPTIONS build --only-snapshot -j2;;+     cabal)+       echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"+       cabal --version;+       if [ -f $HOME/.cabal/packages/hackage.haskell.org/00-index.tar.gz ];+       then+         zcat $HOME/.cabal/packages/hackage.haskell.org/00-index.tar.gz >+              $HOME/.cabal/packages/hackage.haskell.org/00-index.tar;+       fi;+       travis_retry cabal update;+       cabal install --only-dependencies --enable-tests --enable-benchmarks --dry -v > installplan.txt;+       sed -i -e '1,/^Resolving /d' installplan.txt; cat installplan.txt;+       if diff -u installplan.txt $HOME/.cabsnap/installplan.txt; then+         echo "cabal build-cache HIT";+         rm -rfv .ghc;+         cp -a $HOME/.cabsnap/ghc $HOME/.ghc;+         cp -a $HOME/.cabsnap/lib $HOME/.cabsnap/share $HOME/.cabsnap/bin $HOME/.cabal/;+       else+         echo "cabal build-cache MISS";+         rm -rf $HOME/.cabsnap;+         mkdir -p $HOME/.ghc $HOME/.cabal/lib $HOME/.cabal/share $HOME/.cabal/bin;+         cabal install --only-dependencies --enable-tests --enable-benchmarks;+         if [ "$GHCVER" = "7.10.1" ]; then cabal install Cabal-1.22.4.0; fi;+       fi;+       if [ ! -d $HOME/.cabsnap ]; then+         echo "snapshotting package-db to build-cache";+         mkdir $HOME/.cabsnap;+         cp -a $HOME/.ghc $HOME/.cabsnap/ghc;+         cp -a $HOME/.cabal/lib $HOME/.cabal/share $HOME/.cabal/bin installplan.txt $HOME/.cabsnap/;+       fi;;+   esac++# snapshot package-db on cache miss++# Here starts the actual work to be performed for the package under test;+# any command which exits with a non-zero exit code causes the build to fail.+script:+ - case "$BUILD" in+     stack)+       scripts/travis_long stack --no-terminal $STACK_OPTIONS build -j2;;+     cabal)+       cabal configure --enable-tests -v2;+       cabal build;+       cabal test;+       cabal bench || true;+       cabal sdist || true;+       SRC_TGZ=$(cabal info . | awk '{print $2;exit}').tar.gz && (cd dist && cabal install --force-reinstalls "$SRC_TGZ");;+   esac++notifications:+  irc:+    channels:+      - "irc.freenode.org#haskell-lens"+    skip_join: true+    template:+      - "\x0313unique\x0f/\x0306%{branch}\x0f \x0314%{commit}\x0f %{message} \x0302\x1f%{build_url}\x0f"+# EOF
+ CHANGELOG.markdown view
@@ -0,0 +1,3 @@+## 0++* Repository initialized
+ LICENSE view
@@ -0,0 +1,26 @@+Copyright 2015 Edward Kmett++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions+are met:++1. Redistributions of source code must retain the above copyright+   notice, this list of conditions and the following disclaimer.++2. Redistributions in binary form must reproduce the above copyright+   notice, this list of conditions and the following disclaimer in the+   documentation and/or other materials provided with the distribution.++THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,+STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE+POSSIBILITY OF SUCH DAMAGE.
+ README.markdown view
@@ -0,0 +1,15 @@+unique+==============++[![Hackage](https://img.shields.io/hackage/v/unique.svg)](https://hackage.haskell.org/package/unique) [![Build Status](https://secure.travis-ci.org/ekmett/unique.png?branch=master)](http://travis-ci.org/ekmett/unique)++This package provides a version of Data.Unique that is fully concurrent.++Contact Information+-------------------++Contributions and bug reports are welcome!++Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net.++-Edward Kmett
+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
+ src/Control/Concurrent/Unique.hs view
@@ -0,0 +1,39 @@+{-# LANGUAGE CPP #-}+{-# LANGUAGE UnboxedTuples #-}+{-# LANGUAGE MagicHash #-}++-- | An abstract interface to a concurrent unique symbol generator.+--+-- Unlike @Data.Unique@ from @base@ the values are not a member of 'Ord'. However, there is no global bottleneck.+module Control.Concurrent.Unique+  ( Unique, newUnique+  ) where++import Data.Hashable+import GHC.IO+import GHC.Prim+import GHC.Types++-- | Unique identifiers are created by creating heap objects in kind # that+-- can be compared for value equality and then hashing them using their initial allocation+-- address.++-- TODO: If, due to a small heap size we find we have high collision rate on initial allocation location+-- we might consider upgrading this initial hash with something fast and volatile, e.g. rdtsc+data Unique = Unique !Int (MutableByteArray# RealWorld)++instance Eq Unique where+#if MIN_VERSION_base(4,7,0)+  Unique _ p == Unique _ q = isTrue# (sameMutableByteArray# p q)+#else+  Unique _ p == Unique _ q = sameMutableByteArray# p q+#endif++instance Hashable Unique where+  hash (Unique i _) = i+  hashWithSalt d (Unique i _) = hashWithSalt d i++-- | Allocate a new 'Unique' value. The value returned will not compare equal to any other value of type 'Unique' returned by previous calls to 'newUnique'. There is no limit on the number of times 'newUnique' may be called.+newUnique :: IO Unique+newUnique = IO $ \s -> case newByteArray# 0# s of+  (# s', ba #) -> (# s', Unique (I# (addr2Int# (unsafeCoerce# ba))) ba #)
+ stack.yaml view
@@ -0,0 +1,1 @@+resolver: nightly-2015-09-27
+ unique.cabal view
@@ -0,0 +1,31 @@+name:          unique+category:      Concurrency, Data+version:       0+license:       BSD3+cabal-version: >= 1.10+license-file:  LICENSE+author:        Edward A. Kmett+maintainer:    Edward A. Kmett <ekmett@gmail.com>+stability:     experimental+homepage:      http://github.com/ekmett/unique/+bug-reports:   http://github.com/ekmett/unique/issues+copyright:     Copyright (C) 2015 Edward A. Kmett+synopsis:      Fully concurrent unique identifiers+description:   Fully concurrent unique identifiers+build-type:    Simple+extra-source-files: .travis.yml CHANGELOG.markdown README.markdown stack.yaml++source-repository head+  type: git+  location: git://github.com/ekmett/unique.git++library+  default-language: Haskell2010+  hs-source-dirs: src+  other-extensions: CPP, MagicHash, UnboxedTuples+  exposed-modules: Control.Concurrent.Unique+  ghc-options: -Wall+  build-depends:+    base     >= 4.5 && < 5,+    hashable >= 1.1 && < 1.3,+    ghc-prim >= 0.2 && < 0.5