aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/libnl-tiny/src
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2016-03-02 10:01:27 +0000
committerJo-Philipp Wich <jow@openwrt.org>2016-03-02 10:01:27 +0000
commitc042adcf7415557c70e23b237bfabe86670f9603 (patch)
tree5069f6d43e6d14189336d7339812a56a7b832e37 /package/libs/libnl-tiny/src
parent7768735873566d26a006c19e21d95d82e7117c31 (diff)
downloadupstream-c042adcf7415557c70e23b237bfabe86670f9603.tar.gz
upstream-c042adcf7415557c70e23b237bfabe86670f9603.tar.bz2
upstream-c042adcf7415557c70e23b237bfabe86670f9603.zip
cyassl: disable Intel ASM for now
With ASM support enabled, CyaSSL fails to build on all x86 subtargets. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 48876
Diffstat (limited to 'package/libs/libnl-tiny/src')
0 files changed, 0 insertions, 0 deletions
> 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
/*
 * Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.sufficientlysecure.keychain.ui;

import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.CursorLoader;
import android.support.v4.content.Loader;
import android.support.v4.widget.CursorAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.TextView;

import org.spongycastle.openpgp.PGPSignature;
import org.sufficientlysecure.keychain.Constants;
import org.sufficientlysecure.keychain.R;
import org.sufficientlysecure.keychain.pgp.PgpKeyHelper;
import org.sufficientlysecure.keychain.provider.KeychainContract.Certs;
import org.sufficientlysecure.keychain.provider.KeychainDatabase.Tables;
import org.sufficientlysecure.keychain.util.Log;

import se.emilsjolander.stickylistheaders.StickyListHeadersAdapter;
import se.emilsjolander.stickylistheaders.StickyListHeadersListView;


public class ViewKeyCertsFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, AdapterView.OnItemClickListener {

    // These are the rows that we will retrieve.
    static final String[] PROJECTION = new String[]{
            Certs._ID,
            Certs.MASTER_KEY_ID,
            Certs.VERIFIED,
            Certs.TYPE,
            Certs.RANK,
            Certs.KEY_ID_CERTIFIER,
            Certs.USER_ID,
            Certs.SIGNER_UID
    };

    // sort by our user id,
    static final String SORT_ORDER =
            Tables.CERTS + "." + Certs.RANK + " ASC, "
                    + Certs.VERIFIED + " DESC, "
                    + Certs.TYPE + " DESC, "
                    + Certs.SIGNER_UID + " ASC";

    public static final String ARG_DATA_URI = "data_uri";

    private StickyListHeadersListView mStickyList;
    private CertListAdapter mAdapter;

    private Uri mDataUri;

    // starting with 4 for this fragment
    private static final int LOADER_ID = 4;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.view_key_certs_fragment, container, false);

        return view;
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        mStickyList = (StickyListHeadersListView) getActivity().findViewById(R.id.list);

        if (!getArguments().containsKey(ARG_DATA_URI)) {
            Log.e(Constants.TAG, "Data missing. Should be Uri of key!");
            getActivity().finish();
            return;
        }

        Uri uri = getArguments().getParcelable(ARG_DATA_URI);
        mDataUri = Certs.buildCertsUri(uri);

        mStickyList.setAreHeadersSticky(true);
        mStickyList.setDrawingListUnderStickyHeader(false);
        mStickyList.setFastScrollEnabled(true);
        mStickyList.setOnItemClickListener(this);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
            mStickyList.setFastScrollAlwaysVisible(true);
        }

        mStickyList.setEmptyView(getActivity().findViewById(R.id.empty));

        // Create an empty adapter we will use to display the loaded data.
        mAdapter = new CertListAdapter(getActivity(), null);
        mStickyList.setAdapter(mAdapter);

        getLoaderManager().initLoader(LOADER_ID, null, this);
    }

    @Override
    public Loader<Cursor> onCreateLoader(int id, Bundle args) {
        // Now create and return a CursorLoader that will take care of
        // creating a Cursor for the data being displayed.
        return new CursorLoader(getActivity(), mDataUri, PROJECTION, null, null, SORT_ORDER);
    }

    @Override
    public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
        // Swap the new cursor in. (The framework will take care of closing the
        // old cursor once we return.)
        mAdapter.swapCursor(data);

        mStickyList.setAdapter(mAdapter);
    }

    /**
     * On click on item, start key view activity
     */
    @Override
    public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
        if (view.getTag(R.id.tag_mki) != null) {
            long masterKeyId = (Long) view.getTag(R.id.tag_mki);
            long rank = (Long) view.getTag(R.id.tag_rank);
            long certifierId = (Long) view.getTag(R.id.tag_certifierId);

            Intent viewIntent = new Intent(getActivity(), ViewCertActivity.class);
            viewIntent.setData(Certs.buildCertsSpecificUri(
                    Long.toString(masterKeyId), Long.toString(rank), Long.toString(certifierId)));
            startActivity(viewIntent);
        }
    }

    @Override
    public void onLoaderReset(Loader<Cursor> loader) {
        // This is called when the last Cursor provided to onLoadFinished()
        // above is about to be closed. We need to make sure we are no
        // longer using it.
        mAdapter.swapCursor(null);
    }

    /**
     * Implements StickyListHeadersAdapter from library
     */
    private class CertListAdapter extends CursorAdapter implements StickyListHeadersAdapter {
        private LayoutInflater mInflater;
        private int mIndexMasterKeyId, mIndexUserId, mIndexRank;
        private int mIndexSignerKeyId, mIndexSignerUserId;
        private int mIndexVerified, mIndexType;

        public CertListAdapter(Context context, Cursor c) {
            super(context, c, 0);

            mInflater = LayoutInflater.from(context);
            initIndex(c);
        }

        @Override
        public Cursor swapCursor(Cursor newCursor) {
            initIndex(newCursor);

            return super.swapCursor(newCursor);
        }

        /**
         * Get column indexes for performance reasons just once in constructor and swapCursor. For a
         * performance comparison see http://stackoverflow.com/a/17999582
         *
         * @param cursor
         */
        private void initIndex(Cursor cursor) {
            if (cursor != null) {
                mIndexMasterKeyId = cursor.getColumnIndexOrThrow(Certs.MASTER_KEY_ID);
                mIndexUserId = cursor.getColumnIndexOrThrow(Certs.USER_ID);
                mIndexRank = cursor.getColumnIndexOrThrow(Certs.RANK);
                mIndexType = cursor.getColumnIndexOrThrow(Certs.TYPE);
                mIndexVerified = cursor.getColumnIndexOrThrow(Certs.VERIFIED);
                mIndexSignerKeyId = cursor.getColumnIndexOrThrow(Certs.KEY_ID_CERTIFIER);
                mIndexSignerUserId = cursor.getColumnIndexOrThrow(Certs.SIGNER_UID);
            }
        }

        /**
         * Bind cursor data to the item list view
         * <p/>
         * NOTE: CursorAdapter already implements the ViewHolder pattern in its getView() method.
         * Thus no ViewHolder is required here.
         */
        @Override
        public void bindView(View view, Context context, Cursor cursor) {

            // set name and stuff, common to both key types
            TextView wSignerKeyId = (TextView) view.findViewById(R.id.signerKeyId);
            TextView wSignerName = (TextView) view.findViewById(R.id.signerName);
            TextView wSignStatus = (TextView) view.findViewById(R.id.signStatus);

            String signerKeyId = PgpKeyHelper.convertKeyIdToHex(cursor.getLong(mIndexSignerKeyId));
            String[] userId = PgpKeyHelper.splitUserId(cursor.getString(mIndexSignerUserId));
            if (userId[0] != null) {
                wSignerName.setText(userId[0]);
            } else {
                wSignerName.setText(R.string.user_id_no_name);
            }
            wSignerKeyId.setText(signerKeyId);

            switch (cursor.getInt(mIndexType)) {
                case PGPSignature.DEFAULT_CERTIFICATION: // 0x10
                    wSignStatus.setText(R.string.cert_default);
                    break;
                case PGPSignature.NO_CERTIFICATION: // 0x11
                    wSignStatus.setText(R.string.cert_none);
                    break;
                case PGPSignature.CASUAL_CERTIFICATION: // 0x12
                    wSignStatus.setText(R.string.cert_casual);
                    break;
                case PGPSignature.POSITIVE_CERTIFICATION: // 0x13
                    wSignStatus.setText(R.string.cert_positive);
                    break;
                case PGPSignature.CERTIFICATION_REVOCATION: // 0x30
                    wSignStatus.setText(R.string.cert_revoke);
                    break;
            }


            view.setTag(R.id.tag_mki, cursor.getLong(mIndexMasterKeyId));
            view.setTag(R.id.tag_rank, cursor.getLong(mIndexRank));
            view.setTag(R.id.tag_certifierId, cursor.getLong(mIndexSignerKeyId));
        }

        @Override
        public View newView(Context context, Cursor cursor, ViewGroup parent) {
            return mInflater.inflate(R.layout.view_key_certs_item, parent, false);
        }

        /**
         * Creates a new header view and binds the section headers to it. It uses the ViewHolder
         * pattern. Most functionality is similar to getView() from Android's CursorAdapter.
         * <p/>
         * NOTE: The variables mDataValid and mCursor are available due to the super class