Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/audemard/glucose
09 May 2023, 15:45:59 UTC
  • Code
  • Branches (9)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/glucose-reboot
    • refs/heads/main
    • refs/tags/1.0
    • refs/tags/2.0
    • refs/tags/2.1
    • refs/tags/3.0
    • refs/tags/4.0
    • refs/tags/4.1
    • refs/tags/4.2.1
    No releases to show
  • c4c4d05
  • /
  • mtl
  • /
  • Vec.h
Raw File Download Save again
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge
swh:1:cnt:a132e10347afd1a0340b4fc79b8b584d7f4500fd
origin badgedirectory badge
swh:1:dir:a574641818d30df95a482f82e2d83ec21d2a20c4
origin badgerevision badge
swh:1:rev:8cf82dc753b3ec6789bb7f926751f1b15403d091
origin badgesnapshot badge
swh:1:snp:28e547ea0ad832adcfd63a2cee0fa00955eb6e69

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Tip revision: 8cf82dc753b3ec6789bb7f926751f1b15403d091 authored by audemard on 09 May 2023, 13:35:33 UTC
glucose reboot
Tip revision: 8cf82dc
Vec.h
/*******************************************************************************************[Vec.h]
Copyright (c) 2003-2007, Niklas Een, Niklas Sorensson
Copyright (c) 2007-2010, Niklas Sorensson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**************************************************************************************************/

#ifndef Glucose_Vec_h
#define Glucose_Vec_h

#include <assert.h>

#include <cstring>
#include <new>

#include "mtl/IntTypes.h"
#include "mtl/VecIterator.h"
#include "mtl/XAlloc.h"

namespace Glucose {

//=================================================================================================
// Automatically resizable arrays
//
// NOTE! Don't use this vector on datatypes that cannot be re-located in memory (with realloc)

template <class T>
class vec {
    T*  data;
    int sz;
    int cap;

    using const_iterator = VecIterator<const T>;
    using iterator       = VecIterator<T>;


    // Don't allow copying (error prone):
    vec<T>& operator=(vec<T>& other) {
        assert(0);
        return *this;
    }
    vec(vec<T>& other) { assert(0); }

    // Helpers for calculating next capacity:
    static inline int imax(int x, int y) {
        int mask = (y - x) >> (sizeof(int) * 8 - 1);
        return (x & mask) + (y & (~mask));
    }
    // static inline void nextCap(int& cap){ cap += ((cap >> 1) + 2) & ~1; }
    static inline void nextCap(int& cap) { cap += ((cap >> 1) + 2) & ~1; }

   public:
    // Constructors:
    vec() : data(NULL), sz(0), cap(0) { }
    explicit vec(int size) : data(NULL), sz(0), cap(0) { growTo(size); }
    vec(int size, const T& pad) : data(NULL), sz(0), cap(0) { growTo(size, pad); }
    ~vec() { clear(true); }

    // Pointer to first element:
    operator T*(void) { return data; }

    // Size operations:
    int  size(void) const { return sz; }
    void shrink(int nelems) {
        assert(nelems <= sz);
        for(int i = 0; i < nelems; i++) sz--, data[sz].~T();
    }
    void shrink_(int nelems) {
        assert(nelems <= sz);
        sz -= nelems;
    }
    int  capacity(void) const { return cap; }
    void capacity(int min_cap);
    void growTo(int size);
    void growTo(int size, const T& pad);
    void clear(bool dealloc = false);
    void clear_() { sz = 0; }

    // Stack interface:
    void push(void) {
        if(sz == cap) capacity(sz + 1);
        new(&data[sz]) T();
        sz++;
    }
    void push(const T& elem) {
        if(sz == cap) capacity(sz + 1);
        data[sz++] = elem;
    }
    void push_(const T& elem) {
        assert(sz < cap);
        data[sz++] = elem;
    }
    void pop(void) {
        assert(sz > 0);
        sz--, data[sz].~T();
    }
    // NOTE: it seems possible that overflow can happen in the 'sz+1' expression of 'push()', but
    // in fact it can not since it requires that 'cap' is equal to INT_MAX. This in turn can not
    // happen given the way capacities are calculated (below). Essentially, all capacities are
    // even, but INT_MAX is odd.

    const T& last(void) const { return data[sz - 1]; }
    T&       last(void) { return data[sz - 1]; }

    // Vector interface:
    const T& operator[](int index) const { return data[index]; }
    T&       operator[](int index) { return data[index]; }

    // Duplicatation (preferred instead):
    void copyTo(vec<T>& copy) const {
        copy.clear();
        copy.growTo(sz);
        for(int i = 0; i < sz; i++) copy[i] = data[i];
    }

    void memCopyTo(vec<T>& copy) const {
        copy.capacity(cap);
        copy.sz = sz;
        memcpy(copy.data, data, sizeof(T) * cap);
    }


    void moveTo(vec<T>& dest) {
        dest.clear(true);
        dest.data = data;
        dest.sz   = sz;
        dest.cap  = cap;
        data      = NULL;
        sz        = 0;
        cap       = 0;
    }

    // begin/end functions to use for each aka c++
    // begin/end functions to use for each aka c++
    inline const_iterator cbegin() const { return const_iterator(data); }
    inline const_iterator cend() const { return const_iterator(data + sz); }
    inline iterator       begin() { return iterator(data); }
    inline iterator       end() { return iterator(data + sz); }
};


template <class T>
void vec<T>::capacity(int min_cap) {
    if(cap >= (int32_t)min_cap) return;

    int add = imax((min_cap - cap + 1) & ~1, ((cap >> 1) + 2) & ~1);   // NOTE: grow by approximately 3/2
    /*
    if(add > INT_MAX - cap || (((data = (T*)::realloc(data, (cap += add) * sizeof(T))) == NULL) && errno == ENOMEM))
        throw OutOfMemoryException();
        */

    if(add > INT_MAX - cap) {
        throw OutOfMemoryException();
    }

    cap += add;
    int32_t new_size = 2;
    while (new_size < cap) {
        new_size *= 2;
    }
    if (new_size * 2 / 3 > cap) {
        new_size = new_size * 2 / 3;
    }
    cap = new_size;

    if(((data = (T*)::realloc(data, cap  * sizeof(T))) == NULL) && errno == ENOMEM) {
        throw OutOfMemoryException();
    }

}


template <class T>
void vec<T>::growTo(int size, const T& pad) {
    if(sz >= size) return;
    capacity(size);
    for(int i = sz; i < size; i++) data[i] = pad;
    sz = size;
}


template <class T>
void vec<T>::growTo(int size) {
    if(sz >= size) return;
    capacity(size);
    for(int i = sz; i < size; i++) new(&data[i]) T();
    sz = size;
}


template <class T>
void vec<T>::clear(bool dealloc) {
    if(data != NULL) {
        for(int i = 0; i < sz; i++) data[i].~T();
        sz = 0;
        if(dealloc) free(data), data = NULL, cap = 0;
    }
}

//=================================================================================================
}   // namespace Glucose

#endif

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API